/* ════════════════════════════════════════════════════
   HAMPI TOURS BY RAKESH — DESIGN SYSTEM v3
   "Living Heritage" — Warm, Editorial, Cinematic
   ════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── Tokens ── */
:root {
  /* Brand */
  --rust:       #C8651B;
  --rust-dk:    #A3501A;
  --rust-lt:    #DF7428;
  --gold:       #D4892B;
  --gold-lt:    #F0B84A;
  --gold-pale:  rgba(212,137,43,.14);
  --navy:       #1B3A5C;
  --navy-lt:    #2C5282;

  /* Surface */
  --cream:      #FBF4E8;
  --stone:      #F4EAD5;
  --warm-white: #FFFDF8;
  --sand:       #EDE0C8;

  /* Text */
  --text:       #241208;
  --text-body:  #3D2412;
  --muted:      #7A5C40;
  --light-text: rgba(255,255,255,.75);

  /* Shadows — warm brown tone */
  --sh-xs: 0 1px 6px rgba(100,50,15,.08);
  --sh-sm: 0 3px 16px rgba(100,50,15,.11);
  --sh-md: 0 8px 32px rgba(100,50,15,.14);
  --sh-lg: 0 20px 56px rgba(100,50,15,.18);

  /* Border */
  --border: 1px solid rgba(180,120,60,.15);
  --border-md: 1px solid rgba(180,120,60,.25);

  /* Radius */
  --r:    16px;
  --r-sm: 10px;
  --r-xs: 7px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.65;
  padding-bottom: 80px;
}

/* ════════════════════════════════
   NAVIGATION
   ════════════════════════════════ */
.nav-container {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(251,244,232,.96);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(212,137,43,.22);
  box-shadow: 0 2px 20px rgba(100,50,15,.08);
}
.nav-header {
  display: flex; align-items: center;
  justify-content: space-between; padding: 11px 18px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 17px;
  color: var(--rust); text-decoration: none;
  letter-spacing: -.2px;
}
.hamburger {
  background: none; border: none; cursor: pointer;
  padding: 6px; display: flex; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  display: flex; flex-direction: column; gap: 5px; padding: 0 16px;
}
.nav-menu.open { max-height: 400px; padding: 10px 16px 14px; }
.nav-item {
  padding: 10px 16px; background: var(--navy);
  color: white; text-decoration: none;
  border-radius: var(--r-sm); font-weight: 600; font-size: 14px;
  text-align: center; transition: background .2s;
}
.nav-item:hover   { background: var(--navy-lt); }
.nav-item.active  { background: var(--rust); }

/* ════════════════════════════════
   HERO — DARK VARIANT (all pages)
   ════════════════════════════════ */
.hero {
  background: linear-gradient(155deg, #0A1A28 0%, #0F2236 40%, #172D45 70%, #1B3A5C 100%);
  padding: 88px 22px 52px;
  text-align: center; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 80% 0%, rgba(200,101,27,.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 100%, rgba(212,137,43,.15) 0%, transparent 50%);
}
/* Decorative stone texture lines */
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 60px,
    rgba(255,255,255,.012) 60px, rgba(255,255,255,.012) 61px
  );
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); padding: 4px 14px;
  border: 1px solid rgba(212,137,43,.3); border-radius: 50px;
  background: rgba(212,137,43,.08); margin-bottom: 16px;
  position: relative; z-index: 1;
}
.hero-logo {
  width: 78px; height: 78px; object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.45));
  position: relative; z-index: 1;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 8.5vw, 52px);
  font-weight: 700; color: #fff;
  line-height: 1.12; letter-spacing: -.5px;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--gold-lt); font-size: 1.05em;
}
.hero-sub   { color: var(--light-text); font-size: 14px; margin-bottom: 5px; position: relative; z-index: 1; }
.hero-tagline {
  color: var(--gold); font-size: 13px; font-weight: 600;
  margin-bottom: 26px; position: relative; z-index: 1;
}

/* CTA row */
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.btn-primary {
  display: inline-block; background: var(--rust); color: #fff;
  padding: 14px 30px; border-radius: 50px; text-decoration: none;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 22px rgba(200,101,27,.45);
  transition: transform .2s, box-shadow .2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,101,27,.55); }

