/* ===================================================================
   Holy Kashi Tours & Travels — v2 theme
   -------------------------------------------------------------------
   Design language after the "Ridek" taxi-booking layout: Space Grotesk
   type, an amber accent on white with near-black inverted bands, 100px
   section rhythm, hairline dividers, and the skewed accent block that
   sits behind artwork and eyebrow rules.

   The accent is tuned from the reference amber (#ff9900) toward the
   saffron/marigold end so it reads as Varanasi rather than generic cab.

   Table of contents
     1.0  Tokens
     2.0  Base
     3.0  Grid
     4.0  Utilities
     5.0  Buttons
     6.0  Section heading
     7.0  Header
     8.0  Hero slider
     9.0  Page banner
    10.0  About / split media
    11.0  Service cards
    12.0  Booking band
    13.0  Package tabs
    14.0  Fleet cards
    15.0  Circuit scenes
    16.0  Counters
    17.0  Routes
    18.0  CTA band
    19.0  Forms
    20.0  Contact cards
    21.0  Footer
    22.0  Floating controls
    23.0  Motion
    24.0  Responsive
   =================================================================== */

/*=== 1.0 Tokens ===*/
:root {
  --saffron:    #FF8A1E;
  --saffron-lt: #FFA646;
  --saffron-dk: #E3700A;
  --saffron-05: rgba(255, 138, 30, .05);
  --saffron-12: rgba(255, 138, 30, .12);
  --saffron-30: rgba(255, 138, 30, .30);

  --ink:   #1C1815;
  --ink-2: #131010;
  --ink-3: #2A2420;

  --body:  #6F6862;
  --muted: #9A928A;
  --line:  #EDE8E0;
  --grey:  #F7F4EF;
  --white: #fff;

  --shadow-sm: 0 2px 10px rgba(28, 24, 21, .05);
  --shadow-md: 0 14px 38px rgba(28, 24, 21, .09);
  --shadow-lg: 0 26px 70px rgba(28, 24, 21, .16);

  --radius: 2px;
  --skew: skew(-20deg, 0deg);
  --ease: cubic-bezier(.785, .135, .15, .86);
}

/*=== 2.0 Base ===*/
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: var(--white);
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 27px;
  color: var(--body);
  font-weight: 400;
  letter-spacing: -.2px;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  font-weight: 600;
}

h1 { font-size: 45px; line-height: 55px; letter-spacing: -1.4px; margin: 0 0 10px; }
h2 { font-size: 32px; line-height: 42px; letter-spacing: -1px;   margin: 0 0 10px; }
h3 { font-size: 20px; line-height: 1.7; letter-spacing: -.5px;   margin: 0 0 10px; }
h4 { font-size: 16px; line-height: 1.7; letter-spacing: -.5px;   margin: 0 0 10px; }
h5, h6 { font-size: 14px; margin: 0 0 10px; }

p { font-size: 17px; line-height: 27px; margin-bottom: 15px; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--saffron); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
}

ul { list-style: none; }
img, svg { max-width: 100%; }
strong, b { color: var(--ink); font-weight: 600; }
em { font-style: normal; color: var(--saffron); }

::selection { background: var(--saffron); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

/*=== 3.0 Grid ===*/
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
.container--wide { max-width: 1380px; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -15px;
}
.row > [class*="col-"] { padding-inline: 15px; width: 100%; position: relative; z-index: 1; }

.row > .col-3  { width: 25%; }
.row > .col-4  { width: 33.3333%; }
.row > .col-5  { width: 41.6666%; }
.row > .col-6  { width: 50%; }
.row > .col-7  { width: 58.3333%; }
.row > .col-8  { width: 66.6666%; }
.row > .col-9  { width: 75%; }
.row > .col-12 { width: 100%; }

.grid { display: grid; gap: 30px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/*=== 4.0 Utilities ===*/
.padding    { padding: 100px 0; }
.padding-sm { padding: 70px 0; }
.pos-relative { position: relative; }
.bg-grey  { background-color: var(--grey); }
.bg-dark  { background-color: var(--ink-2); }
.bd-top    { border-top: 1px solid var(--line); }
.bd-bottom { border-bottom: 1px solid var(--line); }
.text-center { text-align: center; }
.mb-10 { margin-bottom: 10px; } .mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; } .mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; }
.align-center { align-items: center; }
.d-none { display: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Sections carrying a decorative bleed (a skewed slab, an oversized figure)
   clip at their own box. A 20deg skew widens the painted area by roughly
   0.36 x its height on each side, which runs off a phone screen otherwise. */
.has-bleed { overflow: hidden; }

/* the signature skewed accent slab */
.skew-slab {
  background-color: var(--saffron);
  border-radius: var(--radius);
  transform: var(--skew);
  position: absolute;
  z-index: -1;
}

/*=== 5.0 Buttons ===*/
.btn {
  border: 0;
  border-radius: var(--radius);
  height: 52px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.2px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  transition: color .3s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }

/* the reference's split wipe: two halves close in from left and right */
.btn::before, .btn::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 50%;
  width: 0;
  transition: width .35s var(--ease);
  z-index: -1;
}
.btn::after { left: auto; right: 0; top: auto; bottom: 0; }
.btn:hover::before, .btn:hover::after,
.btn:focus-visible::before, .btn:focus-visible::after { width: 100%; }

