/* ═══════════════════════════════════════════════
   RK SHAH CAR RENTAL — GLOBAL STYLESHEET
   Navy #083C5D | Gold #D4A017 | White #FFFFFF
   Fonts: Montserrat (headings) | Poppins (body)
═══════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────── */
:root {
  --navy:       #083C5D;
  --navy2:      #0A4A73;
  --navy3:      #051F32;
  --gold:       #D4A017;
  --gold2:      #E8B82A;
  --gold3:      #F5C842;
  --gold-dim:   rgba(212,160,23,.10);
  --gold-mid:   rgba(212,160,23,.22);
  --white:      #FFFFFF;
  --off:        #F8F9FB;
  --cream:      #FDF9F0;
  --gray1:      #F3F4F6;
  --gray2:      #E5E7EB;
  --gray3:      #D1D5DB;
  --gray4:      #9CA3AF;
  --gray5:      #6B7280;
  --gray6:      #374151;
  --dark:       #0D1B26;
  --green:      #25D366;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(8,60,93,.10);
  --shadow-lg:  0 12px 40px rgba(8,60,93,.16);

  --r:    8px;
  --r2:   12px;
  --r3:   16px;
  --r4:   24px;

  --nav-h:    76px;
  --ff-h:     'Montserrat', sans-serif;
  --ff-b:     'Poppins', sans-serif;

  --transition: .25s ease;
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--ff-b); color: var(--gray6); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-h); font-weight: 800; line-height: 1.1; color: var(--navy3); }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p  { line-height: 1.72; color: var(--gray5); }

.text--gold { color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-family: var(--ff-h);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  padding: 5px 14px;
  background: var(--gold-dim);
  border-radius: 20px;
  border: 1px solid rgba(212,160,23,.2);
}

/* ── CONTAINER ──────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── GRID SYSTEM ────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ── SECTIONS ───────────────────────────────── */
.section { padding: 90px 0; }
.section--white { background: var(--white); }
.section--light { background: var(--off); }
.section--dark  { background: var(--navy3); }
.section--cream { background: var(--cream); }
@media (max-width: 768px) { .section { padding: 60px 0; } }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head__title { margin-bottom: 14px; }
.section-head__desc  { font-size: 15px; color: var(--gray5); max-width: 560px; margin: 0 auto; }
.section-head__divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 16px auto 0;
}
.section__cta-row { text-align: center; margin-top: 40px; }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r2);
  font-family: var(--ff-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--gold     { background: var(--gold); color: var(--navy3); }
.btn--gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,.35); }
.btn--navy     { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--white    { background: var(--white); color: var(--navy3); }
.btn--white:hover { background: var(--off); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn--outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline  { background: transparent; color: var(--gray6); border: 1.5px solid var(--gray2); }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--search   { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); color: var(--white); }
.btn--search:hover { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy3); }
.btn--lg  { padding: 17px 34px; font-size: 15px; }
.btn--sm  { padding: 9px 18px; font-size: 12px; }
.btn--full { width: 100%; justify-content: center; }

/* ── FORMS ──────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row--3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
@media (max-width: 640px) { .form-row, .form-row--3 { grid-template-columns: 1fr; } }

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray5);
  font-weight: 600;
  font-family: var(--ff-h);
  margin-bottom: 5px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--gray1);
  border: 1.5px solid var(--gray2);
  border-radius: var(--r);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--gray6);
  outline: none;
  transition: var(--transition);
  font-family: var(--ff-b);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--cream);
}
.form-textarea { resize: vertical; min-height: 100px; }

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.is-scrolled {
  background: rgba(5,31,50,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* .navbar__logo-img { width: 42px; height: 42px; } */
.navbar__logo-img { width: 53%; height: auto; border-radius: 20px; }
.navbar__logo-name {
  font-family: var(--ff-h);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}
