/* =====================================================================
   Top Cabs — Jaipur | Eco-friendly · Affordable · Comfortable
   Design system + components. Vanilla CSS, no external dependencies.
   System font stack = zero network font requests = top LCP/CLS scores.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette — eco green + taxi amber */
  --green-900: #073d28;
  --green-700: #0a6e48;
  --green-600: #0e8c5b;   /* primary */
  --green-500: #18a86d;
  --green-100: #e4f4ec;
  --green-50:  #f1faf5;

  --amber-600: #e89200;
  --amber-500: #ffb703;   /* CTA accent (taxi yellow) */
  --amber-100: #fff3d6;

  --ink-900: #102119;
  --ink-700: #213a30;
  --ink-500: #4d6359;
  --ink-300: #8499905c;

  --surface: #ffffff;
  --surface-soft: #cbe7d8;
  --line: #e2ece7;

  /* Type scale */
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, "Helvetica Neue", Arial, sans-serif;
  --h1: clamp(2.1rem, 5vw, 3.4rem);
  --h2: clamp(1.7rem, 3.5vw, 2.5rem);
  --h3: clamp(1.25rem, 2.2vw, 1.6rem);

  /* Spacing + shape */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(16, 33, 25, 0.06);
  --shadow:    0 12px 30px rgba(16, 33, 25, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 33, 25, 0.16);
  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink-700);
  /* steady soft-green page tint (no fade to white) */
  background: linear-gradient(180deg, #d4ecdf 0%, #c3e3d3 100%) fixed;
  min-height: 100vh;
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.15; color: var(--ink-900); font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
ul { padding-left: 1.1rem; }
:focus-visible { outline: 3px solid var(--amber-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(48px, 8vw, 88px) 0; }
.section--soft { background: var(--surface-soft); }
.section--green {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #dff3e9;
}
.section--green h2, .section--green h3 { color: #fff; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #0c7e51; margin-bottom: 12px; /* WCAG AA: 5.1:1 on white (green-600 was 4.27:1) */
}
.section--green .eyebrow { color: var(--amber-500); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.12rem; color: var(--ink-500); }
.section--green .lead { color: #bfe3d2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; line-height: 1; cursor: pointer;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--amber-500); color: var(--ink-900); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--amber-600); box-shadow: var(--shadow); }
.btn--green { background: #0c7e51; color: #fff; } /* WCAG AA: 5.1:1 with white (was green-600 4.27:1) */
.btn--green:hover { background: var(--green-700); }
.btn--ghost { background: transparent; color: var(--green-700); border-color: var(--green-100); }
.btn--ghost:hover { border-color: var(--green-600); background: var(--green-50); }
.btn--white { background: #fff; color: var(--green-700); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header / nav ---------- */
.topbar {
  background: var(--green-900); color: #cdeede; font-size: 0.86rem;
}
.topbar .container { display: flex; gap: 18px; justify-content: space-between; align-items: center; padding-block: 8px; flex-wrap: wrap; }
.topbar a { color: #eafff5; font-weight: 600; }
.topbar__badges { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar__badges span { display: inline-flex; align-items: center; gap: 6px; }

.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.3rem; color: var(--ink-900); }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand small { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; color: var(--green-600); text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav__links a {
  display: inline-block; padding: 9px 14px; border-radius: 10px; color: var(--ink-700);
  font-weight: 600; font-size: 0.96rem;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { background: var(--green-50); color: var(--green-700); text-decoration: none; }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none; background: var(--green-50); border: 1px solid var(--line);
  width: 46px; height: 46px; border-radius: 12px; cursor: pointer; color: var(--green-700);
}
.nav__toggle svg { width: 24px; height: 24px; margin: auto; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s var(--ease);
}
.has-drop:hover .drop, .has-drop:focus-within .drop, .has-drop.open .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 10px 12px; border-radius: 9px; font-size: 0.93rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #eafff4; overflow: hidden;
  background: radial-gradient(120% 120% at 80% 0%, #0e8c5b 0%, #0a6e48 40%, #073d28 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.10) 0, transparent 22%),
    radial-gradient(circle at 88% 80%, rgba(255,183,3,.16) 0, transparent 28%);
}
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; padding-block: clamp(44px, 7vw, 78px); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .hl { color: var(--amber-500); }
.hero p.lead { color: #e6f5ee; max-width: 540px; margin-bottom: 26px; }
.hero__usps { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 28px; list-style: none; padding: 0; }
.hero__usps li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #eafff4; }
.hero__usps svg { width: 20px; height: 20px; color: var(--amber-500); flex: none; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 26px; display: flex; align-items: center; gap: 16px; color: #bfe3d2; font-size: 0.92rem; flex-wrap: wrap; }
.stars { color: #b45309; letter-spacing: 2px; } /* WCAG AA: 5.02:1 on white cards (amber-500 was 1.75:1) */
.hero__trust .stars, .section--green .stars { color: var(--amber-500); } /* light gold ok on dark bg */

/* ---------- Booking widget ---------- */
.booking {
  background: #fff; color: var(--ink-700); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 24px; border: 1px solid rgba(255,255,255,.5);
}
.booking h2 { font-size: 1.3rem; margin-bottom: 4px; }
.booking p { font-size: 0.92rem; color: var(--ink-500); margin-bottom: 16px; }
.booking__tabs { display: flex; gap: 6px; background: var(--surface-soft); padding: 5px; border-radius: 999px; margin-bottom: 18px; }
.booking__tabs button {
  flex: 1; border: 0; background: transparent; cursor: pointer; font-weight: 700;
  font-size: 0.82rem; padding: 9px 6px; border-radius: 999px; color: var(--ink-500);
  font-family: inherit; transition: all .2s;
}
.booking__tabs button[aria-selected="true"] { background: var(--green-600); color: #fff; box-shadow: var(--shadow-sm); }
.form-status { margin-top: 12px; font-weight: 600; font-size: 0.92rem; }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink-700); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 0.98rem; color: var(--ink-900);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-soft); transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px var(--green-100); background: #fff;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.booking__note { font-size: 0.8rem; color: var(--ink-500); text-align: center; margin-top: 12px; }
.booking__note a { font-weight: 700; }

/* ---------- Generic grid + cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-50); color: var(--green-600); margin-bottom: 16px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-500); font-size: 0.97rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; margin-top: 14px; font-size: 0.93rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(3px); }

/* Service card with amber top accent */
.service-card { position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green-500), var(--amber-500)); }

/* ---------- USP / why-us strip ---------- */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why__item { text-align: center; padding: 8px; }
.why__item .card__icon { margin-inline: auto; }
.why__item h3 { font-size: 1.1rem; }
.why__item p { color: var(--ink-500); font-size: 0.92rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats__num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -0.02em;
  /* count-up animation writes changing text each frame; tabular digits keep
     width constant and layout containment isolates the reflow to the box */
  font-variant-numeric: tabular-nums; contain: layout; }
.stats__num span { color: var(--amber-500); }
.stats__label { color: #bfe3d2; font-weight: 600; font-size: 0.95rem; }

/* ---------- Route cards ---------- */
.route-card {
  display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s; height: 100%;
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-100); text-decoration: none; }
.route-card__path { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink-900); font-size: 1.12rem; }
.route-card__path svg { width: 18px; height: 18px; color: var(--green-500); flex: none; }
.route-card__meta { display: flex; gap: 16px; color: var(--ink-500); font-size: 0.88rem; margin-top: 4px; flex-wrap: wrap; }
.route-card__meta b { color: var(--green-700); }
.route-card__price { margin-top: auto; padding-top: 12px; font-size: 0.9rem; color: var(--ink-500); }
.route-card__price b { font-size: 1.3rem; color: var(--ink-900); }
.tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-700); background: var(--green-50); padding: 4px 10px; border-radius: 999px; align-self: flex-start; }

/* ---------- Fleet ---------- */
.fleet-card { text-align: center; }
.fleet-card__img {
  background: linear-gradient(160deg, var(--green-50), #fff);
  border-radius: var(--radius); padding: 22px; margin-bottom: 16px; border: 1px solid var(--line);
}
.fleet-card__img svg { width: 100%; max-width: 220px; height: auto; margin-inline: auto; }
.fleet-card ul { list-style: none; padding: 0; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.fleet-card ul li { font-size: 0.82rem; color: var(--ink-500); background: var(--surface-soft); padding: 4px 10px; border-radius: 999px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding-top: 8px; }
.step__num {
  counter-increment: step; width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-600); color: #fff; font-weight: 800; font-size: 1.2rem;
  display: grid; place-items: center; margin-bottom: 14px;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { color: var(--ink-500); font-size: 0.94rem; }

/* ---------- Testimonials ---------- */
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); height: 100%; }
.testimonial .stars { font-size: 1.1rem; margin-bottom: 10px; }
.testimonial p { color: var(--ink-700); font-style: italic; margin-bottom: 16px; }
.testimonial__who { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; font-weight: 800; }
.testimonial__who b { color: var(--ink-900); display: block; font-size: 0.95rem; }
.testimonial__who span { color: var(--ink-500); font-size: 0.84rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--ink-900);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green-600); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 22px 20px; color: var(--ink-500); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #cdeede; max-width: 600px; margin: 0 auto 26px; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: radial-gradient(120% 120% at 85% 0%, #0e8c5b, #0a6e48 50%, #073d28);
  color: #eafff4; padding: clamp(36px, 6vw, 64px) 0;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; max-width: 820px; }
.page-hero p { color: #cdeede; max-width: 640px; font-size: 1.1rem; }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 18px; display: flex; gap: 8px; flex-wrap: wrap; font-size: 0.86rem; color: #bfe3d2; }
.breadcrumb a { color: #eafff4; font-weight: 600; }
.breadcrumb li::after { content: "›"; margin-left: 8px; color: #bfe3d2; }
.breadcrumb li:last-child::after { content: ""; }

/* ---------- Prose (content sections) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin: 32px 0 12px; }
.prose h3 { margin: 24px 0 8px; }
.prose p { margin-bottom: 14px; color: var(--ink-700); }
.prose ul { margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }

/* ---------- Price table ---------- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--green-50); color: var(--green-900); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.04em; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td b { color: var(--ink-900); }

/* ---------- Two-col content ---------- */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
.feature-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list svg { width: 24px; height: 24px; color: var(--green-600); flex: none; margin-top: 2px; }
.feature-list b { color: var(--ink-900); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #bfe3d2; padding-top: 56px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.footer__brand .brand { color: #fff; margin-bottom: 14px; }
.footer__brand p { font-size: 0.92rem; max-width: 320px; }
.site-footer h3 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer__links { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer__links a { color: #bfe3d2; font-size: 0.94rem; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: grid; gap: 12px; font-size: 0.94rem; }
.footer__contact a { color: #fff; font-weight: 700; }
.footer__contact div { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 20px; height: 20px; color: var(--amber-500); flex: none; margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.86rem; }

/* ---------- Floating action buttons (mobile) ---------- */
.fab { position: fixed; right: 16px; bottom: 16px; z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.fab a {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow); color: #fff; transition: transform .2s;
}
.fab a:hover { transform: scale(1.08); text-decoration: none; }
.fab__wa { background: #25d366; }
.fab__call { background: var(--green-600); }
.fab a svg { width: 28px; height: 28px; }

/* ---------- Sticky mobile call/WhatsApp/book bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 620px) {
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    box-shadow: 0 -4px 16px rgba(16,33,25,.18);
  }
  .mobile-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 15px 6px; font-weight: 800; font-size: .95rem; color: #fff;
  }
  .mobile-bar a:hover { text-decoration: none; }
  .mobile-bar a svg { width: 20px; height: 20px; }
  .mobile-bar__call { background: #0c7e51; }
  .mobile-bar__wa { background: #25d366; }
  /* Book = primary action; dark ink on amber for WCAG AA contrast */
  .mobile-bar__book { background: var(--amber-500); color: var(--ink-900); }
  /* JS-managed reveal: hidden until scrolled past hero. Without JS the bar
     stays visible (no .is-scroll-managed class is added). */
  .mobile-bar.is-scroll-managed {
    transform: translateY(100%); transition: transform .28s ease;
  }
  .mobile-bar.is-scroll-managed.is-visible { transform: translateY(0); }
  /* hide floating FAB on mobile (sticky bar replaces it); add page bottom padding */
  .fab { display: none; }
  body { padding-bottom: 56px; }
}
@media (max-width: 620px) and (prefers-reduced-motion: reduce) {
  .mobile-bar.is-scroll-managed { transition: none; }
}

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--amber-500); color: var(--ink-900); font-weight: 800;
  padding: 10px 18px; border-radius: 0 0 12px 12px; box-shadow: var(--shadow);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; text-decoration: none; }
main:focus { outline: none; }

/* ---------- Footer legal links ---------- */
.footer__legal { display: flex; gap: 14px; flex-wrap: wrap; }
.footer__legal a { color: #bfe3d2; font-weight: 600; }
.footer__legal a:hover { color: #fff; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; }
.hide { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why, .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav__links, .topbar__badges .hide-sm { display: none; }
  .nav__toggle { display: grid; }
  .nav__links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px; gap: 4px; box-shadow: var(--shadow);
  }
  .nav__links.open a { padding: 12px 14px; }
  .has-drop .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 14px; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .why, .stats, .steps, .footer__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .nav__cta .btn--ghost { display: none; }
  .footer__bottom { flex-direction: column; }
  .site-footer { padding-bottom: 84px; } /* clear floating call/WhatsApp FABs */
  /* Price tables stay readable on narrow screens (body has overflow-x:hidden) */
  .price-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
}

/* =====================================================================
   Animations + custom branded icons
   ===================================================================== */

/* ---- Scroll reveal ---- */
@keyframes tc-fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; }
.reveal.in { animation: tc-fade-up .7s var(--ease) forwards; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .16s; }
.reveal.d3 { animation-delay: .24s; }

/* ---- Hero entrance (no JS needed) ---- */
.hero h1 { animation: tc-fade-up .8s var(--ease) both; }
.hero p.lead { animation: tc-fade-up .8s var(--ease) .1s both; }
.hero__usps { animation: tc-fade-up .8s var(--ease) .2s both; }
.hero__actions { animation: tc-fade-up .8s var(--ease) .3s both; }
.booking { animation: tc-fade-up .9s var(--ease) .15s both; }

/* ---- Custom icon tile: animated gradient + glyph life ---- */
.card__icon {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-50), #d8f0e4);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card__icon::after { /* sheen sweep on hover */
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
}
.card:hover .card__icon, .why__item:hover .card__icon, .service-card:hover .card__icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.06);
  box-shadow: 0 10px 22px rgba(14,140,91,.22);
}
.card:hover .card__icon::after, .service-card:hover .card__icon::after { animation: tc-sheen .7s var(--ease) forwards; }
@keyframes tc-sheen { to { transform: translateX(120%); } }
.card__icon svg, .why__item .card__icon svg { transition: transform .35s var(--ease); }
.card:hover .card__icon svg, .why__item:hover .card__icon svg { transform: scale(1.08); }

/* eco leaf gently sways, rupee bobs, wheels spin on hover (icon-specific) */
@keyframes tc-sway { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
@keyframes tc-bob  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
@keyframes tc-spin { to { transform: rotate(360deg); } }
.ic-leaf { transform-origin: 50% 90%; }
.why__item:hover .ic-leaf, .card:hover .ic-leaf { animation: tc-sway 1.6s ease-in-out infinite; }
.why__item:hover .ic-coin, .card:hover .ic-coin { animation: tc-bob .9s ease-in-out infinite; }
.ic-wheel { transform-origin: center; transform-box: fill-box; }
.card:hover .ic-wheel, .why__item:hover .ic-wheel, .fleet-card:hover .ic-wheel { animation: tc-spin 1.1s linear infinite; }

/* ---- Button shine ---- */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 100%;
  transform: skewX(-20deg) translateX(-220%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
}
.btn--primary:hover::after { animation: tc-shine .8s var(--ease); }
@keyframes tc-shine { to { transform: skewX(-20deg) translateX(320%); } }

/* ---- Route cards: arrow drives forward on hover ---- */
.route-card .route-card__path svg { transition: transform .3s var(--ease); }
.route-card:hover .route-card__path svg { transform: translateX(5px); }

/* ---- Fleet car: subtle float; FAB pulse ring ---- */
.fleet-card__img svg { transition: transform .4s var(--ease); }
.fleet-card:hover .fleet-card__img svg { transform: translateX(6px) translateY(-2px); }
.fab a { position: relative; }
.fab a::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 currentColor; opacity: .55; animation: tc-pulse 2.4s ease-out infinite;
}
@keyframes tc-pulse { 70%,100% { box-shadow: 0 0 0 14px currentColor; opacity: 0; } }

/* ---- Counters / stats pop on reveal ---- */
.stats__num { transition: transform .3s var(--ease); }
.section--green:hover .stats__num { transform: translateY(-2px); }

/* ---- Nav link underline grow ---- */
.nav__links > li > a { position: relative; }
.nav__links > li > a:not([aria-haspopup])::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--amber-500); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__links > li > a:not([aria-haspopup]):hover::after { transform: scaleX(1); }

/* ---- Header: shrink + shadow once scrolled ---- */
.site-header { transition: box-shadow .25s var(--ease), padding .25s var(--ease), background .25s var(--ease); }
.site-header.is-scrolled { box-shadow: 0 6px 22px rgba(16, 64, 40, 0.10); }
.site-header.is-scrolled .nav { padding-block: 7px; }
.nav { transition: padding-block .25s var(--ease); }

/* ---- Stats: animated count-up (number lifts in as it rolls) ---- */
.stats__num { will-change: transform; }
.stats.in .stats__num { animation: tc-num-pop .5s var(--ease) both; }
@keyframes tc-num-pop { from { transform: translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---- Form field: focus lift + softer glow ---- */
.field input, .field select, .field textarea { transition: border .2s, box-shadow .25s var(--ease), transform .2s var(--ease), background .2s; }
.field input:focus, .field select:focus, .field textarea:focus { transform: translateY(-1px); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--green-500); }

/* ---- FAQ: smooth slide-open answer ---- */
/* JS adds .faq-anim to the list so the slide effect only runs when JS is on.
   Without JS, native <details> open/close still works (answer just snaps). */
.faq.faq-anim details > p { overflow: hidden; max-height: 0; opacity: 0; padding-top: 0; padding-bottom: 0;
  transition: max-height .3s var(--ease), opacity .25s var(--ease), padding .3s var(--ease); }
.faq.faq-anim details.faq-open > p { max-height: 600px; opacity: 1; padding-bottom: 20px; }

/* Respect reduced motion — keep everything visible, just no motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; }
  .card__icon::after, .btn--primary::after, .fab a::before { display: none !important; }
  /* FAQ answers must stay readable with motion off (no JS class toggle) */
  .faq.faq-anim details > p { max-height: none !important; opacity: 1 !important; padding-bottom: 20px !important; overflow: visible !important; }
}