.btn--main { background-color: var(--saffron); color: #fff; }
.btn--main::before, .btn--main::after { background-color: var(--ink); }
.btn--main:hover, .btn--main:focus-visible { color: #fff; }

.btn--dark { background-color: var(--ink); color: #fff; }
.btn--dark::before, .btn--dark::after { background-color: var(--saffron); }
.btn--dark:hover, .btn--dark:focus-visible { color: #fff; }

.btn--outline {
  background-color: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--outline::before, .btn--outline::after { background-color: var(--saffron); }
.btn--outline:hover, .btn--outline:focus-visible { color: #fff; box-shadow: inset 0 0 0 1px var(--saffron); }

.btn--light {
  background-color: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}
.btn--light::before, .btn--light::after { background-color: var(--saffron); }
.btn--light:hover, .btn--light:focus-visible { color: #fff; box-shadow: inset 0 0 0 1px var(--saffron); }

.btn--sm { height: 44px; font-size: 15px; padding: 0 22px; }
.btn--block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* plain text link with a sliding arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  letter-spacing: -.2px;
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .3s ease; }
.link-arrow:hover { color: var(--saffron); }
.link-arrow:hover svg { transform: translateX(5px); }

/*=== 6.0 Section heading ===*/
.section-heading { max-width: 720px; }
.section-heading.text-center { margin-inline: auto; }

.eyebrow {
  font-size: 15px;
  font-weight: 500;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
/* three skewed ticks, the reference's heading mark */
.eyebrow::before {
  content: "";
  background-color: var(--saffron);
  transform: var(--skew);
  width: 4px; height: 15px;
  margin-right: 10px;
  box-shadow: 8px 0 0 var(--saffron-30), 16px 0 0 var(--saffron-12);
  margin-inline-end: 28px;
}
.text-center .eyebrow, .eyebrow--center { justify-content: center; }

.section-heading h2 { margin-bottom: 18px; }
.section-heading .lede { font-size: 18px; line-height: 30px; }

/*=== 7.0 Header ===*/
.top-header {
  background-color: var(--ink-2);
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 44px;
}
.top-header a { color: rgba(255, 255, 255, .72); }
.top-header a:hover { color: var(--saffron); }
.top-header-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.top-header-nav { display: flex; align-items: center; gap: 26px; }
.top-header-nav li { display: inline-flex; align-items: center; gap: 8px; }
.top-header svg { width: 15px; height: 15px; color: var(--saffron); flex: none; }
.gstin-pill {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 500; letter-spacing: .4px;
}

.mid-header { padding: 26px 0; }
.mid-header-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.8px;
  white-space: nowrap;
}
.brand__name em { color: var(--saffron); }
.brand__tag {
  font-size: 11px; font-weight: 500; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1.4px; margin-top: 4px;
}

.header-info { display: flex; align-items: center; gap: 36px; }
.header-info li { display: flex; align-items: center; gap: 14px; }
.header-info-icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  background: var(--saffron-12);
  color: var(--saffron);
  border-radius: var(--radius);
  transform: var(--skew);
}
.header-info-icon svg { width: 20px; height: 20px; transform: skew(20deg, 0deg); }
.header-info-text span {
  display: block; font-size: 13px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.header-info-text strong { display: block; font-size: 16px; font-weight: 600; letter-spacing: -.3px; }

.nav-bar {
  background-color: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.nav-bar.is-stuck {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  box-shadow: var(--shadow-md);
  border-top-color: transparent;
  animation: slideDown .4s ease both;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-bar .brand { display: none; }
.nav-bar.is-stuck .brand { display: inline-flex; }
/* the wordmark alone in the sticky bar — the strapline is already in the header */
.nav-bar.is-stuck .brand__tag { display: none; }

.nav-menu { display: flex; align-items: center; --nav-pad: 20px; }
.nav-menu > li > a {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  height: 62px;
  padding: 0 var(--nav-pad);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.2px;
  color: var(--ink);
  position: relative;
}
.nav-menu > li:first-child > a { padding-left: 0; }
.nav-menu > li > a::after {
  content: "";
  position: absolute; left: var(--nav-pad); right: var(--nav-pad); bottom: 18px;
  height: 2px;
  background: var(--saffron);
  transform: var(--skew) scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-menu > li:first-child > a::after { left: 0; }
.nav-menu > li > a:hover, .nav-menu > li > a[aria-current="page"] { color: var(--saffron); }
.nav-menu > li > a:hover::after,
.nav-menu > li > a[aria-current="page"]::after { transform: var(--skew) scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 12px; white-space: nowrap;
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.nav-phone svg { width: 20px; height: 20px; color: var(--saffron); }

.burger {
  display: none;
  width: 46px; height: 46px;
  background: var(--ink); color: #fff;
  border-radius: var(--radius);
  place-items: center;
  cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 0 24px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a.mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 2px;
  font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.mobile-link svg { width: 17px; height: 17px; color: var(--saffron); }
.mobile-nav .btn-group { margin-top: 22px; flex-direction: column; }

/*=== 8.0 Hero slider ===*/
.slider-section { position: relative; background: var(--ink-2); overflow: hidden; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
}
.slide.is-active { opacity: 1; visibility: visible; position: relative; }
.main-slider { position: relative; min-height: 730px; display: grid; }

.slide__bg { position: absolute; inset: 0; z-index: 0; }
.slide__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(19, 16, 16, .95) 0%, rgba(19, 16, 16, .78) 46%, rgba(19, 16, 16, .35) 100%),
    radial-gradient(120% 90% at 18% 22%, rgba(255, 138, 30, .10) 0%, rgba(255, 138, 30, 0) 62%);
}
.slide__art { position: absolute; inset: auto 0 0 0; width: 100%; height: auto; z-index: 1; opacity: .72; }

/* photographic backdrop, under the scrim so the headline stays legible */
.slide__photo { position: absolute; inset: 0; z-index: 0; display: block; }
.slide__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
.slide__bg::after { z-index: 1; }

.slide__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 730px;
  padding: 110px 0 200px;
}
.slide-content { max-width: 760px; }

.slide-caption { overflow: hidden; }
.slide-caption > * {
  transform: translateY(105%);
  transition: transform .9s var(--ease);
}
.is-active .slide-caption > * { transform: translateY(0); }
.is-active .slide-caption--2 > * { transition-delay: .12s; }
.is-active .slide-caption--3 > * { transition-delay: .24s; }
.is-active .slide-actions { transition-delay: .36s; }

.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500;
  color: var(--saffron);
  text-transform: uppercase; letter-spacing: 1.6px;
  margin-bottom: 16px;
}
.slide-eyebrow svg { width: 17px; height: 17px; }

.slide-title {
  font-size: 62px;
  line-height: 70px;
  letter-spacing: -2.4px;
  color: #fff;
  margin-bottom: 20px;
}
.slide-title em { color: var(--saffron); font-style: normal; }

.slide-sub {
  font-size: 19px;
  line-height: 32px;
  color: rgba(255, 255, 255, .74);
  max-width: 620px;
  margin-bottom: 34px;
}

.slide-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.is-active .slide-actions { opacity: 1; transform: translateY(0); }

.slider-controls {
  position: absolute;
  right: 40px; bottom: 44px;
  z-index: 4;
  display: flex; align-items: center; gap: 16px;
}
.slider-control {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.slider-control:hover { background: var(--saffron); }
.slider-control svg { width: 20px; height: 20px; }

.slider-dots { display: flex; gap: 9px; }
.slider-dot {
  width: 26px; height: 4px;
  background: rgba(255, 255, 255, .26);
  border: 0; padding: 0;
  transform: var(--skew);
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}
.slider-dot.is-active { background: var(--saffron); width: 40px; }

/* quick-quote strip that overlaps the hero, like the reference booking bar */
.quote-strip { position: relative; z-index: 5; margin-top: -60px; }
.quote-card {
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 32px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 22px;
  align-items: end;
}
.quote-card .field__label { font-size: 13px; }

/*=== 9.0 Page banner ===*/
.page-banner {
  position: relative;
  background: var(--ink-2);
  padding: 96px 0 90px;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  top: -60px; right: 6%;
  width: 260px; height: 320px;
  background: var(--saffron);
  opacity: .14;
  transform: var(--skew);
}
.page-banner__inner { position: relative; z-index: 2; max-width: 780px; }
.page-banner h1 { color: #fff; font-size: 46px; line-height: 56px; }
.page-banner p { color: rgba(255, 255, 255, .72); font-size: 18px; line-height: 30px; margin-top: 8px; }

.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--saffron); }
.breadcrumb svg { width: 14px; height: 14px; }

/*=== 10.0 About / split media ===*/
.media-figure { position: relative; z-index: 1; }
.media-figure__frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}
.media-figure__frame svg { display: block; width: 100%; height: auto; }
.media-figure::before {
  content: "";
  background-color: var(--saffron);
  border-radius: var(--radius);
  transform: var(--skew);
  width: 150px;
  height: calc(100% + 52px);
  position: absolute;
  right: -18px; bottom: -26px;
  z-index: -1;
}

.media-badge {
  position: absolute;
  z-index: 2;
  left: -26px; bottom: 34px;
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 20px 26px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 16px;
  max-width: 280px;
}
.media-badge svg { width: 34px; height: 34px; color: var(--saffron); flex: none; }
.media-badge strong { display: block; font-size: 22px; line-height: 1.2; }
.media-badge span { font-size: 14px; line-height: 20px; color: var(--body); }

.check-list { display: grid; gap: 14px; margin: 26px 0 32px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 26px; }
.check-list svg { width: 22px; height: 22px; color: var(--saffron); flex: none; margin-top: 3px; }
.check-list b { display: block; color: var(--ink); }

/*=== 11.0 Service cards ===*/
.service-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.service-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--saffron);
  transform: var(--skew) scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.service-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-item:hover::before { transform: var(--skew) scaleX(1.1); }

.service-icon {
  width: 68px; height: 68px;
  display: grid; place-items: center;
  background: var(--saffron-12);
  color: var(--saffron);
  border-radius: var(--radius);
  transform: var(--skew);
  margin-bottom: 26px;
  transition: background .4s ease, color .4s ease;
}
.service-icon svg { width: 30px; height: 30px; transform: skew(20deg, 0deg); }
.service-item:hover .service-icon { background: var(--saffron); color: #fff; }

.service-item h3 { margin-bottom: 12px; }
.service-item p { font-size: 16px; line-height: 26px; }
.service-num {
  position: absolute;
  right: 22px; top: 18px;
  font-size: 46px; font-weight: 700;
  color: var(--ink);
  opacity: .05;
  letter-spacing: -2px;
}

/*=== 12.0 Booking band ===*/
.booking-section { background: var(--ink-2); position: relative; overflow: hidden; }
.booking-section::before {
  content: "";
  position: absolute;
  left: -120px; top: 0;
  width: 420px; height: 100%;
  background: var(--saffron);
  opacity: .1;
  transform: var(--skew);
}
/* scoped to the dark column only — the white form card keeps ink text */
.booking-section .section-heading h2,
.booking-section .section-heading h3 { color: #fff; }
.booking-section .section-heading .lede,
.booking-section .section-heading > p { color: rgba(255, 255, 255, .7); }

.booking-art { position: relative; }
.booking-art svg { width: 100%; height: auto; }

.booking-points { display: grid; gap: 18px; margin-top: 30px; }
.booking-points li {
  display: flex; gap: 14px; align-items: flex-start;
  color: rgba(255, 255, 255, .78);
  font-size: 16px; line-height: 26px;
}
.booking-points svg { width: 21px; height: 21px; color: var(--saffron); flex: none; margin-top: 3px; }

/*=== 13.0 Package tabs ===*/
.tab-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.tab-menu button {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.2px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 46px;
  padding: 0 24px;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.tab-menu button:hover { border-color: var(--saffron); color: var(--saffron); }
.tab-menu button[aria-selected="true"] {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}

.tab-panel[hidden] { display: none; }

.package-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.package-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }

.package-item__top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.package-duration {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: var(--saffron);
  background: var(--saffron-12);
  padding: 6px 12px;
  transform: var(--skew);
  flex: none;
}
.package-duration svg { width: 14px; height: 14px; transform: skew(20deg, 0deg); }
.package-duration span { transform: skew(20deg, 0deg); }

.package-item h3 { margin: 0; font-size: 21px; }
.package-item__stops { display: grid; gap: 11px; margin-bottom: 26px; }
.package-item__stops li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 15px; line-height: 25px;
}
.package-item__stops svg { width: 18px; height: 18px; color: var(--saffron); flex: none; margin-top: 4px; }

.package-item__foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.package-item__price { font-size: 14px; color: var(--muted); line-height: 20px; }
.package-item__price b { display: block; font-size: 16px; color: var(--ink); }

/*=== 14.0 Fleet cards ===*/
.vehicle-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.vehicle-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }

.vehicle-art {
  position: relative;
  background: var(--ink-2);
  padding: 34px 28px 26px;
  overflow: hidden;
}
.vehicle-art::before {
  content: "";
  position: absolute;
  right: -60px; top: -40px;
  width: 200px; height: 180px;
  background: var(--saffron);
  opacity: .16;
  transform: var(--skew);
}
.vehicle-art svg.art { position: relative; z-index: 1; width: 100%; height: auto; }

.vehicle-seats {
  position: absolute;
  left: 22px; top: 22px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--saffron);
  color: #fff;
  font-size: 13px; font-weight: 500;
  padding: 6px 13px;
  transform: var(--skew);
}
.vehicle-seats svg { width: 14px; height: 14px; transform: skew(20deg, 0deg); }
.vehicle-seats span { transform: skew(20deg, 0deg); }

.vehicle-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.vehicle-class {
  font-size: 13px; font-weight: 500;
  color: var(--saffron);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 8px; display: block;
}
.vehicle-body p { font-size: 16px; line-height: 26px; margin-bottom: 22px; }

.spec-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: var(--body);
  background: var(--grey);
  border-radius: var(--radius);
  padding: 7px 12px;
}
.chip svg { width: 14px; height: 14px; color: var(--saffron); }

.note-strip {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--saffron-05);
  border-left: 3px solid var(--saffron);
  padding: 22px 26px;
  margin-top: 40px;
  font-size: 16px; line-height: 26px;
}
.note-strip svg { width: 22px; height: 22px; color: var(--saffron); flex: none; margin-top: 3px; }

/*=== 15.0 Circuit scenes ===*/
.scene-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.scene-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }

.scene-art {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 8 / 5;
}
.scene-art svg,
.scene-art img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.scene-art svg { height: auto; }
.scene-item:hover .scene-art svg,
.scene-item:hover .scene-art img { transform: scale(1.05); }

/* a short scrim so the corner tag holds on a bright photograph */
.scene-art::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(19, 16, 16, .45), rgba(19, 16, 16, 0));
  pointer-events: none;
  z-index: 1;
}

