/* ============================================
   FluentPath KZ — Style System
   Travel-themed English Courses
   Primary: #1D4ED8 | Accent: #FEF3C7
   Font: Raleway
   ============================================ */

/* --- VOYAGE RESET --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Raleway', sans-serif;
  color: #1e293b;
  background-color: #fffefb;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1D4ED8;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e40af;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

/* --- PASSPORT LAYOUT CONTAINER --- */
.passport-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .passport-container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .passport-container {
    padding: 0 40px;
  }
}

/* --- NAVIGATOR HEADER --- */
.navigator-header {
  background: #ffffff;
  border-bottom: 3px solid #FEF3C7;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(29, 78, 216, 0.06);
}

.navigator-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.navigator-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: #1D4ED8;
  white-space: nowrap;
}

.navigator-header__logo iconify-icon {
  font-size: 1.8rem;
  color: #1D4ED8;
}

.navigator-header__logo span {
  color: #92400e;
}

/* Mobile menu toggle */
.navigator-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: #1D4ED8;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.navigator-header__toggle:hover {
  background: #EFF6FF;
}

@media (min-width: 1024px) {
  .navigator-header__toggle {
    display: none;
  }
}

/* Navigation */
.navigator-header__nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 3px solid #FEF3C7;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 16px 20px;
  z-index: 999;
}

.navigator-header__nav.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .navigator-header__nav {
    display: flex !important;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 6px;
    align-items: center;
  }
}

.navigator-header__nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 1024px) {
  .navigator-header__nav ul {
    flex-direction: row;
    gap: 2px;
  }
}

.navigator-header__nav a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.navigator-header__nav a:hover,
.navigator-header__nav a.is-active {
  background: #EFF6FF;
  color: #1D4ED8;
}

.navigator-header__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #1D4ED8;
  color: #ffffff !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 12px;
  transition: all 0.3s;
}

.navigator-header__cta-btn:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .navigator-header__cta-btn {
    margin-top: 0;
    margin-left: 8px;
  }
}

/* --- ROUTE BREADCRUMBS --- */
.route-breadcrumbs {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
}

.route-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #64748b;
}

.route-breadcrumbs__list a {
  color: #1D4ED8;
  font-weight: 500;
}

.route-breadcrumbs__list a:hover {
  text-decoration: underline;
}

.route-breadcrumbs__separator {
  color: #94a3b8;
  font-size: 0.75rem;
}

/* --- EXPEDITION HERO --- */
.expedition-hero {
  position: relative;
  background: linear-gradient(135deg, #1D4ED8 0%, #1e40af 50%, #1e3a8a 100%);
  padding: 60px 0;
  overflow: hidden;
  color: #ffffff;
}

.expedition-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: rgba(254, 243, 199, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.expedition-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(254, 243, 199, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

@media (min-width: 768px) {
  .expedition-hero {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .expedition-hero {
    padding: 100px 0;
  }
}

.expedition-hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .expedition-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.expedition-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 243, 199, 0.15);
  border: 1px solid rgba(254, 243, 199, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FEF3C7;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.expedition-hero__title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .expedition-hero__title {
    font-size: 2.6rem;
  }
}

@media (min-width: 1024px) {
  .expedition-hero__title {
    font-size: 3.2rem;
  }
}

.expedition-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}

.expedition-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.expedition-hero__visual {
  display: flex;
  justify-content: center;
}

.expedition-hero__stamp {
  width: 260px;
  height: 260px;
  border: 4px dashed rgba(254, 243, 199, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.expedition-hero__stamp iconify-icon {
  font-size: 5rem;
  color: #FEF3C7;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .expedition-hero__stamp {
    width: 300px;
    height: 300px;
  }
}

/* --- ATLAS BUTTONS --- */
.atlas-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.atlas-btn--primary {
  background: #FEF3C7;
  color: #92400e;
  border-color: #FEF3C7;
}

.atlas-btn--primary:hover {
  background: #fde68a;
  color: #78350f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 243, 199, 0.4);
}

.atlas-btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
}

.atlas-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #ffffff;
}

.atlas-btn--blue {
  background: #1D4ED8;
  color: #ffffff;
  border-color: #1D4ED8;
}

.atlas-btn--blue:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.3);
}

.atlas-btn--sand {
  background: #FEF3C7;
  color: #92400e;
}

.atlas-btn--sand:hover {
  background: #fde68a;
}

.atlas-btn--ghost {
  background: transparent;
  color: #1D4ED8;
  border-color: #1D4ED8;
}

.atlas-btn--ghost:hover {
  background: #EFF6FF;
}

