/* ============================================================
   Wild Compass Travels — Global Stylesheet
   wildcompasstravels.in
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Core brand */
  --orange:    #e8590c;
  --orange-lt: #f97316;
  --saffron:   #f59e0b;          /* pilgrimage warmth */
  --maroon:    #7d1536;          /* Chardham / spiritual depth */
  --forest:    #2d5a3d;          /* Uttarakhand green */

  /* Neutrals */
  --navy:      #0f1624;
  --navy-2:    #162032;
  --navy-3:    #1e2d42;
  --white:     #ffffff;
  --cream:     #fdf8f0;          /* warm Indian cream — NOT clinical white */
  --cream-2:   #f5ede0;
  --text:      #1a1a2e;
  --text-2:    #4a4a6a;
  --text-3:    #9ca3af;
  --border:    #e8e0d8;
  --off-white: #fafaf7;
  --gold:      #c9942a;
  --green-wa:  #25d366;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow:    0 6px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --shadow-warm: 0 8px 32px rgba(232,89,12,.18);

  /* Shape */
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  --transition: .22s ease;
  --header-h: 72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}
h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}
h1 { font-size: clamp(30px, 5.5vw, 56px); }
h2 { font-size: clamp(22px, 4vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 17px; }
p  { font-size: 15px; color: var(--text-2); line-height: 1.75; }

/* ── UTILITIES ── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-maroon { color: var(--maroon); }
.text-forest { color: var(--forest); }

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.eyebrow-green  { color: var(--forest); }
.eyebrow-maroon { color: var(--maroon); }

.section-sub { font-size: 15.5px; color: var(--text-2); max-width: 540px; margin: 8px auto 40px; line-height: 1.75; }
.text-center .section-sub { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: .01em;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232,89,12,.3);
}
.btn-primary:hover { background: #c94d09; border-color: #c94d09; transform: translateY(-2px); box-shadow: var(--shadow-warm); }

.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}
.btn-wa:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

.btn-call {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-call:hover { background: var(--navy-2); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-ghost {
  background: var(--cream);
  color: var(--text);
  border-color: var(--border);
  font-size: 13px;
  padding: 10px 18px;
}
.btn-ghost:hover { background: var(--cream-2); border-color: #cfc8c0; }

.btn-maroon {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
.btn-maroon:hover { background: #5e0f28; }

.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-forest:hover { background: #1e3d28; }

.btn-sm   { padding: 9px 20px; font-size: 13px; }
.btn-lg   { padding: 16px 34px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
/* Ensure container stretches full width inside the flex header */
.site-header .container { width: 100%; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo   { display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1.1;
}
.nav-logo-name span { color: var(--saffron); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 15px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.09); }

.nav-cta { display: flex; align-items: center; gap: 8px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); 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); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--navy-2);
  padding: 20px 24px 28px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transform: translateY(-12px); opacity: 0;
  transition: all .25s ease;
  pointer-events: none;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav a { display: block; padding: 13px 0; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav a.active { color: var(--saffron); font-weight: 700; }
.mobile-nav-cta { display: none; }

/* ── FLOATING BUTTONS ── */
.wa-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  width: 56px; height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform var(--transition);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 8px 32px rgba(37,211,102,.7); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.12); }
}

.call-float {
  position: fixed; bottom: 96px; right: 24px; z-index: 900;
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(232,89,12,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: callPulse 3s ease-in-out infinite;
}
.call-float:hover { transform: scale(1.1); animation: none; box-shadow: var(--shadow-warm); }
.call-float svg { width: 26px; height: 26px; fill: #fff; }
@keyframes callPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(232,89,12,.45); }
  50%      { box-shadow: 0 6px 36px rgba(232,89,12,.65), 0 0 0 10px rgba(232,89,12,.1); }
}

/* ── HERO — SLIDESHOW ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  padding: 72px 0 56px;
  overflow: hidden;
}

/* Slideshow layers */
.hero-bg-wrap {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Dark gradient overlay — sits above slides, below content */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(8,12,22,.90) 0%,
    rgba(8,12,22,.74) 52%,
    rgba(8,12,22,.30) 100%
  );
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

/* Subtle slide indicator dots */
.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background .3s, transform .3s;
  border: none; padding: 0;
}
.hero-dot.active { background: var(--orange); transform: scale(1.3); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,89,12,.18);
  border: 1px solid rgba(232,89,12,.4);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: #ff8f4d;
  margin-bottom: 24px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.hero-content { max-width: 600px; }