.btn-secondary {
  display: inline-block; background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.28); color: #fff;
  padding: 13px 28px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 14px;
  transition: background .2s, border-color .2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-secondary:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); }

/* Advance booking badge on hero */
.hero-adv-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,137,43,.15); border: 1px solid rgba(212,137,43,.35);
  color: var(--gold-lt); font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  margin-top: 16px; position: relative; z-index: 1;
}

/* ════════════════════════════════
   STATS BAR
   ════════════════════════════════ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--warm-white);
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--sh-sm);
}
.stat-item {
  padding: 18px 8px; text-align: center;
  border-right: 1px solid var(--sand);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 24px; color: var(--rust); font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 9.5px; color: var(--muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: .7px; margin-top: 4px;
}

/* ════════════════════════════════
   SECTION TITLE
   ════════════════════════════════ */
.section-title {
  text-align: center; padding: 40px 20px 18px;
  max-width: 1100px; margin: 0 auto;
}
.section-title h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 5vw, 36px);
  color: var(--navy); font-weight: 700;
  line-height: 1.2; letter-spacing: -.3px;
}
.section-title h2 em {
  font-style: italic; font-weight: 400; color: var(--rust);
}
.section-title p {
  font-size: 14px; color: var(--muted); margin-top: 6px;
  font-weight: 400;
}
.title-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin: 14px auto 0; max-width: 200px;
}
.title-ornament::before,
.title-ornament::after {
  content: ''; flex: 1; height: 1px; background: var(--sand);
}
.title-ornament span {
  font-size: 14px; color: var(--gold);
}

/* ════════════════════════════════
   TOUR / SERVICE CARDS (vertical)
   ════════════════════════════════ */
.tours-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; padding: 0 14px 8px;
  max-width: 960px; margin: 0 auto;
}

.tour-card {
  background: var(--warm-white);
  border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(180,120,60,.22);
  box-shadow: var(--sh-sm);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.tour-card-img {
  position: relative; overflow: hidden; height: 180px;
}
.tour-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.05); }

/* gradient overlay for image */
.tour-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(10,20,35,.65) 100%);
}
.tour-card-img-tag {
  position: absolute; top: 10px; left: 12px;
  font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  background: var(--rust); color: #fff;
  padding: 3px 10px; border-radius: 50px;
}
.tour-card-img-time {
  position: absolute; bottom: 10px; right: 12px;
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.45); backdrop-filter: blur(4px);
  padding: 3px 8px; border-radius: 50px;
}

/* Gradient fallback for cards without images */
.tour-card-grad {
  height: 140px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  position: relative; overflow: hidden;
}
.tour-card-grad-icon { font-size: 38px; }
.tour-card-grad-name { color: white; font-size: 14px; font-weight: 700; text-align: center; }

.tour-card-body { padding: 18px 18px 6px; flex: 1; }
.tour-card-title {
  font-family: 'Fraunces', serif;
  font-size: 18px; color: var(--navy); font-weight: 600;
  margin-bottom: 4px; line-height: 1.25;
}
.tour-card-sub {
  font-size: 12px; color: var(--muted); margin-bottom: 10px;
  font-weight: 500;
}
.tour-card-body p {
  font-size: 13.5px; color: var(--text-body); line-height: 1.7;
  margin-bottom: 12px;
}

/* Stops list inside tour card */
.stops-list { list-style: none; margin: 0 0 14px; }
.stops-list li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 7px 10px; background: var(--cream);
  border-radius: var(--r-xs); margin-bottom: 5px;
  font-size: 13px; color: var(--text-body);
  border: 1px solid rgba(180,120,60,.18);
  border-left: 3px solid var(--rust);
}
.stops-list li a { color: var(--rust); font-weight: 600; text-decoration: none; }
.stops-list li a:hover { text-decoration: underline; }

/* Trust chips inside card */
.tour-trust {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 10px 18px 14px;
}
.trust-chip {
  font-size: 10.5px; font-weight: 600; color: var(--navy);
  background: rgba(27,58,92,.08); border-radius: 50px;
  padding: 3px 10px;
}