.atlas-btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.atlas-btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.atlas-btn--full {
  width: 100%;
  justify-content: center;
}

/* --- JOURNEY SECTION --- */
.journey-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .journey-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .journey-section {
    padding: 100px 0;
  }
}

.journey-section--sand {
  background: #FEF3C7;
}

.journey-section--light {
  background: #f8fafc;
}

.journey-section--blue {
  background: #1D4ED8;
  color: #ffffff;
}

.journey-section--blue h2,
.journey-section--blue h3 {
  color: #ffffff;
}

.journey-section--blue p {
  color: rgba(255,255,255,0.85);
}

/* --- COMPASS HEADING --- */
.compass-heading {
  text-align: center;
  margin-bottom: 48px;
}

.compass-heading__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EFF6FF;
  color: #1D4ED8;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.journey-section--blue .compass-heading__tag {
  background: rgba(254, 243, 199, 0.15);
  color: #FEF3C7;
}

.journey-section--sand .compass-heading__tag {
  background: rgba(29, 78, 216, 0.1);
  color: #1D4ED8;
}

.compass-heading__title {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .compass-heading__title {
    font-size: 2.2rem;
  }
}

.compass-heading__desc {
  color: #64748b;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.journey-section--blue .compass-heading__desc {
  color: rgba(255,255,255,0.8);
}

/* --- WAYPOINT CARDS --- */
.waypoint-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .waypoint-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .waypoint-grid--cols3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .waypoint-grid--cols4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.waypoint-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.waypoint-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1D4ED8, #FEF3C7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.waypoint-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(29, 78, 216, 0.1);
  border-color: #bfdbfe;
}

.waypoint-card:hover::before {
  transform: scaleX(1);
}

.waypoint-card__icon {
  width: 56px;
  height: 56px;
  background: #EFF6FF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #1D4ED8;
}

.waypoint-card__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.waypoint-card__text {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- ITINERARY (ABOUT PAGE) --- */
.itinerary-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .itinerary-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.itinerary-stat {
  text-align: center;
  padding: 24px 16px;
  background: #EFF6FF;
  border-radius: 14px;
  border: 1px solid #bfdbfe;
}

.itinerary-stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: #1D4ED8;
  display: block;
}

.itinerary-stat__label {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 4px;
  font-weight: 600;
}

/* --- EXPLORER TEAM --- */
.explorer-team {
  display: grid;
  gap: 28px;
}

@media (min-width: 768px) {
  .explorer-team {
    grid-template-columns: repeat(3, 1fr);
  }
}

.explorer-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.explorer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(29, 78, 216, 0.12);
}

.explorer-card__photo {
  height: 220px;
  background: linear-gradient(135deg, #1D4ED8, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.explorer-card__photo iconify-icon {
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
}

.explorer-card__photo-badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: #FEF3C7;
  color: #92400e;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.explorer-card__body {
  padding: 28px 24px 24px;
}

.explorer-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.explorer-card__role {
  color: #1D4ED8;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.explorer-card__bio {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- DESTINATION COURSES --- */
.destination-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 768px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .destination-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.destination-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(29, 78, 216, 0.12);
}

.destination-card__header {
  padding: 28px 24px 20px;
  background: linear-gradient(135deg, #1D4ED8, #2563eb);
  color: #ffffff;
  position: relative;
}

.destination-card__header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 20px;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
}

.destination-card__level {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(254, 243, 199, 0.2);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FEF3C7;
  margin-bottom: 10px;
}

.destination-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.destination-card__body {
  padding: 12px 24px 24px;
}

.destination-card__desc {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.destination-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.destination-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #475569;
}

.destination-card__feature iconify-icon {
  color: #1D4ED8;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- TICKET PRICING --- */
.ticket-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 768px) {
  .ticket-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ticket-card {
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
  text-align: center;
}

.ticket-card:hover {
  border-color: #1D4ED8;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(29, 78, 216, 0.12);
}

.ticket-card--featured {
  border-color: #1D4ED8;
  background: linear-gradient(180deg, #EFF6FF 0%, #ffffff 40%);
}

.ticket-card--featured::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 6px;
  background: linear-gradient(90deg, #1D4ED8, #FEF3C7);
  border-radius: 20px 20px 0 0;
}

.ticket-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF3C7;
  color: #92400e;
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.ticket-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ticket-card__price {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1D4ED8;
  margin-bottom: 4px;
}

.ticket-card__period {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.ticket-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.ticket-card__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #475569;
}

.ticket-card__feat iconify-icon {
  color: #1D4ED8;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ticket-card__feat--disabled {
  color: #cbd5e1;
}

.ticket-card__feat--disabled iconify-icon {
  color: #cbd5e1;
}

/* --- LOGBOOK FAQ --- */
.logbook-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logbook-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}

.logbook-item:hover {
  border-color: #bfdbfe;
}

.logbook-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  transition: all 0.2s;
}