.scene-tag {
  position: absolute;
  left: 20px; top: 20px;
  z-index: 2;
  display: inline-flex; align-items: center;
  background: var(--saffron);
  color: #fff;
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 14px;
  transform: var(--skew);
}
.scene-tag span { transform: skew(20deg, 0deg); }

.scene-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.scene-body h3 { font-size: 19px; margin-bottom: 10px; }
.scene-body p { font-size: 15px; line-height: 25px; }
.scene-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.scene-meta span { display: inline-flex; align-items: center; gap: 7px; }
.scene-meta svg { width: 14px; height: 14px; color: var(--saffron); }

/*=== 16.0 Counters ===*/
.counter-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.counter-item { text-align: center; position: relative; }
.counter-item + .counter-item::before {
  content: "";
  position: absolute; left: -15px; top: 12%;
  width: 1px; height: 76%;
  background: rgba(255, 255, 255, .12);
}
.counter-num {
  font-size: 44px; font-weight: 700; line-height: 1.1;
  letter-spacing: -2px; color: #fff;
  display: block; margin-bottom: 8px;
}
.counter-num em { color: var(--saffron); }
.counter-label { font-size: 15px; color: rgba(255, 255, 255, .62); }

/*=== 17.0 Routes ===*/
.route-list { display: flex; flex-wrap: wrap; gap: 12px; }
.route-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 18px;
  font-size: 15px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.route-pill:hover { border-color: var(--saffron); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.route-pill svg { width: 17px; height: 17px; color: var(--saffron); }
.route-pill b { font-weight: 600; }
.route-pill span { color: var(--muted); font-size: 14px; }

/*=== 18.0 CTA band ===*/
.cta-section { background: var(--ink-2); position: relative; overflow: hidden; }
.cta-section::before {
  content: "";
  position: absolute;
  right: -80px; top: -40px;
  width: 340px; height: 160%;
  background: var(--saffron);
  opacity: .12;
  transform: var(--skew);
}
.cta-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-wrap h2 { color: #fff; font-size: 36px; line-height: 46px; max-width: 640px; }
.cta-wrap h2 em { color: var(--saffron); }
.cta-wrap p { color: rgba(255, 255, 255, .7); margin-top: 10px; max-width: 560px; }

.cta-phone {
  display: flex; align-items: center; gap: 18px;
}
.cta-phone__ic {
  width: 62px; height: 62px; flex: none;
  display: grid; place-items: center;
  background: var(--saffron); color: #fff;
  transform: var(--skew);
}
.cta-phone__ic svg { width: 26px; height: 26px; transform: skew(20deg, 0deg); }
.cta-phone span { display: block; font-size: 14px; color: rgba(255, 255, 255, .6); }
.cta-phone strong { display: block; font-size: 25px; color: #fff; letter-spacing: -.8px; }

/*=== 19.0 Forms ===*/
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px 38px;
  position: relative;
}
.form-card__head {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 24px; margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.form-card__head svg { width: 30px; height: 30px; color: var(--saffron); flex: none; }
.form-card__head h3 { margin-bottom: 4px; }
.form-card__head p { font-size: 15px; line-height: 24px; margin: 0; }

.field { margin-bottom: 20px; }
.field__label {
  display: block;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.field__label span { color: var(--saffron); }

.input {
  width: 100%;
  height: 52px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--grey);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 16px;
  transition: border-color .3s ease, background .3s ease;
}
textarea.input { height: auto; min-height: 120px; padding: 14px 16px; line-height: 26px; resize: vertical; }
.input::placeholder { color: var(--muted); }
.input:focus { background: #fff; border-color: var(--saffron); outline: none; }
select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239A928A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.field__err {
  display: none;
  font-size: 13px;
  color: #D1341E;
  margin-top: 6px;
}
.field.is-invalid .input { border-color: #D1341E; background: #FDF3F1; }
.field.is-invalid .field__err { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }

.form-foot {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 21px; color: var(--muted);
  margin-top: 18px;
}
.form-foot svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }

.form-success { display: none; text-align: center; padding: 20px 0 6px; }
.form-success.is-shown { display: block; }
.form-success__ic {
  width: 66px; height: 66px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  background: var(--saffron-12); color: var(--saffron);
  transform: var(--skew);
}
.form-success__ic svg { width: 30px; height: 30px; transform: skew(20deg, 0deg); }
.form-success .btn-group { justify-content: center; margin-top: 24px; }

/*=== 20.0 Contact cards ===*/
.contact-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.contact-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-item__ic {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--saffron-12); color: var(--saffron);
  transform: var(--skew);
  margin-bottom: 22px;
}
.contact-item__ic svg { width: 25px; height: 25px; transform: skew(20deg, 0deg); }
.contact-item h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--muted); font-weight: 500; margin-bottom: 10px;
}
.contact-value {
  display: block;
  font-size: 19px; font-weight: 600; color: var(--ink);
  letter-spacing: -.4px; line-height: 28px;
  margin-bottom: 10px;
  word-break: break-word;
}
a.contact-value:hover { color: var(--saffron); }
.contact-item p { font-size: 15px; line-height: 24px; margin: 0; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey);
  min-height: 340px;
}
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* founder strip */
.founder {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--grey);
  border-left: 3px solid var(--saffron);
  padding: 22px 26px;
  margin-top: 34px;
}
.founder__av {
  width: 54px; height: 54px; flex: none;
  display: grid; place-items: center;
  background: var(--saffron); color: #fff;
  font-size: 22px; font-weight: 700;
  transform: var(--skew);
}
.founder__av span { transform: skew(20deg, 0deg); }
.founder__n { font-size: 17px; font-weight: 600; color: var(--ink); }
.founder__r { font-size: 14px; line-height: 22px; }
.founder .btn { margin-left: auto; }