/* Sunrise highlight strip */
.sunrise-strip {
  margin: 8px 0; padding: 10px 14px; border-radius: var(--r-xs);
  background: linear-gradient(135deg, rgba(139,63,0,.85), rgba(200,101,27,.85));
  color: white; font-size: 12.5px; font-weight: 600;
}

/* Stay card grid (2 cols) */
.stay-amenities {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; padding: 4px 0 10px;
}
.amenity-col-title {
  font-size: 10px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: .6px; margin-bottom: 7px;
}

/* Package highlight box */
.pkg-box {
  background: linear-gradient(135deg, #0A1A28, #1B3A5C);
  border-radius: var(--r-sm); padding: 16px; margin: 10px 0;
  color: white;
}
.pkg-box-title {
  font-size: 10px; font-weight: 700; color: var(--gold-lt);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.pkg-box-name {
  font-family: 'Fraunces', serif; font-size: 16px;
  font-weight: 600; margin-bottom: 10px;
}
.pkg-item {
  background: rgba(255,255,255,.12);
  border-left: 3px solid var(--gold);
  border-radius: 6px; padding: 8px 12px;
  font-size: 12.5px; margin-bottom: 5px; font-weight: 500;
}

/* Card CTA */
.tour-card-cta {
  display: block; text-align: center;
  background: var(--rust); color: white;
  padding: 12px; border-radius: 0 0 var(--r) var(--r);
  text-decoration: none; font-weight: 700; font-size: 14px;
  transition: background .2s; letter-spacing: .2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tour-card-cta:hover { background: var(--rust-dk); }

/* ════════════════════════════════
   TRUST / RAKESH PROFILE
   ════════════════════════════════ */
.trust-section {
  padding: 0 14px; max-width: 960px; margin: 0 auto;
}
.trust-card {
  background: linear-gradient(135deg, #0A1A28 0%, #163352 100%);
  border-radius: var(--r); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  box-shadow: var(--sh-md);
}
.trust-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(212,137,43,.18) 0%, transparent 70%);
  pointer-events: none;
}
.trust-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  flex-shrink: 0;
}
.trust-avatar-fallback {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rust), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; flex-shrink: 0;
  border: 3px solid var(--gold);
}
.trust-name {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 3px;
}
.trust-role { font-size: 12px; font-weight: 500; color: var(--gold); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }
.trust-bio { font-size: 13.5px; color: var(--light-text); line-height: 1.72; margin-bottom: 10px; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.trust-pill {
  font-size: 10.5px; font-weight: 600;
  background: rgba(212,137,43,.18); color: var(--gold-lt);
  border: 1px solid rgba(212,137,43,.28); border-radius: 50px;
  padding: 3px 10px;
}

/* ════════════════════════════════
   REVIEWS / TESTIMONIALS
   ════════════════════════════════ */
.reviews-section {
  padding: 0 14px; max-width: 960px; margin: 0 auto;
}
.reviews-row {
  display: flex; flex-direction: column; gap: 12px;
}

/* Single rating box */
.rating-box {
  background: var(--warm-white); border: var(--border);
  border-radius: var(--r); padding: 20px;
  text-align: center; box-shadow: var(--sh-sm);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.rating-box:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.rating-stars { font-size: 24px; color: var(--gold); letter-spacing: 3px; }
.rating-score {
  font-family: 'Fraunces', serif; font-size: 20px;
  color: var(--navy); font-weight: 700; margin-top: 6px;
}
.rating-count { font-size: 13px; color: var(--muted); margin-top: 4px; }
.rating-link {
  display: inline-block; color: #4285F4; font-weight: 600;
  font-size: 13px; margin-top: 10px; text-decoration: none;
}

/* Testimonial quotes */
.testimonial {
  background: var(--warm-white); border: var(--border);
  border-radius: var(--r); padding: 18px 20px;
  box-shadow: var(--sh-sm); position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: 'Fraunces', serif; font-size: 52px; line-height: 1;
  color: var(--gold); opacity: .35;
  position: absolute; top: 10px; left: 16px;
}
.testimonial-text {
  font-size: 13.5px; color: var(--text-body); line-height: 1.72;
  margin-bottom: 12px; padding-top: 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 10px;
}
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--rust));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.testimonial-sub  { font-size: 11px; color: var(--muted); }
.testimonial-stars { font-size: 12px; color: var(--gold); margin-left: auto; letter-spacing: 1px; }