.navbar__logo-name strong { color: var(--gold); }
.navbar__logo-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: var(--ff-h);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.navbar__logo-tag {
  font-size: 9px;
  color: rgba(255,255,255,.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__link {
  padding: 8px 12px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  font-family: var(--ff-h);
  letter-spacing: .3px;
  transition: var(--transition);
}
.navbar__link:hover, .navbar__link.is-active {
  color: var(--gold);
  background: rgba(212,160,23,.1);
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.navbar__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE NAV ─────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  bottom: 0;
  width: 280px;
  background: var(--navy3);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
}
.mobile-nav__overlay.is-visible { display: block; }
.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r2);
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  transition: var(--transition);
}
.mobile-nav__link:hover, .mobile-nav__link.is-active {
  color: var(--gold);
  background: rgba(212,160,23,.1);
}
.mobile-nav__icon { font-size: 18px; }
.mobile-nav__cta {
  margin-top: auto;
  background: var(--gold);
  color: var(--navy3);
  padding: 16px;
  border-radius: var(--r2);
  font-family: var(--ff-h);
  font-size: .95rem;
  font-weight: 800;
  border: none;
  text-align: center;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy3) 0%, var(--navy) 40%, #0a4a6e 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212,160,23,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(15,97,144,.4) 0%, transparent 60%);
}
.hero__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) { .hero__inner { grid-template-columns: 1fr; gap: 32px; } }

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,.12);
  border: 1px solid rgba(212,160,23,.3);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.hero__label-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero__label span { font-size: 12px; color: var(--gold); font-weight: 600; font-family: var(--ff-h); letter-spacing: .5px; }

.hero__title    { font-family: var(--ff-h); font-size: clamp(2.4rem,4.5vw,3.8rem); font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 18px; }
.hero__title-em { color: var(--gold); font-style: normal; display: block; }
.hero__desc     { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 28px; max-width: 460px; }

.hero__stats    { display: flex; gap: 28px; margin-bottom: 30px; flex-wrap: wrap; }
.hero__stat-num { font-family: var(--ff-h); font-size: 1.6rem; font-weight: 800; color: var(--gold); display: block; line-height: 1; }
.hero__stat-label { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .5px; font-family: var(--ff-h); }

.hero__btns     { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.hero__chips    { display: flex; gap: 8px; flex-wrap: wrap; }
.route-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 6px 12px;
  transition: var(--transition);
}
.route-chip:hover { background: rgba(212,160,23,.15); border-color: rgba(212,160,23,.4); }
.route-chip__from { font-size: 11px; color: rgba(255,255,255,.5); }
.route-chip__arrow { font-size: 10px; color: var(--gold); }
.route-chip__to   { font-size: 11px; font-weight: 600; color: var(--white); }

/* ── BOOKING WIDGET ─────────────────────────── */
.booking-widget {
  background: var(--white);
  border-radius: var(--r4);
  padding: 28px;
  box-shadow: 0 28px 72px rgba(0,0,0,.32);
  animation: slideUp .6s ease .2s both;
}
@keyframes slideUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.booking-widget__title { font-family: var(--ff-h); font-size: 1.1rem; font-weight: 900; color: var(--navy3); margin-bottom: 4px; }
.booking-widget__sub   { font-size: 12px; color: var(--gray4); margin-bottom: 18px; }

.trip-tabs { display: flex; gap: 4px; background: var(--gray1); border-radius: var(--r); padding: 4px; margin-bottom: 18px; }
.trip-tab  { flex: 1; padding: 8px 4px; font-size: 11px; font-weight: 700; font-family: var(--ff-h); border: none; border-radius: 6px; cursor: pointer; background: transparent; color: var(--gray4); transition: var(--transition); text-align: center; }
.trip-tab.is-active { background: var(--navy); color: var(--white); box-shadow: 0 2px 8px rgba(8,60,93,.22); }