.logbook-item__trigger:hover {
  color: #1D4ED8;
}

.logbook-item__trigger iconify-icon {
  font-size: 1.3rem;
  color: #1D4ED8;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.logbook-item.is-open .logbook-item__trigger iconify-icon {
  transform: rotate(180deg);
}

.logbook-item__content {
  display: none;
  padding: 0 24px 20px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.8;
}

.logbook-item.is-open .logbook-item__content {
  display: block;
}

/* --- DISPATCH CONTACT FORM --- */
.dispatch-form {
  max-width: 640px;
  margin: 0 auto;
}

.dispatch-form__group {
  margin-bottom: 20px;
}

.dispatch-form__label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 8px;
}

.dispatch-form__input,
.dispatch-form__textarea,
.dispatch-form__select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  color: #1e293b;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.dispatch-form__input:focus,
.dispatch-form__textarea:focus,
.dispatch-form__select:focus {
  border-color: #1D4ED8;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
}

.dispatch-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.dispatch-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.dispatch-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}

.dispatch-form__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #1D4ED8;
  flex-shrink: 0;
}

.dispatch-form__consent a {
  color: #1D4ED8;
  text-decoration: underline;
}

/* --- CONTACT INFO CARDS --- */
.dispatch-info {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .dispatch-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dispatch-info__card {
  background: #EFF6FF;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.dispatch-info__card iconify-icon {
  font-size: 2rem;
  color: #1D4ED8;
  margin-bottom: 12px;
}

.dispatch-info__card-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.dispatch-info__card-text {
  color: #64748b;
  font-size: 0.9rem;
}

/* --- ANCHOR FOOTER --- */
.anchor-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 0;
  margin-top: auto;
}

.anchor-footer__grid {
  display: grid;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e293b;
}

@media (min-width: 768px) {
  .anchor-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

.anchor-footer__brand {
  max-width: 300px;
}

.anchor-footer__logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.anchor-footer__logo iconify-icon {
  color: #FEF3C7;
  font-size: 1.5rem;
}

.anchor-footer__logo span {
  color: #FEF3C7;
}

.anchor-footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.anchor-footer__socials {
  display: flex;
  gap: 10px;
}

.anchor-footer__social {
  width: 40px;
  height: 40px;
  background: #1e293b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.anchor-footer__social:hover {
  background: #1D4ED8;
  color: #ffffff;
}

.anchor-footer__heading {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 18px;
}

.anchor-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.anchor-footer__links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.anchor-footer__links a:hover {
  color: #FEF3C7;
}

.anchor-footer__bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 0.82rem;
}