/* FAQ */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: inherit;
  font-size: 17px; font-weight: 600; color: var(--ink);
  text-align: left;
  background: none; border: 0;
  padding: 22px 26px;
  cursor: pointer;
}
.faq-q svg { width: 20px; height: 20px; color: var(--saffron); flex: none; transition: transform .3s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 26px 24px; font-size: 16px; line-height: 27px; }
.faq-item.is-open .faq-a { display: block; }

/*=== 21.0 Footer ===*/
.footer-section { background: var(--ink-2); color: rgba(255, 255, 255, .64); }

.footer-top-wrap { background: var(--ink-3); }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  padding: 40px 0;
}
.footer-top h3 { color: #fff; font-size: 26px; letter-spacing: -.8px; margin: 0; }
.footer-top p { font-size: 15px; margin: 6px 0 0; }

.footer-mid { padding: 76px 0 60px; }
.footer-item h4 {
  color: #fff;
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.4px;
  margin-bottom: 24px;
  display: inline-flex; align-items: center;
}
.footer-item h4::before {
  content: "";
  width: 4px; height: 14px;
  background: var(--saffron);
  transform: var(--skew);
  margin-right: 12px;
}
.footer-section a { color: rgba(255, 255, 255, .64); }
.footer-section a:hover { color: var(--saffron); }

.footer-about { font-size: 15px; line-height: 26px; margin: 20px 0 22px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: rgba(255, 255, 255, .45); }

.footer-links li { margin-bottom: 12px; font-size: 15px; }
.footer-links a { display: inline-flex; align-items: center; gap: 9px; }
.footer-links svg { width: 13px; height: 13px; color: var(--saffron); }

.footer-contact li {
  display: flex; gap: 13px; align-items: flex-start;
  font-size: 15px; line-height: 25px;
  margin-bottom: 16px;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--saffron); flex: none; margin-top: 4px; }