.hero h1 { color: var(--white); margin-bottom: 18px; font-size: clamp(28px, 5vw, 52px); }
.hero h1 em { font-style: normal; color: var(--saffron); }
.hero-lead { color: rgba(255,255,255,.72); font-size: 16.5px; margin-bottom: 12px; line-height: 1.7; }
.hero-routes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.hero-route-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: 12px; font-weight: 500;
  padding: 5px 13px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat { border-left: 2px solid rgba(255,255,255,.15); padding-left: 16px; }
.hero-stat:first-child { border-left: none; padding-left: 0; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700;
  color: var(--white); line-height: 1;
  margin-bottom: 2px;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.5); }

/* ── CHARDHAM BAND ── */
.chardham-band {
  background: linear-gradient(135deg, var(--maroon) 0%, #5e1030 50%, #3d0a1e 100%);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.chardham-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://wildcompasstravels.in/mountain_1.jpg') center/cover no-repeat;
  opacity: .12;
}
.chardham-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.chardham-text h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 22px; margin-bottom: 6px;
}
.chardham-text p { color: rgba(255,255,255,.72); font-size: 13.5px; max-width: 520px; line-height: 1.6; }
.chardham-dhams {
  display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap;
}
.chardham-dham {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
}

/* ── TRUST STRIP ── */
.trust-strip { background: var(--orange); padding: 18px 0; }
.trust-inner  { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-item   { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.trust-icon   { font-size: 18px; }
.trust-div    { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); flex-shrink: 0; }

/* ── CARD GRIDS ── */
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* ── SECTION LAYOUT GRIDS (responsive-safe) ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.calc-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ── CHARDHAM NAV PILL ── */
.nav-chardham {
  background: rgba(245,158,11,.13) !important;
  border: 1px solid rgba(245,158,11,.38) !important;
  border-radius: 100px !important;
  color: var(--saffron) !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.nav-chardham:hover,
.nav-chardham.active {
  background: rgba(245,158,11,.28) !important;
  color: #fbbf24 !important;
  box-shadow: 0 0 0 2px rgba(245,158,11,.4) !important;
}

/* ── FLEET CARD ── */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.09);
  transition: transform .32s ease, box-shadow .32s ease;
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
}
.fleet-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.fleet-card[data-car="aura"]::before   { background: linear-gradient(90deg,#3b6fc4,var(--orange-lt)); }
.fleet-card[data-car="swift"]::before  { background: linear-gradient(90deg,#555,var(--orange)); }
.fleet-card[data-car="ertiga"]::before { background: linear-gradient(90deg,var(--saffron),var(--orange)); }
.fleet-card[data-car="innova"]::before { background: linear-gradient(90deg,var(--forest),var(--maroon)); }

.fleet-card:hover { transform: translateY(-7px); box-shadow: 0 20px 56px rgba(0,0,0,.16); }

.fleet-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #fdf6ee 0%, #f5ede0 100%);
  border-bottom: 1px solid var(--border);
}

.fleet-card-img picture {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s ease;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.13));
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.05) translateY(-3px); }

