/* ── DESIGN TOKENS ── */
:root {
  --saffron:   #E8611A;
  --saffron-lt:#F5843E;
  --crimson:   #C41E3A;
  --gold:      #D4AF37;
  --gold-lt:   #F0D060;
  --navy:      #1A2455;
  --navy-lt:   #2E4A7C;
  --cream:     #FDF6E3;
  --cream-dk:  #F5EDD5;
  --dark:      #111827;
  --gray:      #6B7280;
  --light:     #F9FAFB;
  --white:     #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.16);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── UTILITY ── */
.container { width: min(1200px, 100% - 3rem); margin-inline: auto; }
.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
.section-title span { color: var(--saffron); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--gray);
  margin-top: .75rem;
  max-width: 540px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 4px 24px rgba(232,97,26,.35);
}
.btn-primary:hover {
  background: var(--saffron-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,97,26,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 1rem 0 1.75rem;
}

/* ── ORNAMENT ── */
.mandala-bg {
  position: absolute;
  pointer-events: none;
  opacity: .045;
}
.mandala-bg svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}
#nav.scrolled {
  background: rgba(26,36,85,.97);
  padding: .65rem 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.nav-logo span { color: var(--gold); }
.nav-logo small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  letter-spacing: .12em;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg,
      rgba(26,36,85,.88) 0%,
      rgba(196,30,58,.72) 50%,
      rgba(232,97,26,.82) 100%),
    url('img/bg-header.indie.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(232,97,26,.1) 0%, transparent 45%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold-lt);
  margin-bottom: 1rem;
  opacity: .9;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-lt);
  position: relative;
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-langs {
  display: flex;
  gap: .75rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.lang-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  color: rgba(255,255,255,.9);
  font-size: .8125rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.lang-chip .flag { font-size: 1rem; }

/* HERO CARD */
.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
}
.hero-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 3px solid rgba(255,255,255,.4);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  flex-shrink: 0;
}
.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: .25rem;
}
.hero-card p {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  margin-bottom: 1.5rem;
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-item {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-lbl {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: .25rem;
}
.license-badge {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(212,175,55,.18);
  border: 1px solid rgba(212,175,55,.4);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
}
.license-badge .icon { font-size: 1.25rem; }
.license-badge span { font-size: .8125rem; line-height: 1.35; }
.license-badge strong { color: var(--gold-lt); }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator .arrow {
  width: 28px; height: 28px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  border-radius: 2px;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════
   STRIP – QUICK STATS
══════════════════════════════════════ */
#strip {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-lt) 100%);
  padding: 2.5rem 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.strip-item { color: #fff; }
.strip-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.strip-lbl {
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  margin-top: .35rem;
}
.strip-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about { padding: 7rem 0; background: var(--cream); position: relative; overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--crimson) 50%, var(--navy) 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'%3E%3Ccircle cx='30' cy='30' r='25'/%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='15'/%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3Cline x1='5' y1='30' x2='55' y2='30'/%3E%3Cline x1='30' y1='5' x2='30' y2='55'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}
.about-badge .big { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 900; line-height: 1; }
.about-badge small { font-size: .75rem; font-weight: 600; opacity: .8; }
.about-flag-strip {
  position: absolute;
  top: -1rem;
  left: -1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.flag-bubble {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.highlight-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: 1rem;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.hi-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hi-title { font-weight: 600; font-size: .875rem; color: var(--navy); }
.hi-desc { font-size: .775rem; color: var(--gray); margin-top: .2rem; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { padding: 7rem 0; background: var(--white); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-sub { margin-inline: auto; }
.services-header .divider { margin-inline: auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  border-color: transparent;
  color: #fff;
}
.service-card.featured::before { transform: scaleX(1); }
.svc-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.service-card:not(.featured) .svc-icon { background: var(--cream-dk); }
.service-card.featured .svc-icon { background: rgba(255,255,255,.12); }
.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--navy);
}
.service-card.featured .svc-title { color: #fff; }
.svc-desc {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.7;
}
.service-card.featured .svc-desc { color: rgba(255,255,255,.75); }
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.25rem;
}
.svc-tag {
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
}
.service-card:not(.featured) .svc-tag {
  background: var(--cream-dk);
  color: var(--saffron);
}
.service-card.featured .svc-tag {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}

/* ══════════════════════════════════════
   DESTINATIONS
══════════════════════════════════════ */
#destinations { padding: 7rem 0; background: var(--cream); }
.dest-header { margin-bottom: 4rem; }
.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.25rem;
}
.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.dest-card:first-child { grid-row: 1 / 3; }
.dest-bg {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.dest-card:hover .dest-bg { transform: scale(1.06); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,36,85,.85) 0%, rgba(26,36,85,.1) 60%);
}
.dest-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  color: #fff;
}
.dest-flag { font-size: 1.75rem; margin-bottom: .5rem; }
.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.dest-card:first-child .dest-name { font-size: 2.25rem; }
.dest-trips {
  font-size: .8125rem;
  color: rgba(255,255,255,.75);
}
.dest-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50px;
  padding: .3rem .85rem;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

/* ── INDIA HERO ── */
.india-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  margin-bottom: 2rem;
}
.india-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #E8611A 0%, #C41E3A 45%, #1A2455 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='60' r='55' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1.5'/%3E%3Ccircle cx='60' cy='60' r='44' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='33' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='22' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cline x1='5' y1='60' x2='115' y2='60' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cline x1='60' y1='5' x2='60' y2='115' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") center / 140px repeat;
}
.india-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.45) 0%, rgba(0,0,0,.1) 60%, rgba(0,0,0,.0) 100%);
}
.india-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  color: #fff;
}
.india-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin: .5rem 0 .75rem;
}
.india-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.india-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.india-stat { text-align: center; }
.india-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.india-stat-lbl {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: .2rem;
}
.india-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.25);
}