/* ════════════════════════════════
   EXPLORE GRID (places)
   ════════════════════════════════ */
.explore-section { padding: 0 14px 16px; max-width: 960px; margin: 0 auto; }
.explore-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.explore-card {
  background: var(--warm-white); border-radius: var(--r);
  overflow: hidden; border: var(--border);
  box-shadow: var(--sh-sm); text-decoration: none;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  display: block;
}
.explore-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.explore-card-top {
  height: 110px; overflow: hidden; position: relative;
}
.explore-card-top img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform .4s ease;
}
.explore-card:hover .explore-card-top img { transform: scale(1.08); }
.explore-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(10,20,35,.55));
}
.explore-card-body { padding: 10px 12px 13px; }
.explore-card-body h4 {
  font-family: 'Fraunces', serif;
  font-size: 13.5px; color: var(--navy); font-weight: 600;
  margin-bottom: 3px;
}
.explore-card-body p { font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.explore-tag {
  display: inline-block; background: var(--rust); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: .5px;
  padding: 2px 8px; border-radius: 50px; text-transform: uppercase;
  margin-top: 5px;
}

/* ════════════════════════════════
   CITY ORIGIN SECTION (home)
   ════════════════════════════════ */
.origin-section { padding: 0 14px; max-width: 960px; margin: 0 auto; }
.city-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
.city-card {
  background: linear-gradient(135deg, #0A1A28, #1B3A5C);
  border-radius: var(--r); padding: 18px 16px;
  text-decoration: none; display: block;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--sh-sm);
}
.city-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.city-card-icon { font-size: 26px; margin-bottom: 8px; }
.city-card-name { font-family: 'Fraunces', serif; font-size: 17px; color: #fff; margin-bottom: 4px; font-weight: 600; }
.city-card-dist { font-size: 11px; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.city-card-desc { font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.55; }
.city-card-link {
  display: inline-block; margin-top: 12px;
  font-size: 12px; font-weight: 700; color: var(--gold-lt);
  background: rgba(212,137,43,.15); border: 1px solid rgba(212,137,43,.3);
  padding: 5px 12px; border-radius: 50px;
}

/* ════════════════════════════════
   DIVIDER
   ════════════════════════════════ */
.divider {
  height: 1px; background: var(--sand);
  margin: 24px 16px; max-width: 960px;
}

/* ════════════════════════════════
   MAP
   ════════════════════════════════ */
.map-section  { padding: 0 14px; max-width: 960px; margin: 0 auto 20px; }
.map-label    { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.map-frame {
  border-radius: var(--r); overflow: hidden;
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 2px var(--gold), var(--sh-md);
  position: relative; padding-bottom: 56%; height: 0;
  -webkit-mask-image: -webkit-radial-gradient(white,black);
  transform: translateZ(0);
}
.map-frame iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none; display: block;
}
.map-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,26,40,.85));
  color: white; font-size: 12px; font-weight: 600;
  padding: 24px 14px 10px; text-align: center;
}

/* ════════════════════════════════
   CONTACT CARDS
   ════════════════════════════════ */
.contact-section { padding: 0 14px; max-width: 960px; margin: 0 auto; }
.contact-card {
  background: var(--warm-white); border: var(--border);
  border-radius: var(--r); padding: 22px 20px;
  box-shadow: var(--sh-sm); margin-bottom: 14px;
}
.contact-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px; color: var(--navy); margin-bottom: 14px; font-weight: 600;
}
.contact-btn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-call {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; background: var(--navy); color: #fff;
  padding: 15px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 700; font-size: 14px; transition: background .2s;
  line-height: 1.5;
}
.cta-call:hover { background: var(--navy-lt); }
.cta-call span { font-size: 11px; font-weight: 400; opacity: .8; }
.cta-wa {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; background: #25D366; color: #fff;
  padding: 15px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 700; font-size: 14px; transition: opacity .2s;
  line-height: 1.5;
}
.cta-wa:hover { opacity: .88; }
.cta-wa span { font-size: 11px; font-weight: 400; opacity: .85; }
.social-row {
  display: flex; justify-content: center; gap: 18px; margin-top: 10px;
}
.social-row a img { width: 44px; height: 44px; transition: transform .2s; }
.social-row a:hover img { transform: scale(1.12); }