.fleet-tags {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.fleet-available-tag {
  background: var(--green-wa); color: var(--white);
  font-size: 8.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  letter-spacing: .06em;
}
.fleet-chardham-badge {
  background: var(--maroon); color: var(--white);
  font-size: 8px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  letter-spacing: .04em;
}
.fleet-card-body { padding: 20px 22px; }
.fleet-card-name-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  margin-bottom: 2px;
}
.fleet-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--text);
}
.fleet-card-rate  { font-family: 'Playfair Display', serif; font-size: 29px; font-weight: 700; color: var(--orange); line-height: 1; white-space: nowrap; }
.fleet-card-rate span { font-size: 12px; font-weight: 400; color: var(--text-3); font-family: 'Poppins', sans-serif; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.fleet-spec  {
  background: var(--cream); border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 4px;
  font-size: 10px; color: var(--text-2); font-weight: 500;
}
.fleet-card-actions  { display: flex; flex-direction: column; gap: 8px; }
.fleet-action-btns   { display: flex; flex-direction: column; gap: 7px; }
.fleet-action-btns .btn { justify-content: center; gap: 5px; }
.fleet-share-icon {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  background: rgba(255,255,255,.88); backdrop-filter: blur(4px);
  border: none; border-radius: 50%; cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background .2s, color .2s, transform .2s;
}
.fleet-share-icon:hover { background: var(--orange); color: var(--white); transform: scale(1.1); }

/* ── USP CARD ── */
.usp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.usp-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.usp-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.usp-card h4 { margin-bottom: 8px; font-size: 15.5px; color: var(--text); }
.usp-card p  { font-size: 13.5px; line-height: 1.7; }

/* ── ROUTE CARD ── */
.route-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.route-card-header { background: linear-gradient(135deg, var(--navy), var(--navy-3)); padding: 20px; }
.route-from-to { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.route-city  { font-size: 15px; font-weight: 700; color: var(--white); font-family: 'Playfair Display', serif; }
.route-arrow { color: var(--orange-lt); font-size: 18px; }
.route-meta  { display: flex; gap: 14px; flex-wrap: wrap; }
.route-meta-item { font-size: 12px; color: rgba(255,255,255,.6); }
.route-card { display: flex; flex-direction: column; }
.route-card-body { padding: 16px 20px; display: flex; flex-direction: column; flex: 1; }
.route-card-body .btn { margin-top: auto; }
.route-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.route-tag   { font-size: 11px; background: var(--cream); border: 1px solid var(--border); padding: 3px 9px; border-radius: 4px; color: var(--text-2); }
.route-fares { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.route-fare-item { font-size: 12px; }
.route-fare-label { color: var(--text-3); }
.route-fare-val   { font-weight: 700; color: var(--text); font-size: 14px; }
.route-fare-val.get-quote { color: var(--maroon); }

/* Chardham route card variant */
.route-card.chardham .route-card-header {
  background: linear-gradient(135deg, var(--maroon), #4a0d22);
}
.route-card.chardham .route-tag { background: #fdf0f4; border-color: #f5c0cc; }

/* ── TESTIMONIAL ── */
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.testimonial-stars { color: var(--saffron); font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14.5px; color: var(--text-2); line-height: 1.78; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--saffron));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--white);
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-trip { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ── FOUNDER QUOTE ── */
.founder-section { background: var(--navy); padding: 64px 0; }
.founder-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.founder-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  position: relative;
  padding-left: 28px;
}
.founder-quote::before {
  content: '\201C';
  position: absolute; left: 0; top: -8px;
  font-size: 64px; color: var(--orange); opacity: .6;
  font-family: Georgia, serif; line-height: 1;
}
.founder-names { margin-top: 20px; color: var(--saffron); font-size: 14px; font-weight: 600; }
.founder-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.founder-stat-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 22px;
}
.founder-stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.founder-stat-label { font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ── CALCULATOR ── */
.calc-wrap { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; color: var(--white); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.calc-field label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.calc-field select,
.calc-field input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 15px; color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  font-family: 'Poppins', sans-serif;
  -webkit-appearance: none;
}
.calc-field select option { background: var(--navy-2); }
.calc-field select:focus,
.calc-field input:focus  { border-color: var(--orange); }
.calc-quick-routes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; align-items: center; }
.calc-quick-label  { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-right: 4px; flex-shrink: 0; }
.calc-chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  color: rgba(255,255,255,.85);
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 500;
  padding: 5px 13px;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
  white-space: nowrap;
}
.calc-chip span { color: rgba(255,255,255,.45); margin-left: 3px; font-size: 11px; }
.calc-chip:hover, .calc-chip.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.calc-chip.active span { color: rgba(255,255,255,.75); }
.calc-vehicle-hint { font-size: 11.5px; color: rgba(255,255,255,.4); margin-top: 6px; padding-left: 2px; }
.calc-disclaimer { font-size: 11.5px; color: rgba(255,255,255,.35); margin-bottom: 14px; margin-top: -6px; }
.calc-result { background: rgba(232,89,12,.12); border: 1px solid rgba(232,89,12,.3); border-radius: var(--radius); padding: 22px; margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.calc-result-label  { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.calc-result-amount { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--white); }
.calc-result-note   { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 6px; line-height: 1.6; }

/* ── BACKGROUNDS ── */
.bg-cream   { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-navy    { background: var(--navy); color: var(--white); }
.bg-navy p  { color: rgba(255,255,255,.65); }

/* ── CTA BAND ── */
.cta-band { background: var(--orange); padding: 64px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,.82); margin-bottom: 32px; }
.cta-band-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.contact-box  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.contact-box-icon { font-size: 36px; margin-bottom: 12px; }
.contact-box h4   { margin-bottom: 8px; font-size: 15px; }
.contact-box p, .contact-box a { font-size: 14px; color: var(--text-2); line-height: 1.7; display: block; }
.contact-box a:hover { color: var(--orange); }
.contact-box-actions { margin-top: auto; padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.contact-box-actions .btn { padding: 11px 20px; font-size: 13.5px; justify-content: center; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 56px 0 48px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,.6); font-size: 16px; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.breadcrumb a     { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span  { color: var(--orange); }

/* ── RATE TABLE ── */
.rate-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.rate-table th { background: var(--navy); color: var(--white); padding: 14px 16px; text-align: left; font-weight: 600; font-size: 12.5px; font-family: 'Poppins', sans-serif; }
.rate-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table tr:hover td { background: var(--cream); }
.rate-table .vehicle-name { font-weight: 700; color: var(--text); font-family: 'Playfair Display', serif; }
.rate-badge { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; color: var(--orange); font-size: 15px; }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tab {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-2);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Poppins', sans-serif;
}
.filter-tab:hover  { border-color: var(--orange); color: var(--orange); }
.filter-tab.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.filter-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px;
  background: rgba(0,0,0,.10);
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  padding: 0 6px;
  margin-left: 7px;
  line-height: 1;
}
.filter-tab.active .filter-count { background: rgba(255,255,255,.25); }

/* ── MAP ── */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── CONTACT LOCATION GRID ── */
.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "header map"
    "details map";
  gap: 32px 40px;
  align-items: start;
}
.contact-loc-header  { grid-area: header; }
.contact-loc-map     { grid-area: map; padding-top: 26px; }
.contact-loc-details { grid-area: details; }
@media (max-width: 768px) {
  .contact-location-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "map"
      "details";
  }
  .contact-loc-map { padding-top: 0; }
}