@media (min-width: 768px) {
  .anchor-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.anchor-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.anchor-footer__legal a {
  color: #64748b;
  font-size: 0.82rem;
}

.anchor-footer__legal a:hover {
  color: #FEF3C7;
}

/* --- COOKIE VISA BANNER --- */
.visa-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #e2e8f0;
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.visa-cookie.is-visible {
  transform: translateY(0);
}

.visa-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .visa-cookie__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.visa-cookie__text {
  font-size: 0.88rem;
  line-height: 1.6;
}

.visa-cookie__text a {
  color: #FEF3C7;
  text-decoration: underline;
}

.visa-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.visa-cookie__accept {
  padding: 10px 24px;
  background: #1D4ED8;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.visa-cookie__accept:hover {
  background: #1e40af;
}

.visa-cookie__decline {
  padding: 10px 24px;
  background: transparent;
  color: #94a3b8;
  border: 1px solid #334155;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.visa-cookie__decline:hover {
  border-color: #64748b;
  color: #e2e8f0;
}

/* --- THANKYOU PAGE --- */
.arrival-thankyou {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.arrival-thankyou__icon {
  font-size: 4rem;
  color: #1D4ED8;
  margin-bottom: 24px;
}

.arrival-thankyou__title {
  font-size: 2rem;
  margin-bottom: 14px;
}

.arrival-thankyou__text {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 28px;
}

/* --- 404 LOST PAGE --- */
.lost-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.lost-page__code {
  font-size: 7rem;
  font-weight: 800;
  color: #1D4ED8;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.2;
}

.lost-page__title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.lost-page__text {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* --- LEGAL PAGES --- */
.charter-legal {
  padding: 48px 0;
}

.charter-legal__content {
  max-width: 800px;
  margin: 0 auto;
}

.charter-legal__content h1 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid #FEF3C7;
}

.charter-legal__content h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #1D4ED8;
}

.charter-legal__content p {
  margin-bottom: 14px;
  color: #475569;
  line-height: 1.8;
}

.charter-legal__content ul {
  margin-bottom: 14px;
  padding-left: 20px;
}

.charter-legal__content li {
  list-style: disc;
  color: #475569;
  margin-bottom: 8px;
  line-height: 1.7;
}

.charter-legal__content strong {
  color: #0f172a;
}

/* --- VOYAGE CTA BANNER --- */
.voyage-cta {
  background: linear-gradient(135deg, #1D4ED8 0%, #1e3a8a 100%);
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.voyage-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(254, 243, 199, 0.06);
  border-radius: 50%;
}

.voyage-cta__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .voyage-cta__title {
    font-size: 2.2rem;
  }
}

.voyage-cta__text {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 28px;
}

/* --- TRAIL PROCESS STEPS --- */
.trail-steps {
  display: grid;
  gap: 24px;
  counter-reset: trail-counter;
}

@media (min-width: 768px) {
  .trail-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trail-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trail-step {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  text-align: center;
  counter-increment: trail-counter;
}

.trail-step::before {
  content: counter(trail-counter, decimal-leading-zero);
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1D4ED8;
  opacity: 0.15;
  margin-bottom: 12px;
}

.trail-step__icon {
  font-size: 1.8rem;
  color: #1D4ED8;
  margin-bottom: 14px;
}

.trail-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trail-step__text {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* --- MAP FEATURE GRID --- */
.map-features {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .map-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.map-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.map-feature__icon {
  width: 48px;
  height: 48px;
  background: #EFF6FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1D4ED8;
  flex-shrink: 0;
}

.map-feature__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.map-feature__text {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- ABOUT SPLIT LAYOUT --- */
.atlas-split {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .atlas-split {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.atlas-split__visual {
  background: linear-gradient(135deg, #1D4ED8, #3b82f6);
  border-radius: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.atlas-split__visual::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(254, 243, 199, 0.1);
  border-radius: 50%;
  top: -30px;
  right: -30px;
}

.atlas-split__visual iconify-icon {
  font-size: 5rem;
  color: rgba(255,255,255,0.25);
}

@media (min-width: 768px) {
  .atlas-split__visual {
    height: 380px;
  }
}

.atlas-split__content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.atlas-split__content p {
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.8;
}

/* --- UTILITY CLASSES --- */
.u-text-center {
  text-align: center;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-32 {
  margin-top: 32px;
}

.u-mt-48 {
  margin-top: 48px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-32 {
  margin-bottom: 32px;
}

.u-hidden {
  display: none !important;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- SCROLL ANIMATIONS --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- BACK TO TOP --- */
.compass-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #1D4ED8;
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
  z-index: 900;
}

.compass-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.compass-top:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* --- MEDIA PRINT --- */
@media print {
  .navigator-header,
  .visa-cookie,
  .compass-top,
  .anchor-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .passport-container {
    max-width: 100%;
    padding: 0;
  }
}

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}

/* === FluentPath Team === */
.fp-team-section{background:#fff}
.fp-team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.fp-team-card{background:#f8fafc;border-radius:12px;padding:2rem;text-align:center;border:1px solid #e2e8f0;transition:border-color .3s}
.fp-team-card:hover{border-color:#1D4ED8}
.fp-team-initials{width:72px;height:72px;border-radius:50%;background:#1D4ED8;color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.25rem;font-weight:700;margin:0 auto 1rem}
.fp-team-card h3{color:#1a1a1a;margin-bottom:.25rem}
.fp-team-role{color:#1D4ED8;font-size:.9rem;margin-bottom:.75rem}
.fp-team-card p{color:#64748b;font-size:.9rem}
@media(max-width:768px){.fp-team-grid{grid-template-columns:1fr}}
/* === FluentPath Reviews === */
.fp-reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.fp-review{background:#fff;border-radius:12px;padding:1.5rem;border:1px solid #e2e8f0}
.fp-review__stars{color:#FEF3C7;font-size:1.25rem;margin-bottom:.75rem}
.fp-review__stars iconify-icon{color:#F59E0B}
.fp-review p{color:#333;font-style:italic;margin-bottom:1rem;line-height:1.6}
.fp-review__author{font-weight:700;color:#1a1a1a}
.fp-review__note{color:#64748b;font-size:.85rem}
@media(max-width:768px){.fp-reviews-grid{grid-template-columns:1fr}}