/* Train info box */
.train-box {
  background: var(--cream); border: var(--border);
  border-radius: var(--r-sm); padding: 14px 16px; margin-top: 12px;
}
.train-box h4 {
  font-family: 'Fraunces', serif;
  font-size: 14.5px; color: var(--navy); margin-bottom: 10px; font-weight: 600;
}
.train-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px;
}
.train-item {
  background: var(--warm-white); border-radius: var(--r-xs);
  padding: 10px 12px; border-left: 3px solid var(--rust);
}
.train-item h5 { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.train-item p  { font-size: 11.5px; color: var(--muted); line-height: 1.5; }

/* ════════════════════════════════
   ENQUIRY FORM
   ════════════════════════════════ */
.form-header {
  background: linear-gradient(155deg, #0A1A28, #1B3A5C);
  padding: 80px 22px 36px; text-align: center; position: relative; overflow: hidden;
}
.form-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(200,101,27,.2) 0%, transparent 55%);
  pointer-events: none;
}
.form-header-back {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background .2s;
}
.form-header-back:hover { background: rgba(255,255,255,.22); }
.form-header-icon { font-size: 40px; margin-bottom: 10px; position: relative; z-index: 1; }
.form-header h1 {
  font-family: 'Fraunces', serif; font-size: 26px; color: #fff;
  font-weight: 700; margin-bottom: 6px; position: relative; z-index: 1;
}
.form-header p { color: var(--light-text); font-size: 14px; position: relative; z-index: 1; }
.form-header-badge {
  display: inline-block; background: rgba(212,137,43,.18);
  border: 1px solid rgba(212,137,43,.4); color: var(--gold-lt);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 12px;
  position: relative; z-index: 1;
}

.form-wrap { max-width: 540px; margin: 0 auto; padding: 24px 16px 60px; }
.form-card {
  background: var(--warm-white); border: var(--border);
  border-radius: var(--r); padding: 22px 20px;
  box-shadow: var(--sh-sm); margin-bottom: 14px;
}

.field-label {
  display: block; font-size: 12.5px; font-weight: 700;
  color: var(--navy); margin-bottom: 7px; letter-spacing: .2px;
}
.field-label .req { color: var(--rust); margin-left: 2px; }
.field-input, .field-select, .field-textarea {
  width: 100%; padding: 11px 14px;
  background: var(--cream); border: 1px solid rgba(180,120,60,.2);
  border-radius: var(--r-sm); font-size: 14px;
  color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color: var(--rust); box-shadow: 0 0 0 3px rgba(200,101,27,.12);
}
.field-textarea { resize: vertical; min-height: 90px; }
.field-group { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px;
  background: var(--rust); color: #fff;
  border: none; border-radius: var(--r-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 20px rgba(200,101,27,.4);
  transition: background .2s, transform .15s;
}
.submit-btn:hover { background: var(--rust-dk); transform: translateY(-1px); }
.submit-btn:active { transform: scale(.98); }

.success-screen {
  display: none; text-align: center;
  background: var(--warm-white); border: var(--border);
  border-radius: var(--r); padding: 36px 24px;
  box-shadow: var(--sh-sm);
}
.success-screen.visible { display: block; }
.success-icon { font-size: 52px; margin-bottom: 14px; }
.success-title { font-family: 'Fraunces', serif; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.success-text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Service selected badge */
.service-badge {
  background: var(--navy); color: #fff;
  border-radius: var(--r); padding: 14px 18px;
  margin-bottom: 20px; display: flex; align-items: center;
  gap: 12px; box-shadow: var(--sh-sm);
}
.service-badge-icon { font-size: 28px; flex-shrink: 0; }
.service-badge h3 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.service-badge p { font-size: 12px; opacity: .75; }

/* ════════════════════════════════
   LANDMARK PAGES
   ════════════════════════════════ */
.landmark-hero {
  padding: 88px 22px 48px; text-align: center;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  min-height: 280px; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
}
.landmark-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,16,26,.55) 0%,
    rgba(8,16,26,.40) 40%,
    rgba(8,16,26,.75) 100%
  );
}
.landmark-hero > * { position: relative; z-index: 1; }
.landmark-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 7vw, 42px); color: #fff;
  font-weight: 700; line-height: 1.15;
  margin-bottom: 10px; letter-spacing: -.3px;
}
.landmark-hero h1 em { font-style: italic; color: var(--gold-lt); font-weight: 400; }
.landmark-hero p {
  color: rgba(255,255,255,.78); font-size: 14px;
  max-width: 420px; margin: 0 auto 20px; line-height: 1.7;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-bottom: 14px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.55); font-size: 11px; text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: rgba(255,255,255,.3); font-size: 11px; }