.fare-preview {
  background: var(--gold-dim);
  border: 1px solid var(--gold-mid);
  border-radius: var(--r);
  padding: 12px 16px;
  margin-bottom: 14px;
}
.fare-preview__label  { font-size: 10px; font-family: var(--ff-h); letter-spacing: .8px; text-transform: uppercase; color: var(--gray5); margin-bottom: 4px; }
.fare-preview__amount { font-family: var(--ff-h); font-size: 1.5rem; font-weight: 900; color: var(--navy3); }
.fare-preview__note   { font-size: 11px; color: var(--gray4); margin-top: 2px; }
.booking-widget__direct { text-align: center; margin-top: 12px; font-size: 12px; color: var(--gray4); }
.booking-widget__direct a { color: var(--navy); font-weight: 600; }

/* ── TICKER ─────────────────────────────────── */
.ticker { background: var(--gold); padding: 12px 0; overflow: hidden; }
.ticker__track { display: flex; animation: ticker 28s linear infinite; width: max-content; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-family: var(--ff-h);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy3);
  white-space: nowrap;
  letter-spacing: .5px;
}
.ticker__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--navy); opacity: .35; }

/* ── STATS BAND ─────────────────────────────── */
.stats-band { background: var(--navy3); padding: 48px 0; }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-band__item { text-align: center; padding: 16px; border-right: 1px solid rgba(255,255,255,.07); }
.stats-band__item:last-child { border-right: none; }
.stats-band__num { font-family: var(--ff-h); font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; display: block; }
.stats-band__label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 6px; font-family: var(--ff-h); letter-spacing: .5px; }
@media (max-width: 640px) { .stats-band__grid { grid-template-columns: 1fr 1fr; } }

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar { background: var(--navy3); padding: 14px 0; border-top: 1px solid rgba(255,255,255,.06); }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-bar__item { font-size: 12px; color: rgba(255,255,255,.5); font-family: var(--ff-h); font-weight: 500; white-space: nowrap; }