.gst-block {
  background: rgba(255, 255, 255, .04);
  border-left: 3px solid var(--saffron);
  padding: 18px 20px;
  margin-top: 6px;
}
.gst-block .k {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px;
  color: rgba(255, 255, 255, .45);
}
.gst-block .v {
  font-size: 17px; font-weight: 600; color: #fff;
  letter-spacing: .06em; margin: 4px 0 6px;
}
.gst-block .s { font-size: 13px; line-height: 20px; }

.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border-radius: var(--radius);
  transition: background .3s ease;
}
.social-row a:hover { background: var(--saffron); color: #fff; }
.social-row svg { width: 18px; height: 18px; }

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 14px;
}

/*=== 22.0 Floating controls ===*/
.scroll-top {
  position: fixed;
  right: 24px; bottom: 96px;
  z-index: 60;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  border: 0; border-radius: var(--radius);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .3s ease;
}
.scroll-top.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--saffron); }
.scroll-top svg { width: 20px; height: 20px; }

.call-fab {
  position: fixed;
  left: 50%; transform: translateX(-50%);
  bottom: 16px;
  z-index: 60;
  display: none;
  align-items: center; gap: 10px;
  background: var(--saffron); color: #fff;
  font-size: 16px; font-weight: 500;
  white-space: nowrap;
  padding: 14px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.call-fab:hover { color: #fff; }
.call-fab svg { width: 18px; height: 18px; }

/*=== 23.0 Motion ===*/
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .slide-caption > * { transform: none; }
  .slide-actions { opacity: 1; transform: none; }
}

/*=== 24.0 Responsive ===*/
/* six nav items plus the sticky wordmark need a tighter rhythm */
@media (max-width: 1499px) {
  .nav-menu { --nav-pad: 15px; }
}

@media (max-width: 1339px) {
  .nav-menu { --nav-pad: 11px; }
  .nav-phone { display: none; }
}

@media (max-width: 1199px) {
  .slide-title { font-size: 54px; line-height: 62px; }
  .header-info { gap: 24px; }
}

@media (max-width: 991px) {
  .padding { padding: 76px 0; }
  .padding-sm { padding: 56px 0; }

  h1 { font-size: 38px; line-height: 48px; }
  h2 { font-size: 28px; line-height: 38px; }

  .row > .col-3, .row > .col-4, .row > .col-5, .row > .col-6,
  .row > .col-7, .row > .col-8, .row > .col-9 { width: 100%; }
  .row > [class*="col-"] + [class*="col-"] { margin-top: 40px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }

  .mid-header { display: none; }
  .nav-bar { border-top: 0; }
  .nav-menu, .nav-phone { display: none; }
  .burger { display: grid; }
  .nav-inner { min-height: 74px; }
  .nav-bar .brand { display: inline-flex; }

  .main-slider, .slide__inner { min-height: 560px; }
  .slide__inner { padding: 86px 0 150px; }
  .slide-title { font-size: 42px; line-height: 52px; letter-spacing: -1.6px; }
  .slide-sub { font-size: 17px; line-height: 29px; }
  .slider-controls { right: 20px; bottom: 26px; }

  .quote-strip { margin-top: 0; }
  .quote-card { grid-template-columns: 1fr 1fr; padding: 28px 24px; }
  .quote-card .btn { width: 100%; }

  .page-banner { padding: 66px 0 62px; }
  .page-banner h1 { font-size: 36px; line-height: 46px; }

  .media-figure { margin-bottom: 46px; }
  .media-figure::before { right: -14px; width: 130px; }
  /* the badge stops being an overlay and becomes a caption under the art,
     so it cannot smother the illustration on a narrow screen */
  .media-badge {
    position: static;
    max-width: none;
    margin-top: 14px;
    box-shadow: var(--shadow-sm);
  }

  .counter-row { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .counter-item:nth-child(odd)::before { display: none; }

  .cta-wrap { flex-direction: column; align-items: flex-start; }
  .cta-wrap h2 { font-size: 30px; line-height: 40px; }

  .form-card { padding: 32px 26px; }

  .footer-mid { padding: 60px 0 44px; }
  .footer-item { margin-bottom: 38px; }
  .footer-item:last-child { margin-bottom: 0; }

  .call-fab { display: inline-flex; }
  .scroll-top { bottom: 84px; }
  body { padding-bottom: 76px; }
}

@media (max-width: 767px) {
  body { font-size: 16px; line-height: 26px; }
  p { font-size: 16px; line-height: 26px; }

  /* the header CTA lives in the drawer at this width */
  .nav-right .btn { display: none; }

  .top-header { font-size: 13px; line-height: 1.6; padding: 10px 0; }
  .top-header-wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
  .top-header-nav { flex-wrap: wrap; gap: 8px 18px; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .quote-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .counter-row { grid-template-columns: repeat(2, 1fr); }
  .counter-num { font-size: 34px; }

  .slide-title { font-size: 34px; line-height: 44px; letter-spacing: -1.2px; }
  .slide-actions .btn { width: 100%; }
  .slider-controls { left: 20px; right: auto; bottom: 78px; }

  .brand__mark { width: 40px; height: 40px; }
  .brand__name { font-size: 19px; }
  .brand__tag { font-size: 10px; letter-spacing: 1.1px; }

  .section-heading h2 { font-size: 26px; line-height: 36px; }
  .cta-phone { width: 100%; }
  .founder .btn { margin-left: 0; width: 100%; }
  .copyright { justify-content: center; text-align: center; }
}

@media (max-width: 400px) {
  .brand__tag { display: none; }
  .note-strip, .founder { padding: 18px 18px; }
  .vehicle-body, .scene-body { padding: 22px 20px 24px; }
}

/* ===================================================================
   25.0 Variant 2 — the "index-2" layout
   -------------------------------------------------------------------
   Centred hero, a full-bleed booking band that overlaps it, a saffron
   CTA slab with a route-map texture, rate cards that carry vehicle art
   in the head, and the who-you-deal-with row.
   =================================================================== */

/*--- 25.1 Centred hero ---*/
.slider-section--center .slide__inner {
  justify-content: center;
  text-align: center;
  padding: 130px 0 210px;
}
.slider-section--center .slide-content { max-width: 900px; margin-inline: auto; }
.slider-section--center .slide-sub { margin-inline: auto; }
.slider-section--center .slide-actions { justify-content: center; }
.slider-section--center .slide-eyebrow { justify-content: center; }
.slider-section--center .slider-controls { left: 50%; right: auto; transform: translateX(-50%); bottom: 150px; }

/*--- 25.2 Full-bleed booking band ---*/
.booking-band {
  position: relative;
  z-index: 5;
  margin-top: -110px;
  margin-bottom: 30px;
}
.booking-band__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-band__art {
  position: relative;
  background: var(--ink-2);
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.booking-band__art::before {
  content: "";
  position: absolute;
  left: -90px; top: -40px;
  width: 300px; height: 150%;
  background: var(--saffron);
  opacity: .13;
  transform: var(--skew);
}
.booking-band__art > * { position: relative; z-index: 1; }
.booking-band__art h3 { color: #fff; font-size: 24px; letter-spacing: -.8px; }
.booking-band__art p { color: rgba(255, 255, 255, .7); font-size: 16px; line-height: 26px; }
.booking-band__art svg.art { width: 100%; height: auto; margin: 6px 0 20px; }

.booking-band__form { padding: 44px 42px; }
.booking-band__form .form-card { box-shadow: none; padding: 0; }

/*--- 25.3 Saffron CTA slab ---*/
.cta-slab { position: relative; z-index: 1; padding: 96px 0; }
.cta-slab::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 92%; height: 100%;
  z-index: -1;
  background-color: var(--saffron);
  background-image:
    repeating-linear-gradient(-20deg, rgba(255,255,255,.14) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(70deg, rgba(28,24,21,.08) 0 1px, transparent 1px 78px);
}
.cta-slab__grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.cta-slab__inner { max-width: 640px; }
.cta-slab__figure { padding-right: 20px; }
.cta-slab__art { width: 100%; height: auto; opacity: .55; }
.cta-slab h4 {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1.4px;
  color: rgba(28, 24, 21, .72);
  margin-bottom: 12px;
}
.cta-slab h2 { font-size: 36px; line-height: 46px; margin-bottom: 18px; }
.cta-slab p { color: rgba(28, 24, 21, .78); }

.tick-list { display: grid; gap: 13px; margin: 24px 0 30px; }
.tick-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 26px; color: var(--ink); }
.tick-list i, .tick-list svg {
  width: 26px; height: 26px; flex: none;
  padding: 5px;
  background: var(--ink);
  color: var(--saffron);
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

/*--- 25.4 Rate cards ---*/
.rate-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.rate-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }

.rate-head {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--grey);
}
.rate-head svg.art { width: 116px; height: auto; flex: none; }
.rate-head span {
  display: block;
  font-size: 12px; font-weight: 500;
  color: var(--saffron);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.rate-head h3 { margin: 0; font-size: 19px; }
.rate-seats {
  display: block;
  font-size: 13px; font-style: normal;
  color: var(--body);
  margin-top: 4px;
}

.rate-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.rate-list { display: grid; gap: 12px; margin-bottom: 26px; }
.rate-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 24px; }
.rate-list svg { width: 17px; height: 17px; color: var(--saffron); flex: none; margin-top: 4px; }
.rate-list li.is-off { color: var(--muted); }
.rate-list li.is-off svg { color: var(--muted); }
.rate-foot { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }

/*--- 25.5 Who you deal with ---*/
.desk-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  height: 100%;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.desk-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.desk-avatar {
  width: 86px; height: 86px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  background: var(--ink-2);
  color: var(--saffron);
  transform: var(--skew);
  position: relative;
}
.desk-avatar > * { transform: skew(20deg, 0deg); }
.desk-avatar svg { width: 34px; height: 34px; }
.desk-avatar b { font-size: 30px; font-weight: 700; color: var(--saffron); }
.desk-item h3 { margin-bottom: 4px; font-size: 19px; }
.desk-role {
  display: block;
  font-size: 13px; font-weight: 500;
  color: var(--saffron);
  text-transform: uppercase; letter-spacing: 1.1px;
  margin-bottom: 14px;
}
.desk-item p { font-size: 15px; line-height: 25px; }

@media (max-width: 991px) {
  .slider-section--center .slide__inner { padding: 90px 0 150px; }
  .slider-section--center .slider-controls { bottom: 84px; }
  .booking-band { margin-top: 0; }
  .booking-band__inner { grid-template-columns: 1fr; }
  .booking-band__art { padding: 34px 26px; }
  .booking-band__form { padding: 32px 26px; }
  .cta-slab { padding: 70px 0; }
  .cta-slab::before { width: 100%; }
  .cta-slab__grid { grid-template-columns: 1fr; }
  .cta-slab__figure { display: none; }
  .cta-slab h2 { font-size: 29px; line-height: 39px; }
}

@media (max-width: 767px) {
  .rate-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rate-head svg.art { width: 150px; }
}

/* ===================================================================
   26.0 Footer road — traffic crossing the top of the footer
   -------------------------------------------------------------------
   A ghat silhouette, a lane with scrolling dashes, and four vehicles
   driving across at different speeds and scales. Purely decorative:
   aria-hidden in the markup, and it stops dead under
   prefers-reduced-motion (rule 23.0 zeroes every duration).
   =================================================================== */
.footer-road {
  position: relative;
  height: 148px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink-2) 0%, #1A1512 62%, var(--ink-3) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-road__skyline {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 92px;
}
.footer-road__skyline svg {
  display: block;
  width: 100%; height: 100%;
  fill: rgba(255, 138, 30, .09);
}

/* the road surface */
.footer-road__surface {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  height: 62px;
  background: #100C0A;
  box-shadow: inset 0 1px 0 rgba(255, 138, 30, .28);
}
.footer-road__dashes {
  position: absolute;
  left: 0; right: 0; top: 30px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 189, 114, .55) 0 34px,
    transparent 34px 74px
  );
  background-size: 74px 2px;
  animation: road-dash 1.1s linear infinite;
}
@keyframes road-dash {
  from { background-position: 0 0; }
  to   { background-position: -74px 0; }
}