/* ── FOOTER ── */
.site-footer { background: var(--navy-2); color: rgba(255,255,255,.7); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { font-size: 13px; margin-top: 12px; line-height: 1.75; color: rgba(255,255,255,.48); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background var(--transition); }
.footer-social a:hover { background: var(--orange); }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.48); padding: 5px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.8; }
.footer-col .footer-contact-row { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; }
.footer-col .footer-contact-icon { font-size: 14px; flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 13px; flex-wrap: wrap; gap: 10px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.38); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── LEGAL ── */
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 56px 24px 80px; }
.legal-wrap h1 { margin-bottom: 8px; }
.legal-wrap .legal-date { font-size: 13px; color: var(--text-3); margin-bottom: 40px; }
.legal-wrap h2 { font-size: 20px; margin: 36px 0 10px; }
.legal-wrap p  { margin-bottom: 14px; }
.legal-wrap ul { margin: 10px 0 14px 20px; }
.legal-wrap ul li { font-size: 15px; color: var(--text-2); line-height: 1.7; list-style: disc; }

/* ── FULL FLEET PAGE ── */
.fleet-full-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); margin-bottom:32px; transition:box-shadow .2s; }
.fleet-full-card:hover { box-shadow:var(--shadow-lg); }
.fleet-full-layout { display:grid; grid-template-columns:340px 1fr; }
.fleet-full-img { overflow:hidden; background:var(--cream-2); position:relative; min-height:280px; }
.fleet-full-img img { width:100%; height:100%; object-fit:cover; }
.fleet-full-tag { position:absolute; top:16px; left:16px; background:var(--green-wa); color:#fff; font-size:10.5px; font-weight:700; padding:5px 12px; border-radius:100px; letter-spacing:.05em; }
.fleet-full-body { padding:32px; }
.fleet-full-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:14px; flex-wrap:wrap; gap:12px; }
.fleet-full-name { font-family:'Playfair Display',serif; font-size:26px; font-weight:700; }
.fleet-full-rate { font-family:'Playfair Display',serif; font-size:32px; font-weight:700; color:var(--orange); }
.fleet-full-rate span { font-size:15px; font-weight:400; color:var(--text-3); font-family:'Poppins',sans-serif; }
.fleet-full-specs { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px; }
.fleet-full-spec { display:flex; align-items:center; gap:6px; background:var(--cream); border:1px solid var(--border); padding:8px 14px; border-radius:100px; font-size:13px; font-weight:500; color:var(--text-2); }
.fleet-full-desc { font-size:14px; color:var(--text-2); line-height:1.75; margin-bottom:20px; }
.fleet-full-actions { display:flex; flex-wrap:wrap; gap:10px; }