.breadcrumb strong { color: var(--gold-lt); font-size: 11px; }

.lm-body { padding: 0 14px; max-width: 680px; margin: 0 auto; }

.lm-section {
  background: var(--warm-white); border: var(--border);
  border-radius: var(--r); padding: 22px 20px; margin: 14px 0;
  box-shadow: var(--sh-sm);
}
.lm-section h2 {
  font-family: 'Fraunces', serif; font-size: 20px;
  color: var(--navy); font-weight: 600; margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--sand);
}
.lm-section h2 span { color: var(--rust); }
.lm-section p { font-size: 14px; color: var(--text-body); line-height: 1.80; margin-bottom: 10px; }
.lm-section p:last-child { margin-bottom: 0; }

.lm-list { list-style: none; margin: 6px 0; }
.lm-list li {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 8px 10px; background: var(--cream); border-radius: var(--r-xs);
  margin-bottom: 5px; font-size: 13.5px; color: var(--text-body);
  border-left: 2.5px solid var(--rust);
}
.lm-tip {
  background: linear-gradient(135deg, rgba(200,101,27,.07), rgba(212,137,43,.07));
  border: 1px solid rgba(200,101,27,.2); border-radius: var(--r-xs);
  padding: 12px 16px; margin: 10px 0; font-size: 13.5px; line-height: 1.65;
}
.lm-tip strong { color: var(--rust); }

.lm-img {
  border-radius: var(--r); overflow: hidden;
  border: 2px solid var(--navy); box-shadow: var(--sh-md);
  margin: 14px 0; line-height: 0;
}
.lm-img img { width: 100%; height: 220px; object-fit: cover; display: block; }