/* ── REGIONS GRID ── */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.region-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.region-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--region-color), var(--region-color-dk));
}
.region-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, var(--region-color) 0%, transparent 70%);
  opacity: .07;
  pointer-events: none;
}
.region-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.region-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.region-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}
.region-cities {
  font-size: .775rem;
  font-weight: 600;
  color: var(--region-color);
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.region-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.region-tags span {
  padding: .25rem .7rem;
  background: var(--cream-dk);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--region-color);
}

/* ── RESPONSIVE DESTINATIONS ── */
@media (max-width: 1024px) {
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .india-hero { height: 340px; }
}
@media (max-width: 768px) {
  .regions-grid { grid-template-columns: 1fr; }
  .india-hero { height: auto; min-height: 360px; }
  .india-hero-content { padding: 1.75rem; }
  .india-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
  }
  .india-stat-div { display: none; }
  .india-stat-num { font-size: 1.5rem; }
  .india-stat-lbl { font-size: .65rem; }
}

/* ══════════════════════════════════════
   TIMELINE / EXPERIENCE
══════════════════════════════════════ */
#experience { padding: 7rem 0; background: var(--white); }
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  position: relative;
}
.timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--saffron), var(--gold), var(--navy));
  min-height: 100%;
}
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--saffron);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--saffron);
  flex-shrink: 0;
  margin: 2rem 0;
}
.exp-col { display: flex; flex-direction: column; gap: 2rem; padding: 1rem 0; }
.exp-col.right { padding-top: 4rem; }
.exp-item {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
}
.exp-item:hover { box-shadow: var(--shadow-md); border-color: var(--saffron); }
.exp-period {
  display: inline-block;
  background: var(--cream-dk);
  color: var(--saffron);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.exp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .35rem;
}
.exp-org {
  font-size: .8125rem;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: .5rem;
}
.exp-desc { font-size: .8375rem; color: var(--gray); line-height: 1.65; }

/* ══════════════════════════════════════
   LANGUAGES
══════════════════════════════════════ */
#languages {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  position: relative;
  overflow: hidden;
}
.lang-inner { text-align: center; position: relative; z-index: 1; }
.lang-inner .section-title { color: #fff; }
.lang-inner .section-title span { color: var(--gold-lt); }
.lang-inner .section-sub { color: rgba(255,255,255,.65); margin-inline: auto; }
.lang-inner .divider { margin-inline: auto; }
.lang-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.lang-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.lang-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.lang-flag { font-size: 3rem; margin-bottom: .75rem; }
.lang-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: .3rem;
}
.lang-level {
  font-size: .775rem;
  color: var(--gold-lt);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.lang-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  margin-top: .85rem;
  overflow: hidden;
}
.lang-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  transition: width 1.2s ease;
}

/* ══════════════════════════════════════
   TRUST / TESTIMONIALS
══════════════════════════════════════ */
#trust { padding: 6rem 0; background: var(--cream); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.trust-left { position: sticky; top: 6rem; }
.trust-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.trust-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--saffron);
  transition: var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.trust-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.trust-author { display: flex; align-items: center; gap: .75rem; }
.trust-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: .9rem;
}
.trust-name { font-weight: 600; font-size: .875rem; color: var(--navy); }
.trust-trip { font-size: .775rem; color: var(--gray); }
.trust-stars { color: var(--gold); font-size: .9rem; margin-bottom: .5rem; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact { padding: 7rem 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--cream-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: .25rem;
}
.contact-value { font-weight: 600; color: var(--navy); font-size: .9375rem; }
.contact-note { font-size: .8125rem; color: var(--gray); margin-top: .15rem; }
.contact-quote {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
}
.contact-quote p { font-family: 'Playfair Display', serif; font-style: italic; color: var(--navy); font-size: 1.0625rem; line-height: 1.65; }
.contact-quote small { font-size: .8125rem; color: var(--gray); margin-top: .5rem; display: block; }

/* FORM */
.contact-form {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  background: var(--light);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,97,26,.12);
  background: #fff;
}
.form-group textarea { min-height: 120px; }
.form-submit { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: .75rem; }
.footer-brand p { font-size: .8375rem; line-height: 1.7; max-width: 300px; }
.footer-heading {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .8375rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-mandala {
  font-size: 1.4rem;
  filter: opacity(.4);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual {
    display: flex;
    justify-content: center;
  }
  .about-img-frame {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    aspect-ratio: 1;
    flex-shrink: 0;
  }
  .about-img-frame img { object-position: center top; }
  .about-badge { display: none; }
  .about-flag-strip { display: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .lang-cards { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-left { position: static; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .timeline-center { display: none; }
  .exp-col.right { padding-top: 0; }
  .exp-col { padding: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── SECTION HEADER HELPERS ── */
.section-header-center { text-align: center; margin-bottom: 4rem; }
.divider-center { margin-inline: auto; }
.section-sub-center { margin-inline: auto; }

/* ── FADE IN ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