/* the traffic */
.footer-road__lane { position: absolute; inset: 0; z-index: 2; }

.road-car {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: block;
  will-change: transform;
  animation-name: road-drive;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.road-car__art { display: block; width: 100%; height: auto; }

@keyframes road-drive {
  from { transform: translateX(-24vw); }
  to   { transform: translateX(124vw); }
}
/* the oncoming lane, mirrored so the vehicle faces its direction of travel */
@keyframes road-drive-back {
  from { transform: translateX(124vw) scaleX(-1); }
  to   { transform: translateX(-24vw) scaleX(-1); }
}

.road-car--a { width: 168px; bottom:  4px; animation-duration: 13s; animation-delay:  -1s; opacity: .95; }
.road-car--b { width: 196px; bottom:  0;    animation-duration:  9s; animation-delay:  -5s; }
.road-car--c { width: 224px; bottom:  2px;  animation-duration: 17s; animation-delay: -11s; opacity: .85; }
.road-car--d {
  width: 116px; bottom: 34px; opacity: .42;
  animation-name: road-drive-back;
  animation-duration: 21s;
  animation-delay: -7s;
}

@media (max-width: 767px) {
  .footer-road { height: 116px; }
  .footer-road__skyline { height: 62px; }
  .footer-road__surface { height: 46px; }
  .footer-road__dashes { top: 22px; }
  .road-car--a { width: 116px; bottom: 2px; }
  .road-car--b { width: 132px; bottom: 0; }
  .road-car--c { width: 152px; bottom: 1px; }
  .road-car--d { width:  84px; bottom: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  /* park the traffic rather than freezing it mid-frame off-screen */
  .road-car--a { transform: translateX(8vw); }
  .road-car--b { transform: translateX(42vw); }
  .road-car--c { transform: translateX(72vw); }
  .road-car--d { transform: translateX(26vw) scaleX(-1); }
}

/* ===================================================================
   27.0 Contact section — world-map watermark
   -------------------------------------------------------------------
   The supplied map (assets/img/world-map.png) sits behind the contact
   cards and the "finding us" row. It is a dark silhouette on alpha, so
   it is laid down at low opacity on the white ground and kept below the
   content with its own stacking context.
   =================================================================== */
.contact-section { position: relative; overflow: hidden; }

/* full-bleed: the map spans the viewport, not the container */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* the map is an alpha silhouette, so the colour comes from here */
  background-color: var(--ink);
  opacity: .085;
  -webkit-mask: url("../img/world-map.png") no-repeat center / 100% auto;
  mask: url("../img/world-map.png") no-repeat center / 100% auto;
}

/* a browser without mask support gets the silhouette itself, not a slab */
@supports not ((-webkit-mask: none) or (mask: none)) {
  .contact-section::before {
    background: url("../img/world-map.png") no-repeat center / 100% auto;
    opacity: .085;
  }
}

.contact-section > .container { position: relative; z-index: 1; }

@media (max-width: 991px) {
  /* Stacked, the section is ~2200px tall while the map paints a band barely
     300px high, and the opaque cards cover everything but the side gutters —
     so centred it showed only as smudges at the edges. Anchor it low, where
     the "finding us" block leaves open canvas, and let the whole map read. */
  .contact-section::before {
    opacity: .1;
    -webkit-mask-size: 135% auto;
    mask-size: 135% auto;
    -webkit-mask-position: 50% 96%;
    mask-position: 50% 96%;
    background-size: 135% auto;
    background-position: 50% 96%;
  }
}

/* ===================================================================
   28.0 Step list — numbered process on the drivers page
   =================================================================== */
.step-list { display: grid; gap: 0; counter-reset: step; }

.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.step-item:first-child { padding-top: 0; }
.step-item:last-child { border-bottom: 0; padding-bottom: 0; }

/* the slab is skewed by a pseudo-element so the digit stays upright */
.step-num {
  position: relative;
  z-index: 0;
  width: 54px; height: 54px;
  flex: none;
  display: grid; place-items: center;
  color: var(--saffron);
  font-size: 20px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: color .35s ease;
}
.step-num::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink-2);
  transform: var(--skew);
  transition: background .35s ease;
}
.step-item:hover .step-num { color: #fff; }
.step-item:hover .step-num::before { background: var(--saffron); }

.step-item h3 { margin-bottom: 6px; font-size: 19px; }
.step-item p { font-size: 16px; line-height: 26px; margin: 0; }

@media (max-width: 767px) {
  .step-item { gap: 18px; padding: 22px 0; }
  .step-num { width: 46px; height: 46px; font-size: 18px; }
  .step-list { margin-top: 10px; }
}