/* ── USP CARDS ──────────────────────────────── */
.usp-card {
  background: var(--white);
  border-radius: var(--r2);
  padding: 30px 26px;
  border: 1.5px solid var(--gray2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.usp-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.usp-card:hover::before { transform: scaleX(1); }
.usp-card__icon  { font-size: 28px; margin-bottom: 16px; display: block; }
.usp-card__title { font-family: var(--ff-h); font-size: 1rem; font-weight: 800; color: var(--navy3); margin-bottom: 8px; }
.usp-card__desc  { font-size: 13.5px; color: var(--gray5); line-height: 1.7; }

/* ── FLEET CARDS ────────────────────────────── */
.fleet-card { background: var(--white); border: 1.5px solid var(--gray2); border-radius: var(--r2); overflow: hidden; transition: var(--transition); }
.fleet-card:hover { border-color: var(--gold); box-shadow: 0 14px 40px rgba(8,60,93,.14); transform: translateY(-5px); }
.fleet-card__img { height: 150px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.fleet-card__img--fleet-innova { background: linear-gradient(135deg,#e8f0f8,#c8daf0); }
.fleet-card__img--fleet-creta  { background: linear-gradient(135deg,#f0ebe8,#e0cfc8); }
.fleet-card__img--fleet-ertiga { background: linear-gradient(135deg,#e8f5ee,#c8e8d8); }
.fleet-card__img--fleet-dzire  { background: linear-gradient(135deg,#f5f0e8,#ecdfc8); }
.fleet-card__badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold); color: var(--navy3);
  font-size: 10px; font-weight: 700; font-family: var(--ff-h);
  padding: 3px 9px; border-radius: 20px;
}
.fleet-card__emoji { font-size: 68px; }
.fleet-card__body  { padding: 18px; }
.fleet-card__name  { font-family: var(--ff-h); font-size: 1rem; font-weight: 800; color: var(--navy3); margin-bottom: 2px; }
.fleet-card__type  { font-size: 11px; color: var(--gray3); margin-bottom: 12px; font-family: var(--ff-h); letter-spacing: .3px; }
.fleet-card__specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.fleet-card__spec  { font-size: 10px; padding: 3px 8px; border-radius: 20px; background: var(--gray1); color: var(--gray4); }
.fleet-card__price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 14px; }
.fleet-card__price-num  { font-family: var(--ff-h); font-size: 1.3rem; font-weight: 900; color: var(--navy3); }
.fleet-card__price-unit { font-size: 12px; color: var(--gray4); }

/* ── ROUTE CARDS ────────────────────────────── */
.routes-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.route-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r2);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: var(--transition);
}
.route-card:hover { border-color: rgba(212,160,23,.28); background: rgba(212,160,23,.04); }
.route-card__stripe { width: 5px; flex-shrink: 0; }
.route-card__body { flex: 1; padding: 18px 20px; }
.route-card__header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.route-card__name { font-family: var(--ff-h); font-size: 1rem; font-weight: 800; color: var(--white); }
.route-card__arrow { color: var(--gold); font-size: 18px; }
.route-card__tag {
  font-size: 10px; padding: 2px 9px; border-radius: 20px;
  background: rgba(212,160,23,.12); color: var(--gold);
  font-family: var(--ff-h); font-weight: 600;
}
.route-card__meta { font-size: 12px; color: rgba(255,255,255,.4); }
.route-card__pricing { text-align: right; padding: 18px 20px; min-width: 140px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.06); }
.route-card__from { font-size: 10px; color: rgba(255,255,255,.35); font-family: var(--ff-h); letter-spacing: .5px; margin-bottom: 4px; }
.route-card__price { font-family: var(--ff-h); font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.route-card__unit { font-size: 11px; color: rgba(255,255,255,.35); font-family: var(--ff-h); margin-bottom: 10px; }

/* ── HOW IT WORKS ───────────────────────────── */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.hiw-grid::before {
  content: '';
  position: absolute;
  top: 50px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
}
.hiw-step { text-align: center; padding: 28px 20px; position: relative; z-index: 1; }
.hiw-step__num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-h); font-size: 1.4rem; font-weight: 900; color: var(--navy3);
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(212,160,23,.18);
}
.hiw-step__icon  { font-size: 22px; margin-bottom: 12px; display: block; }
.hiw-step__title { font-family: var(--ff-h); font-size: .95rem; font-weight: 800; color: var(--navy3); margin-bottom: 8px; }
.hiw-step__desc  { font-size: 13px; color: var(--gray4); line-height: 1.6; }
@media (max-width: 900px) { .hiw-grid { grid-template-columns: 1fr 1fr; } .hiw-grid::before { display: none; } }
@media (max-width: 500px) { .hiw-grid { grid-template-columns: 1fr; } }

/* ── PACKAGE CARDS ──────────────────────────── */
.pkg-card { border-radius: var(--r2); overflow: hidden; border: 1.5px solid var(--gray2); transition: var(--transition); background: var(--white); }
.pkg-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
/* .pkg-card__img { height: 180px; display: flex; align-items: flex-end; justify-content: flex-start; padding: 14px; position: relative; overflow: hidden; } */
.pkg-card__img { height: 387px; padding: 14px; position: relative; overflow: hidden; }
.pkg-card__img-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.pkg-card--pkg-rajasthan   .pkg-card__img-bg { background: linear-gradient(135deg,#8B4513,#C87941); }
.pkg-card--pkg-himachal    .pkg-card__img-bg { background: linear-gradient(135deg,#2E4A7A,#4A7AB5); }
.pkg-card--pkg-uttarakhand .pkg-card__img-bg { background: linear-gradient(135deg,#2A4A1A,#3D6B28); }
.pkg-card--pkg-agra        .pkg-card__img-bg { background: linear-gradient(135deg,#8B6914,#C4A035); }
.pkg-card--pkg-rishikesh   .pkg-card__img-bg { background: linear-gradient(135deg,#1A5C3A,#2E8A5A); }
.pkg-card--pkg-custom      .pkg-card__img-bg { background: linear-gradient(135deg,var(--navy),var(--navy2)); }
.pkg-card__badge { position: relative; z-index: 2; background: var(--gold); color: var(--navy3); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; font-family: var(--ff-h); }
.pkg-card__body   { padding: 20px; }
.pkg-card__nights { font-size: 11px; color: var(--gold); font-weight: 600; font-family: var(--ff-h); letter-spacing: .5px; margin-bottom: 6px; }
.pkg-card__name   { font-family: var(--ff-h); font-size: 1.05rem; font-weight: 800; color: var(--navy3); margin-bottom: 10px; }
.pkg-card__dests  { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.pkg-card__dest   { font-size: 11px; padding: 3px 9px; border-radius: 20px; background: var(--gold-dim); color: var(--gold); font-weight: 600; font-family: var(--ff-h); border: 1px solid rgba(212,160,23,.2); }
.pkg-card__footer { display: flex; align-items: center; justify-content: space-between; }
.pkg-card__price  { font-family: var(--ff-h); font-size: 1.2rem; font-weight: 900; color: var(--navy3); }
.pkg-card__price span { font-size: 12px; color: var(--gray4); font-weight: 400; }

/* ── TESTIMONIAL CARDS ──────────────────────── */
.testi-card { background: var(--white); border-radius: var(--r2); padding: 26px; border: 1.5px solid var(--gray2); transition: var(--transition); }
.testi-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.testi-card__stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card__quote {
  font-size: 13.5px; color: var(--gray5); line-height: 1.75; margin-bottom: 18px;
  font-style: italic; position: relative; padding-left: 16px;
}
.testi-card__quote::before {
  content: '"'; position: absolute; left: 0; top: -4px;
  font-size: 2rem; color: var(--gold); font-family: var(--ff-h); line-height: 1;
}
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy3); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-h); font-size: 14px; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.testi-card__name { font-family: var(--ff-h); font-size: 14px; font-weight: 700; color: var(--navy3); }
.testi-card__meta { font-size: 11px; color: var(--gray3); }
.testi-card__trip {
  display: flex; gap: 6px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray2);
  font-size: 11px; font-family: var(--ff-h);
}
.testi-card__trip-label { color: var(--gray3); }
.testi-card__trip-route { font-weight: 600; color: var(--navy); }

/* ── REVIEW WIDGET ──────────────────────────── */
.review-widget { background: var(--white); border: 1.5px solid var(--gray2); border-radius: var(--r2); padding: 20px; display: flex; align-items: center; gap: 16px; max-width: 500px; margin: 0 auto 40px; }
.review-widget__score { text-align: center; min-width: 60px; }
.review-widget__num   { font-family: var(--ff-h); font-size: 2rem; font-weight: 900; color: var(--navy3); display: block; line-height: 1; }
.review-widget__stars { color: var(--gold); font-size: 14px; }
.review-widget__count { font-size: 11px; color: var(--gray3); font-family: var(--ff-h); }
.review-widget__divider { width: 1px; height: 60px; background: var(--gray2); flex-shrink: 0; }
.review-widget__content { flex: 1; }
.review-widget__platforms { display: flex; gap: 12px; font-size: 12px; color: var(--gray4); margin-bottom: 6px; font-family: var(--ff-h); }
.review-widget__platforms strong { color: var(--gold); }
.review-widget__label { font-size: 13px; font-weight: 600; color: var(--navy3); font-family: var(--ff-h); }

/* ── CTA SECTION ────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--gold) 0%, #B8880F 100%); padding: 70px 0; }
.cta-section__inner { text-align: center; }
.cta-section__title { font-family: var(--ff-h); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 900; color: var(--navy3); margin-bottom: 12px; }
.cta-section__desc  { font-size: 16px; color: rgba(8,60,93,.65); margin-bottom: 32px; }
.cta-section__btns  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── MODAL ──────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(5,31,50,.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.is-open { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal {
  background: var(--white);
  border-radius: var(--r4);
  padding: 32px;
  max-width: 480px;
  width: 92%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .35s ease;
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 30px; height: 30px; border-radius: 50%;
  border: none; background: var(--gray1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition);
}
.modal__close:hover { background: #fde8e8; color: #dc2626; }
.modal__title   { font-family: var(--ff-h); font-size: 1.2rem; font-weight: 800; color: var(--navy3); margin-bottom: 4px; }
.modal__sub     { font-size: 13px; color: var(--gray4); margin-bottom: 20px; }
.modal__actions { display: flex; gap: 12px; margin-bottom: 20px; }
.modal__action  { flex: 1; display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: var(--r2); text-decoration: none; transition: var(--transition); }
.modal__action--navy  { background: var(--navy3); }
.modal__action--green { background: #25D366; }
.modal__action:hover  { transform: translateY(-2px); box-shadow: var(--shadow); }
.modal__action-icon   { font-size: 20px; }
.modal__action-label  { font-size: 11px; color: rgba(255,255,255,.7); font-family: var(--ff-h); }
.modal__action-val    { font-size: 14px; font-weight: 700; color: white; font-family: var(--ff-h); }
.modal__divider { text-align: center; font-size: 12px; color: var(--gray3); margin-bottom: 16px; }
.modal-backdrop {
  display: none;
  position: fixed; inset: 0;
  z-index: 1999;
}

/* ── FLOATING BUTTONS ───────────────────────── */
.float-btns {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 3000; display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 50px;
  font-family: var(--ff-h); font-size: 13px; font-weight: 700;
  text-decoration: none; box-shadow: 0 6px 24px rgba(0,0,0,.22);
  transition: var(--transition); white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.28); }
.float-btn--wa   { background: #25D366; color: var(--white); }
.float-btn--call { background: var(--navy); color: var(--white); }
.float-btn__text { line-height: 1; }
@media (max-width: 640px) {
  .float-btns { bottom: 16px; right: 16px; }
  .float-btn__text { display: none; }
  .float-btn { padding: 14px; }
}

/* ── FOOTER ─────────────────────────────────── */
.footer { background: var(--dark); padding: 70px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 50px;
}
@media (max-width: 1000px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px)  { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo    { font-family: var(--ff-h); font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 6px; }
.footer__logo img { width: 41%; border-radius: 20px; }
.footer__logo span { color: var(--gold); }
.footer__tagline { font-size: 11px; letter-spacing: 1.8px; color: var(--gold); text-transform: uppercase; font-family: var(--ff-h); font-weight: 600; margin-bottom: 16px; }
.footer__about   { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.7; margin-bottom: 20px; }
.footer__social  { display: flex; gap: 10px; }
.footer__social-btn {
  width: 36px; height: 36px; border-radius: var(--r);
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border: 1px solid rgba(255,255,255,.08);
}
.footer__social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy3); }
.footer__col-title { font-family: var(--ff-h); font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a  { font-size: 13px; color: rgba(255,255,255,.42); transition: var(--transition); display: block; }
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact  { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer__contact-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.footer__contact-label { font-size: 11px; color: var(--gold); font-weight: 600; font-family: var(--ff-h); letter-spacing: .5px; margin-bottom: 2px; }
.footer__contact a, .footer__contact span { font-size: 13px; color: rgba(255,255,255,.5); }
.footer__contact a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy   { font-size: 12px; color: rgba(255,255,255,.25); font-family: var(--ff-h); }
.footer__badges { display: flex; gap: 12px; }
.footer__badge  { font-size: 11px; color: rgba(255,255,255,.25); font-family: var(--ff-h); }

/* ── BREADCRUMB ─────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.45); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,.25); }
.breadcrumb__current { color: var(--gold); }

/* ── PAGE HEROES ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy3), var(--navy));
  padding: calc(var(--nav-h) + 60px) 0 70px;
  text-align: center;
}
.page-hero__eyebrow { display: inline-block; font-family: var(--ff-h); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.page-hero__title { font-family: var(--ff-h); font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.page-hero__title span { color: var(--gold); }
.page-hero__desc { font-size: 15px; color: rgba(255,255,255,.55); max-width: 520px; margin: 0 auto 20px; }

/* ── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 5px; }

/* ── UTILITIES ──────────────────────────────── */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.animate-fade-in-up { animation: fadeInUp .6s ease both; }

/* ── RESPONSIVE NAV ─────────────────────────── */
@media (max-width: 960px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
}