.lm-cta {
  background: linear-gradient(135deg, #0A1A28, #1B3A5C);
  border-radius: var(--r); padding: 24px 20px; text-align: center; margin: 14px 0;
}
.lm-cta h3 {
  font-family: 'Fraunces', serif; color: var(--gold-lt);
  font-size: 18px; font-weight: 600; margin-bottom: 8px;
}
.lm-cta p { color: rgba(255,255,255,.72); font-size: 13px; margin-bottom: 16px; line-height: 1.6; }
.lm-cta-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-call {
  display: block; text-align: center; background: var(--rust); color: #fff;
  padding: 13px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 700; font-size: 14px; transition: background .2s;
}
.btn-call:hover { background: var(--rust-dk); }
.btn-wa {
  display: block; text-align: center; background: #25D366; color: #fff;
  padding: 13px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 700; font-size: 14px; transition: opacity .2s;
}
.btn-wa:hover { opacity: .88; }

/* Related places */
.related-places { padding: 0 14px 16px; max-width: 680px; margin: 0 auto; }
.related-places h3 {
  font-family: 'Fraunces', serif; font-size: 17px; color: var(--navy);
  margin-bottom: 12px; text-align: center; font-weight: 600;
}
.related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.related-card {
  background: var(--warm-white); border-radius: var(--r);
  overflow: hidden; border: var(--border); box-shadow: var(--sh-sm);
  text-decoration: none; transition: transform .2s, box-shadow .2s; display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.related-card-inner { padding: 14px 12px; }
.related-card-icon { font-size: 22px; margin-bottom: 6px; }
.related-card h4 { font-size: 13px; color: var(--navy); font-weight: 700; margin-bottom: 3px; }
.related-card p  { font-size: 11px; color: var(--muted); }

/* ════════════════════════════════
   CITY PAGES (Pune / Mumbai)
   ════════════════════════════════ */
.city-hero {
  background: linear-gradient(155deg, #0A1A28, #1B3A5C);
  padding: 88px 22px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.city-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(200,101,27,.22) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 100%, rgba(212,137,43,.14) 0%, transparent 50%);
  pointer-events: none;
}
.city-hero > * { position: relative; z-index: 1; }
.city-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(28px,7vw,44px); color: #fff; font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.city-hero h1 em { color: var(--gold-lt); font-style: italic; }
.city-hero p { color: var(--light-text); font-size: 14px; max-width: 440px; margin: 0 auto 22px; line-height: 1.7; }

.city-body { padding: 0 14px; max-width: 780px; margin: 0 auto; }
.city-section {
  background: var(--warm-white); border: var(--border);
  border-radius: var(--r); padding: 22px 20px; margin: 14px 0;
  box-shadow: var(--sh-sm);
}
.city-section h2 {
  font-family: 'Fraunces', serif; font-size: 20px; color: var(--navy);
  font-weight: 600; margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid var(--sand);
}
.city-section p { font-size: 14px; color: var(--text-body); line-height: 1.80; margin-bottom: 10px; }
.city-section h3 { font-family: 'Fraunces', serif; font-size: 16px; color: var(--rust); font-weight: 600; margin: 14px 0 8px; }

.train-card {
  background: var(--cream); border: var(--border);
  border-radius: var(--r-sm); padding: 14px 16px; margin-bottom: 10px;
  border-left: 3px solid var(--rust);
}
.train-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.train-card p  { font-size: 13px; color: var(--text-body); line-height: 1.65; }

.itinerary-step {
  display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rust), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
  margin-top: 2px;
}
.step-content h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-content p  { font-size: 13px; color: var(--text-body); line-height: 1.6; }

.faq-item {
  border-bottom: 1px solid var(--sand); padding: 14px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.faq-a { font-size: 13.5px; color: var(--text-body); line-height: 1.65; }

/* ════════════════════════════════
   SEASON / ADVANCE BOOKING STRIP
   ════════════════════════════════ */
.adv-strip {
  background: linear-gradient(135deg, rgba(139,63,0,.10), rgba(200,101,27,.10));
  border: 1px solid rgba(200,101,27,.25); border-radius: var(--r-sm);
  padding: 10px 14px; margin: 8px 0;
  font-size: 12.5px; color: var(--text-body); font-weight: 500;
}
.adv-strip strong { color: var(--rust); }

/* City tip box (landmark pages) */
.city-tip-box {
  background: linear-gradient(135deg, rgba(27,58,92,.07), rgba(200,101,27,.06));
  border: 1px solid rgba(27,58,92,.15); border-radius: var(--r-sm);
  padding: 14px 16px; margin: 12px 0;
}
.city-tip-box h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.city-tip-box p  { font-size: 13px; color: var(--text-body); line-height: 1.6; }
.city-tip-box a  { color: var(--rust); font-weight: 600; text-decoration: none; }

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.fixed-footer {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: rgba(251,244,232,.97);
  border-top: 1px solid rgba(212,137,43,.25);
  padding: 10px 0;
  display: flex; justify-content: center; gap: 26px; z-index: 1000;
  box-shadow: 0 -3px 14px rgba(100,50,15,.10);
  backdrop-filter: blur(12px);
}
.fixed-footer a img {
  width: 36px; height: 36px; transition: transform .2s;
}
.fixed-footer a:hover img { transform: scale(1.15); }
.copyright-bar {
  background: var(--navy); color: rgba(255,255,255,.55);
  font-size: 12px; text-align: center; padding: 10px 16px;
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 8px; margin-bottom: 80px;
  font-weight: 400;
}
.credit-link { color: var(--gold); font-weight: 700; text-decoration: none; }
.credit-link:hover { color: var(--gold-lt); }

/* ════════════════════════════════
   ANIMATIONS
   ════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero    { animation: fadeUp .55s ease both; }
.stats-bar { animation: fadeUp .55s .08s ease both; }

/* ════════════════════════════════
   DESKTOP — 768px+
   ════════════════════════════════ */
@media (min-width: 768px) {
  .nav-container { display: flex; align-items: center; justify-content: space-between; padding: 0 48px; }
  .nav-header { padding: 13px 0; flex: 0 0 auto; }
  .hamburger { display: none; }
  .nav-menu { display: flex !important; flex-direction: row !important; max-height: none !important; overflow: visible !important; padding: 0 !important; gap: 6px; align-items: center; }
  .nav-item { padding: 8px 18px; font-size: 13px; border-radius: 8px; }

  .hero { padding: 108px 64px 68px; }
  .hero h1 { font-size: clamp(42px, 4vw, 58px); }
  .hero-logo { width: 96px; height: 96px; }
  .hero-sub { font-size: 16px; }

  .stats-bar { max-width: 1000px; margin: 0 auto; }
  .stat-num  { font-size: 28px; }
  .stat-label { font-size: 11px; }
  .stat-item { padding: 22px 16px; }

  .section-title { padding: 48px 0 22px; }
  .section-title h2 { font-size: clamp(28px, 3vw, 38px); }

  .tours-grid { grid-template-columns: 1fr 1fr; padding: 0 24px 12px; max-width: 1060px; gap: 20px; margin: 0 auto; }
  .tour-card-img { height: 210px; }

  .trust-card { flex-direction: row; padding: 28px 32px; }
  .trust-avatar, .trust-avatar-fallback { width: 88px; height: 88px; font-size: 38px; }

  .reviews-row { flex-direction: row; flex-wrap: wrap; }
  .rating-box { flex: 0 0 220px; }
  .testimonial { flex: 1; min-width: 220px; }

  .explore-section { padding: 0 24px 20px; max-width: 1060px; margin: 0 auto; }
  .explore-grid { grid-template-columns: repeat(4,1fr); gap: 16px; }
  .explore-card-top { height: 140px; }

  .city-cards-grid { grid-template-columns: 1fr 1fr; }
  .origin-section { max-width: 1060px; padding: 0 24px; margin: 0 auto; }

  .map-section { padding: 0 24px; max-width: 1060px; margin: 0 auto; }
  .map-frame { padding-bottom: 45%; }

  .contact-section { max-width: 960px; padding: 0 24px; margin: 0 auto; }
  .trust-section, .reviews-section { max-width: 960px; padding: 0 24px; margin: 0 auto; }
  .divider { max-width: 1000px; margin: 32px auto; }

  .lm-body { max-width: 820px; padding: 0 32px; margin: 0 auto; }
  .lm-section { padding: 28px 32px; }
  .lm-section h2 { font-size: 22px; }
  .lm-section p { font-size: 15px; }
  .lm-img img { height: 280px; }
  .lm-cta { padding: 30px 36px; }
  .lm-cta h3 { font-size: 21px; }
  .related-places { max-width: 820px; padding: 0 32px 24px; margin: 0 auto; }
  .related-grid { grid-template-columns: repeat(4,1fr); }

  .city-body { max-width: 860px; padding: 0 32px; margin: 0 auto; }
  .city-section { padding: 28px 32px; }
  .city-section h2 { font-size: 22px; }

  .landmark-hero { padding: 120px 64px 60px; min-height: 340px; }
  .landmark-hero h1 { font-size: clamp(32px, 4vw, 48px); }
  .landmark-hero p  { font-size: 15.5px; max-width: 540px; }

  .form-wrap { padding: 28px 24px 60px; }
  .form-card { padding: 28px 28px; }

  .fixed-footer { gap: 44px; padding: 12px 0; }
  .fixed-footer a img { width: 40px; height: 40px; }
}

/* ════════════════════════════════
   LARGE DESKTOP — 1100px+
   ════════════════════════════════ */
@media (min-width: 1100px) {
  .nav-container { padding: 0 64px; }
  .tours-grid { padding: 0 48px 16px; }
  .explore-section { padding: 0 48px 20px; }
  .city-section { padding: 0 48px; }
  .hero h1 { font-size: 62px; }
}