/* ── CHARDHAM PAGE EXTRAS ── */
.cd-opening-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.cd-dham-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.cd-dham-top  { padding: 18px 20px; }
.cd-dham-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cd-dham-date { font-size: 13px; color: rgba(255,255,255,.75); }
.cd-dham-body { padding: 16px 20px; }
.cd-dham-body p { font-size: 13.5px; line-height: 1.7; }
.cd-helpline-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.cd-helpline-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; display: flex; align-items: center; gap: 14px; }
.cd-helpline-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cd-helpline-name { font-size: 12px; font-weight: 700; color: var(--text); }
.cd-helpline-num  { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--orange); }
.cd-route-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.cd-route-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.cd-route-header { padding: 16px 20px; color: var(--white); }
.cd-route-cities { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.cd-route-meta   { font-size: 12px; color: rgba(255,255,255,.7); display: flex; gap: 14px; flex-wrap: wrap; }
.cd-route-body   { padding: 14px 20px; }
.cd-route-fare   { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--orange); margin-bottom: 12px; }
.cd-checklist { display: flex; flex-direction: column; gap: 10px; }
.cd-checklist-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.6; }
.cd-checklist-item::before { content: '✓'; color: var(--forest); font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.cd-countdown { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin: 24px 0; }
.cd-count-unit { text-align: center; }
.cd-count-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--white); line-height: 1; }
.cd-count-label { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.cd-reg-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cd-reg-step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; position: relative; }
.cd-reg-step-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--cream-2); position: absolute; top: 12px; right: 16px; }

/* ── RESPONSIVE ── */

/* Nav: compact at mid-desktop — shrink link padding */
@media (max-width: 1100px) {
  .nav-links a { padding: 8px 10px; font-size: 13px; }
}

/* Nav: minimal desktop — tighten further, hide Call Now to save space */
@media (max-width: 940px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 7px 8px; font-size: 12.5px; }
  .nav-cta .btn-outline-white { display: none; }
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cd-opening-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-reg-steps    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .calc-section-grid { grid-template-columns: 1fr; gap: 36px; }
  .calc-wrap { max-width: 560px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section    { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger  { display: flex; }
  .mobile-nav { display: block; }

  .hero       { min-height: auto; padding: 56px 0 48px; }

  /* Section layout grids collapse to single column */
  .why-grid          { grid-template-columns: 1fr; gap: 36px; }
  .calc-section-grid { grid-template-columns: 1fr; gap: 36px; }

  .card-grid-2,
  .card-grid-3 { grid-template-columns: 1fr; }

  .calc-grid   { grid-template-columns: 1fr; }
  .calc-wrap   { padding: 28px 20px; }

  .founder-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .fleet-full-layout { grid-template-columns: 1fr; }
  .fleet-full-img    { min-height: 220px; }

  .cd-countdown { gap: 16px; }
  .cd-count-num { font-size: 36px; }

  /* Hide floating call & WhatsApp buttons on mobile */
  .wa-float, .call-float { display: none !important; }
}

@media (max-width: 600px) {
  .cd-opening-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-reg-steps    { grid-template-columns: 1fr; }
  .cd-route-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container  { padding: 0 16px; }
  .hero-btns  { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 18px; }
  .trust-inner { gap: 18px; }
  .trust-div   { display: none; }
  .chardham-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-btns  { flex-direction: column; align-items: center; }
  .calc-result    { flex-direction: column; }

  .cd-opening-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.faq-q {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  font-size: 15px; font-weight: 600; color: var(--text);
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 22px; font-weight: 300; color: var(--orange);
  flex-shrink: 0; line-height: 1;
  transition: transform .25s;
}
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 22px 18px;
  font-size: 14px; line-height: 1.75; color: var(--text-2);
}
.faq-a a { color: var(--orange); text-decoration: underline; }
.faq-a strong { color: var(--text); }

/* ── GLOBAL MOBILE STICKY CTA BAR ── */
.mobile-sticky-cta { display: none; }
@media(max-width:768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 995;
    background: var(--navy);
    border-top: 2px solid rgba(255,255,255,.12);
    padding: 10px 14px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.35);
  }
  .mobile-sticky-cta .btn {
    flex: 1;
    justify-content: center;
    font-size: 14px;
    padding: 13px 8px;
    gap: 6px;
  }
  body { padding-bottom: 70px; }
}

/* ── UTILITY ── */
.bg-off-white { background-color: var(--off-white); }
