/* =========================================================
   SHREENIKA TAXI — Bold taxi-poster design system
   Palette : Taxi Yellow · Black · White
   ========================================================= */

:root {
  --yellow: #FFC800;
  --yellow-dark: #F5B400;
  --yellow-soft: #FFE071;
  --yellow-tint: #FFF6D6;

  --black: #0D0D0D;
  --black-2: #1A1A1A;
  --black-3: #262626;
  --gray-1: #4A4A4A;
  --gray-2: #7A7A7A;
  --gray-3: #B0B0B0;
  --gray-4: #E5E5E5;
  --gray-5: #F5F5F5;
  --white: #FFFFFF;

  --shadow-sm: 0 4px 14px rgba(0,0,0,.08);
  --shadow-md: 0 18px 40px rgba(0,0,0,.15);
  --shadow-lg: 0 30px 60px rgba(0,0,0,.25);
  --shadow-yellow: 0 12px 30px rgba(255,200,0,.35);

  --radius: 14px;
  --radius-lg: 20px;

  --heading: 'Oswald', 'Arial Narrow', sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  --wrap: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5 { margin: 0; font-family: var(--heading); font-weight: 600; letter-spacing: .01em; line-height: 1.05; text-transform: uppercase; }
p { margin: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* highlight — yellow underline (on dark) */
.hl { color: var(--yellow); position: relative; }
.hl-black { color: var(--black); position: relative; display: inline-block; }
.hl-black::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 8px;
  background: var(--yellow); z-index: -1; opacity: .95;
}

/* ================= Buttons ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 4px;
  font-family: var(--heading); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; font-size: 14px;
  border: 2px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap; cursor: pointer;
}
.btn .ic { width: 16px; height: 16px; }
.btn-yellow { background: var(--yellow); color: var(--black); box-shadow: var(--shadow-yellow); }
.btn-yellow:hover { background: var(--black); color: var(--yellow); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.35); }
.btn-black { background: var(--black); color: var(--yellow); }
.btn-black:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--yellow); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 12.5px; }
.btn-block { width: 100%; }

/* ================= Icons ================= */
svg { fill: currentColor; }
.icon { width: 22px; height: 22px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.ic   { width: 18px; height: 18px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.ic-sm { width: 14px; height: 14px; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ================= Top strip ================= */
.topstrip { background: #0A0A0A; color: var(--white); font-size: 12.5px; padding: 10px 0; letter-spacing: .04em; border-bottom: 1px solid rgba(255,255,255,.05); }
.topstrip-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.ts-item { display: inline-flex; align-items: center; gap: 8px; color: var(--gray-3); }
.ts-item .ic { color: var(--yellow); }
.topstrip-right { display: flex; gap: 12px; align-items: center; }
.topstrip-right a { display: inline-flex; align-items: center; gap: 7px; color: var(--gray-3); transition: color .18s; }
.topstrip-right a .ic { color: var(--yellow); }
.topstrip-right a:hover { color: var(--yellow); }
.topstrip .dot { opacity: .35; }

/* Prominent BOOK CAB NOW phone in topstrip */
.ts-phone {
  display: inline-flex !important; align-items: center; gap: 8px;
  color: var(--white) !important;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(255,200,0,.12);
  border: 1px solid rgba(255,200,0,.35);
}
.ts-phone .ic { color: var(--yellow); }
.ts-phone b {
  font-family: var(--heading); font-weight: 700; letter-spacing: .12em;
  color: var(--yellow); margin-right: 4px;
}
.ts-phone:hover { background: var(--yellow); border-color: var(--yellow); }
.ts-phone:hover, .ts-phone:hover b { color: var(--black) !important; }
.ts-phone:hover .ic { color: var(--black); }

/* ================= Header — Dark Professional ================= */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(180deg, #131313 0%, #1A1A1A 100%);
  border-bottom: 3px solid var(--yellow);
  transition: box-shadow .2s ease, height .2s ease;
}
.hdr.is-scrolled { box-shadow: 0 8px 28px rgba(0,0,0,.35); }
.hdr-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 30px;
  height: 84px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; background: var(--white); padding: 3px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--heading); font-size: 26px; letter-spacing: .04em;
  color: var(--white); font-weight: 600; text-transform: uppercase;
}
.brand-name b { color: var(--yellow); font-weight: 700; }
.brand-tag {
  font-size: 10.5px; letter-spacing: .26em; color: var(--gray-3); margin-top: 6px;
  text-transform: uppercase; font-weight: 500;
}
.brand-lite .brand-name { color: var(--white); }
.brand-lite .brand-name b { color: var(--yellow); }
.brand-lite .brand-tag { color: var(--gray-3); }

.nav {
  display: flex; justify-content: center; gap: 2px;
}
.nav a {
  position: relative;
  padding: 12px 18px;
  font-family: var(--heading); font-weight: 500; font-size: 15px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray-3);
  transition: color .18s;
}
.nav a.active, .nav a:hover { color: var(--yellow); }
.nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 2px;
  width: 0; height: 3px; background: var(--yellow);
  transition: width .22s ease, left .22s ease;
}
.nav a.active::after, .nav a:hover::after { width: calc(100% - 36px); left: 18px; }

/* Header right — phone + CTA */
.hdr-right { display: flex; align-items: center; gap: 16px; }
.hdr-phone {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--white);
  padding: 6px 14px 6px 6px;
  border-left: 1px solid rgba(255,255,255,.08);
  transition: color .18s;
}
.hdr-phone:hover { color: var(--yellow); }
.hdr-phone-ico {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(255,200,0,.35);
}
.hdr-phone-ico .ic { width: 20px; height: 20px; }
.hdr-phone-txt { display: flex; flex-direction: column; line-height: 1.15; }
.hdr-phone-txt small {
  font-family: var(--heading); font-size: 10px; letter-spacing: .22em;
  color: var(--gray-3); text-transform: uppercase; font-weight: 500;
}
.hdr-phone-txt b {
  font-family: var(--heading); font-weight: 600; font-size: 17px;
  color: var(--white); letter-spacing: .02em; margin-top: 4px;
}
.hdr-phone:hover .hdr-phone-txt b { color: var(--yellow); }
.hdr-cta { padding: 12px 20px; font-size: 13px; }
.hdr-cta .ic-sm { margin-left: 2px; }

.burger { display: none; width: 44px; height: 44px; position: relative; padding: 0; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 3px; background: var(--white); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 30px; }
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
  position: relative;
  background: var(--yellow);
  overflow: hidden;
  padding-bottom: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 46%;
  background:
    linear-gradient(180deg, rgba(13,13,13,.85) 0%, rgba(13,13,13,.75) 100%),
    url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1900&q=80');
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 46%; left: 0; right: 0; height: 0;
  border-left: 100vw solid var(--yellow);
  border-top: 60px solid transparent;
  transform: translateY(-60px);
  z-index: 1;
}


.hero-wrap {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding-top: 60px;
}
.hero-left { padding-top: 0; position: relative; }

/* Mini fleet — overlapping cards on the left, filling the dark space */
.hero-mini-fleet {
  position: relative;
  height: 340px;
  margin-bottom: 32px;
  max-width: 100%;
}
.mini-car {
  position: absolute;
  width: 62%;
  min-width: 300px;
  aspect-ratio: 16/10;
  padding: 8px;
  background: var(--yellow);
  border-radius: 12px;
  box-shadow: 10px 10px 0 rgba(13,13,13,.75), 0 14px 30px rgba(0,0,0,.4);
  overflow: hidden;
  transition: transform .25s ease, z-index 0s;
}
.mini-car::before {
  content: '';
  position: absolute; inset: 8px;
  border: 2px solid rgba(13,13,13,.18);
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}
.mini-car img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  position: relative; z-index: 1;
}
.mini-car-1 {
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}
.mini-car-2 {
  bottom: 0; right: 0;
  transform: rotate(3deg);
  z-index: 1;
}
.mini-car:hover {
  transform: rotate(0) translateY(-4px) scale(1.03);
  z-index: 3;
}
.tag-line {
  display: inline-block;
  font-family: var(--heading); font-weight: 600; font-size: 15px;
  letter-spacing: .28em; color: var(--black);
  background: var(--white); padding: 6px 14px; border-radius: 3px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-title {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(36px, 4.6vw, 64px);
  color: var(--black);
  line-height: .98;
  letter-spacing: .005em;
  margin-bottom: 22px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero-title .hl { color: var(--white); text-shadow: 4px 4px 0 var(--black); }
.hero-lead {
  max-width: 480px;
  font-size: 16px; color: var(--black-2);
  margin-bottom: 30px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero right */
.hero-right { position: relative; }
.hero-car {
  position: relative; z-index: 1;
  margin-bottom: -30px;
  margin-left: auto;
  max-width: 640px;
  padding: 10px;
  background: var(--yellow);
  border-radius: 18px;
  box-shadow:
    12px 12px 0 rgba(13,13,13,.85),
    0 25px 50px rgba(0,0,0,.35);
  animation: floatCar 4.5s ease-in-out infinite;
  overflow: hidden;
}
.hero-car::before {
  content: '';
  position: absolute; inset: 10px;
  border: 2px solid rgba(13,13,13,.15);
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;
}
.hero-car img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
@keyframes floatCar {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Booking card */
.book-card {
  position: relative; z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: 0 40px 80px rgba(0,0,0,.28);
  margin-top: -20px;
  max-width: 420px;
  margin-left: auto;
  border-top: 6px solid var(--yellow);
}
.bc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.bc-title {
  font-family: var(--heading); font-weight: 600; font-size: 22px;
  letter-spacing: .06em; color: var(--black);
}
.bc-title b { color: var(--yellow-dark); }
.bc-tabs {
  display: flex; gap: 6px;
  background: var(--gray-5); padding: 4px; border-radius: 999px;
}
.bc-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; font-size: 12px; font-weight: 700;
  border-radius: 999px; color: var(--gray-1);
  transition: background .18s, color .18s;
}
.bc-tab .ic { width: 14px; height: 14px; }
.bc-tab.is-active { background: var(--black); color: var(--yellow); }

.bc-form { display: flex; flex-direction: column; gap: 12px; }
.bc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bc-field { display: flex; flex-direction: column; gap: 5px; }
.bc-field span {
  font-family: var(--heading); font-weight: 500; font-size: 12px;
  letter-spacing: .16em; color: var(--gray-1); text-transform: uppercase;
}
.bc-field input, .bc-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--gray-4);
  border-radius: 8px;
  font: inherit; font-size: 14.5px; color: var(--black);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
}
.bc-field input:focus, .bc-field select:focus {
  outline: 0; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,200,0,.28);
}

/* ================= Stats ================= */
.stats {
  background: var(--black);
  color: var(--white);
  padding: 34px 0;
  border-top: 4px solid var(--yellow);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat b {
  display: block; font-family: var(--heading); font-weight: 700;
  font-size: 44px; color: var(--yellow); letter-spacing: .02em; line-height: 1;
}
.stat span { font-size: 13px; letter-spacing: .12em; color: var(--gray-3); text-transform: uppercase; margin-top: 8px; display: inline-block; }

/* ================= Sections common ================= */
.section-head { max-width: 720px; margin: 0 0 44px; }
.section-head.center { margin: 0 auto 44px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--heading); font-weight: 500; font-size: 13px;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--yellow); position: relative;
  padding-bottom: 12px; margin-bottom: 14px;
}
.eyebrow::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; width: 40px; background: var(--yellow); margin: 0 auto;
}
.section-head:not(.center) .eyebrow::after { margin: 0; }
.eyebrow.dark { color: var(--black); }
.eyebrow.dark::after { background: var(--yellow); }
.section-title {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(32px, 4.2vw, 54px);
  color: var(--black);
  letter-spacing: .01em; line-height: 1.05;
  margin-bottom: 14px;
}
.section-head.light .section-title { color: var(--white); }
.section-sub { color: var(--gray-1); font-size: 16px; max-width: 620px; line-height: 1.65; margin: 0 auto; }

/* ================= About ================= */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.about-media { position: relative; padding: 20px; }
.am-block {
  position: absolute; top: 0; left: 0; width: 78%; height: 92%;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-media img {
  position: relative; z-index: 1;
  width: 90%; margin-left: auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.25));
}
.am-badge {
  position: absolute; bottom: 20px; left: 0;
  background: var(--black); color: var(--white);
  padding: 18px 22px; border-radius: 14px;
  display: flex; gap: 14px; align-items: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.am-badge b { font-family: var(--heading); font-weight: 700; font-size: 34px; color: var(--yellow); line-height: 1; }
.am-badge sup { font-size: 18px; color: var(--yellow); }
.am-badge span { font-size: 12px; letter-spacing: .08em; color: var(--gray-3); }

.lead { color: var(--gray-1); font-size: 16px; margin-bottom: 22px; line-height: 1.7; }
.about-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.about-list li { display: flex; gap: 12px; align-items: center; font-size: 15.5px; color: var(--black); font-weight: 500; }
.tick { display: inline-grid; place-items: center; width: 26px; height: 26px; background: var(--yellow); color: var(--black); border-radius: 50%; font-weight: 700; font-size: 12px; }
.tick .ic { width: 14px; height: 14px; }

/* ================= Tariffs ================= */
.tariffs { padding: 100px 0; background: var(--gray-5); position: relative; }
.tariffs::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 260px;
  background: var(--white); z-index: 0;
}
.tariffs .wrap { position: relative; z-index: 1; }
.tariff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tariff {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-4);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  display: flex; flex-direction: column;
}
.tariff:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.tf-featured { border: 2px solid var(--yellow); transform: translateY(-14px); }
.tf-featured:hover { transform: translateY(-18px); }
.tf-flag {
  position: absolute; top: 14px; right: 14px;
  background: var(--yellow); color: var(--black);
  padding: 5px 12px; border-radius: 3px;
  font-family: var(--heading); font-weight: 700; font-size: 11px;
  letter-spacing: .16em; z-index: 2;
}
.tf-img {
  background: linear-gradient(180deg, #FFE071 0%, var(--yellow) 100%);
  padding: 24px; display: grid; place-items: center;
  aspect-ratio: 16/9;
}
.tf-img img { max-height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 20px 25px rgba(0,0,0,.25)); }
.tf-body { padding: 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.tariff h3 { font-family: var(--heading); font-weight: 500; font-size: 24px; letter-spacing: .04em; }
.tariff h3 b { color: var(--yellow-dark); font-weight: 700; }
.tariff p { font-size: 14.5px; color: var(--gray-1); line-height: 1.6; }
.tf-price { display: flex; align-items: baseline; gap: 4px; margin-top: auto; }
.tf-price b { font-family: var(--heading); font-weight: 700; font-size: 36px; color: var(--black); }
.tf-price small { font-size: 14px; color: var(--gray-2); font-weight: 600; }

.tf-price-note {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--yellow-tint);
  border: 1px dashed var(--yellow-dark);
  border-radius: 10px;
  font-family: var(--heading); font-weight: 500; font-size: 13.5px;
  letter-spacing: .04em; color: var(--black-2);
}
.tf-price-note .ic { color: var(--yellow-dark); width: 18px; height: 18px; }

/* ================= We do best ================= */
.wedo {
  padding: 100px 0;
  background:
    linear-gradient(rgba(13,13,13,.94), rgba(13,13,13,.94)),
    url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1900&q=80');
  background-size: cover; background-position: center; background-attachment: fixed;
  color: var(--white);
}
.wedo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 60px; margin-top: 40px; }
.wd-item { display: flex; gap: 22px; align-items: flex-start; padding: 4px; }
.wd-ico {
  flex-shrink: 0;
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  display: grid; place-items: center;
  box-shadow: var(--shadow-yellow);
  transition: transform .25s ease;
}
.wd-ico .ic { width: 28px; height: 28px; }
.wd-item:hover .wd-ico { transform: scale(1.08) rotate(-5deg); }
.wd-txt h4 {
  font-family: var(--heading); font-weight: 600; font-size: 19px;
  letter-spacing: .06em; color: var(--white); margin-bottom: 8px;
}
.wd-txt p { color: var(--gray-3); font-size: 14.5px; line-height: 1.65; }

/* ================= Fleet ================= */
.fleet { padding: 100px 0; background: var(--white); }
.fleet-filter {
  display: flex; gap: 10px; margin: 0 0 34px; flex-wrap: wrap; justify-content: center;
}
.chip {
  background: var(--white); border: 2px solid var(--gray-4);
  padding: 9px 20px; border-radius: 999px;
  font-family: var(--heading); font-weight: 500; font-size: 13.5px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-1);
  transition: all .18s ease;
}
.chip:hover { border-color: var(--yellow); color: var(--black); }
.chip.is-active { background: var(--yellow); border-color: var(--yellow); color: var(--black); box-shadow: var(--shadow-yellow); }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.car {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-4);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.car:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.car.is-hidden { display: none; }
.car-img {
  position: relative;
  margin: 14px 14px 0;
  padding: 8px;
  background: var(--yellow);
  border-radius: 12px;
  aspect-ratio: 16/10;
  overflow: hidden;
  box-shadow: 6px 6px 0 rgba(13,13,13,.85);
}
.car-img::before {
  content: '';
  position: absolute; inset: 8px;
  border: 2px solid rgba(13,13,13,.18);
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}
.car-img::after {
  content: '';
  position: absolute; inset: 8px;
  background: linear-gradient(180deg, var(--gray-5) 0%, var(--gray-4) 100%);
  border-radius: 6px;
  z-index: 0;
}
.car-img img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform .4s ease;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,.18));
}
.car:hover .car-img img { transform: scale(1.06) rotate(-1deg); }
.car-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--black); color: var(--yellow);
  padding: 5px 10px; border-radius: 3px;
  font-family: var(--heading); font-size: 11px; font-weight: 700; letter-spacing: .12em;
  z-index: 3;
}
.car-info { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.car-cat { font-family: var(--heading); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gray-2); font-weight: 500; }
.car h3 { font-size: 20px; font-weight: 600; letter-spacing: .04em; }
.car-specs { display: flex; gap: 8px; flex-wrap: wrap; }
.car-specs li { font-size: 12px; color: var(--gray-1); background: var(--gray-5); padding: 5px 10px; border-radius: 6px; font-weight: 500; }
.car-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--gray-4); }
.car-price b { font-family: var(--heading); font-weight: 700; font-size: 22px; color: var(--black); }
.car-price small { font-size: 12px; color: var(--gray-2); }

.fine { margin-top: 28px; text-align: center; font-size: 13px; color: var(--gray-2); }

/* ================= Routes ================= */
.routes { padding: 100px 0; background: var(--black); color: var(--white); }
.routes-wrap {
  background: var(--black-2); border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.route-head {
  display: grid; grid-template-columns: 2.4fr 1fr 1fr 1fr auto;
  gap: 20px; align-items: center; padding: 16px 28px;
  background: var(--yellow); color: var(--black);
  font-family: var(--heading); font-weight: 700; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
}
.route-row {
  display: grid; grid-template-columns: 2.4fr 1fr 1fr 1fr auto;
  gap: 20px; align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .18s;
}
.route-row:last-child { border-bottom: 0; }
.route-row:hover { background: rgba(255,200,0,.06); }
.rt-name b { display: block; font-family: var(--heading); font-weight: 500; font-size: 18px; letter-spacing: .04em; color: var(--white); }
.rt-name span { color: var(--gray-3); font-size: 14px; }
.route-row > div:not(.rt-name) {
  font-family: var(--heading); font-weight: 600; font-size: 20px; color: var(--yellow); letter-spacing: .02em;
}

/* ================= Explore ================= */
.explore { padding: 100px 0; background: var(--gray-5); }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.ex-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover; background-position: center;
  color: var(--white);
  display: flex; align-items: flex-end;
  padding: 24px;
  transition: transform .3s ease;
  border-bottom: 4px solid var(--yellow);
}
.ex-card::before {
  content: ''; position: absolute; inset: 0;
  background: inherit; background-size: cover; background-position: center;
  transition: transform .5s ease;
  z-index: 0;
}
.ex-card:hover { transform: translateY(-4px); }
.ex-big { grid-column: span 2; }
.ex-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--yellow); color: var(--black);
  font-family: var(--heading); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  padding: 5px 12px; border-radius: 3px;
}
.ex-body { position: relative; z-index: 2; }
.ex-body h3 { font-family: var(--heading); font-weight: 600; font-size: 22px; letter-spacing: .04em; color: var(--white); margin-bottom: 4px; }
.ex-body p { font-size: 14px; color: rgba(255,255,255,.85); }

/* Click-for-details hint on Explore cards */
.ex-more {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--heading); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 600;
  color: var(--yellow);
  padding: 5px 10px;
  border: 1.5px solid var(--yellow);
  border-radius: 3px;
  transition: background .18s ease, color .18s ease;
}
.ex-card:hover .ex-more { background: var(--yellow); color: var(--black); }
.ex-card { cursor: pointer; }

/* ================= Explore Modal ================= */
.ex-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.ex-modal.is-open { display: flex; }
.ex-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.ex-modal-inner {
  position: relative;
  max-width: 860px; width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
  animation: modalIn .3s cubic-bezier(.2,.9,.3,1.2);
  z-index: 1;
  margin: 0 auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.ex-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: var(--black);
  font-size: 26px; font-weight: 400; line-height: 1;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  transition: background .18s, transform .18s;
  border: 0; cursor: pointer;
}
.ex-modal-close:hover { background: var(--yellow); transform: rotate(90deg); }

.ex-modal-hero {
  min-height: 280px;
  background-size: cover; background-position: center;
  color: var(--white);
  padding: 40px 40px 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-bottom: 5px solid var(--yellow);
}
.ex-modal-tag {
  display: inline-block; align-self: flex-start;
  background: var(--yellow); color: var(--black);
  font-family: var(--heading); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px;
  margin-bottom: 14px;
}
.ex-modal-hero h2 {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: .01em; line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
}
.ex-modal-lead {
  font-family: var(--heading); font-weight: 500; font-size: 13px;
  letter-spacing: .12em; color: var(--yellow); text-transform: uppercase;
}

.ex-modal-body { padding: 32px 40px 8px; background: var(--white); }
.ex-block { margin-bottom: 28px; }
.ex-block h4 {
  font-family: var(--heading); font-weight: 700;
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--black);
  padding-bottom: 8px; margin-bottom: 14px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.ex-block p { font-size: 15px; color: var(--ink-2); line-height: 1.75; }
.ex-block ul { display: flex; flex-direction: column; gap: 10px; }
.ex-block ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.55;
}
.ex-block ul li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
}
.ex-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.ex-facts { display: flex; flex-direction: column; gap: 12px; }
.ex-facts > div {
  padding: 12px 14px;
  background: var(--gray-5);
  border-left: 3px solid var(--yellow);
  border-radius: 4px;
}
.ex-facts span {
  display: block;
  font-family: var(--heading); font-size: 10.5px; letter-spacing: .18em;
  color: var(--gray-2); text-transform: uppercase; font-weight: 600;
  margin-bottom: 4px;
}
.ex-facts b {
  display: block;
  font-family: var(--body); font-size: 14px; color: var(--black); font-weight: 500;
}

.ex-modal-cta {
  padding: 20px 40px 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--gray-4);
  background: var(--gray-5);
}
.ex-modal-cta .btn { flex: 1 1 260px; justify-content: center; }

@media (max-width: 700px) {
  .ex-modal { padding: 12px; }
  .ex-modal-hero { padding: 28px 22px 22px; min-height: 220px; }
  .ex-modal-body { padding: 24px 22px 8px; }
  .ex-modal-cta { padding: 16px 22px 22px; }
  .ex-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ================= Happening in Goa ================= */
.happening {
  padding: 110px 0;
  background:
    linear-gradient(rgba(13,13,13,.96), rgba(13,13,13,.96)),
    url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1900&q=80');
  background-size: cover; background-position: center; background-attachment: fixed;
  color: var(--white);
  position: relative;
}
.happening::before {
  content: ''; position: absolute; top: -100px; right: -140px; width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,200,0,.14), transparent 65%);
  pointer-events: none;
}
.happening .section-title { color: var(--white); }

.hap-filter {
  display: flex; gap: 10px; margin: 0 0 40px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 2;
}
.hap-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); border: 2px solid rgba(255,255,255,.1);
  padding: 10px 20px; border-radius: 999px;
  font-family: var(--heading); font-weight: 500; font-size: 13.5px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-3);
  transition: all .18s ease;
}
.hap-chip .ic { width: 15px; height: 15px; color: var(--yellow); }
.hap-chip:hover { border-color: var(--yellow); color: var(--white); }
.hap-chip.is-active { background: var(--yellow); border-color: var(--yellow); color: var(--black); box-shadow: var(--shadow-yellow); }
.hap-chip.is-active .ic { color: var(--black); }

.hap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 2;
}
.hap {
  background: linear-gradient(180deg, #1E1E1E 0%, #171717 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 26px 26px 24px;
  display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.hap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.hap:hover {
  transform: translateY(-6px);
  border-color: rgba(255,200,0,.25);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.hap:hover::before { transform: scaleX(1); }
.hap.is-hidden { display: none; }

.hap-tag {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  background: var(--yellow); color: var(--black);
  padding: 6px 12px; border-radius: 3px;
  font-family: var(--heading); font-weight: 700; font-size: 10.5px;
  letter-spacing: .14em; margin-bottom: 16px;
}
.hap-tag .ic { width: 13px; height: 13px; }
.hap-tag-cafe { background: #F5B942; }
.hap-tag-nightlife { background: #FF6B4A; color: var(--white); }
.hap-tag-beach { background: #4EC5D9; color: var(--black); }
.hap-tag-restaurant { background: #FFC800; color: var(--black); }
.hap-tag-market { background: #A8D46F; color: var(--black); }
.hap-tag-wellness { background: #C58AFF; color: var(--black); }

.hap-body { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.hap-area {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--heading); font-size: 11.5px; letter-spacing: .14em;
  color: var(--gray-3); text-transform: uppercase;
}
.hap-area .ic { width: 13px; height: 13px; color: var(--yellow); }
.hap h3 {
  font-family: var(--heading); font-weight: 600; font-size: 22px;
  color: var(--white); letter-spacing: .03em; line-height: 1.05;
}
.hap p { color: var(--gray-3); font-size: 14px; line-height: 1.6; }
.hap-know {
  display: flex; flex-direction: column; gap: 3px;
  background: rgba(255,200,0,.08);
  border-left: 3px solid var(--yellow);
  padding: 10px 14px;
  border-radius: 4px;
  margin-top: 6px;
}
.hap-know span {
  font-family: var(--heading); font-size: 10.5px; letter-spacing: .18em;
  color: var(--yellow); font-weight: 600; text-transform: uppercase;
}
.hap-know b {
  font-family: var(--body); font-size: 14px; color: var(--white); font-weight: 500;
}
.hap-meta { font-size: 12px; color: var(--gray-2); margin-top: 4px; padding-bottom: 6px; }
.hap .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Trip planning card */
.hap-plan {
  margin-top: 48px;
  padding: 40px 44px;
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 30px; align-items: center;
  position: relative; z-index: 2;
  overflow: hidden;
}
.hap-plan::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,.05) 0 20px, transparent 20px 40px);
  pointer-events: none;
}
.hap-plan h3 {
  font-family: var(--heading); font-size: clamp(24px, 3vw, 34px);
  font-weight: 700; letter-spacing: .01em; line-height: 1.1;
  margin: 8px 0 12px;
}
.hap-plan p { font-size: 15px; color: var(--black-2); line-height: 1.6; max-width: 520px; position: relative; z-index: 2; }
.hap-plan-cta { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }
.hap-plan-cta .btn { justify-content: center; }

/* ================= Testimonials ================= */
.testis { padding: 100px 0; background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testi {
  background: var(--gray-5); border-radius: var(--radius-lg);
  padding: 30px; margin: 0;
  display: grid; grid-template-columns: 90px 1fr; gap: 22px; align-items: center;
  border-left: 4px solid var(--yellow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tst-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 3px solid var(--yellow);
}
.testi blockquote {
  font-size: 15.5px; color: var(--black-2); line-height: 1.6;
  font-style: italic; margin: 0 0 12px;
}
.testi figcaption b {
  display: block; font-family: var(--heading); font-size: 15px;
  letter-spacing: .04em; color: var(--black);
}
.testi figcaption span { font-size: 12.5px; color: var(--gray-2); letter-spacing: .06em; text-transform: uppercase; }

/* ================= CTA banner ================= */
.cta-banner {
  background: var(--yellow); padding: 70px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,.05) 0 20px, transparent 20px 40px);
  pointer-events: none;
}
.cta-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  position: relative; z-index: 2;
}
.cta-left p { color: var(--black-2); font-size: 16px; margin: 14px 0 24px; max-width: 520px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-right img { width: 100%; filter: drop-shadow(0 30px 30px rgba(0,0,0,.2)); }

/* ================= Contact ================= */
.contact { padding: 100px 0; background: var(--black); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info .section-title { color: var(--white); }
.contact-info .lead { color: var(--gray-3); }
.ci-list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 24px; }
.ci-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci-ico {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--yellow); color: var(--black);
  box-shadow: var(--shadow-yellow);
  flex-shrink: 0;
}
.ci-ico .ic { width: 20px; height: 20px; }
.ci-list b { display: block; font-family: var(--heading); font-size: 12px; letter-spacing: .16em; color: var(--yellow); margin-bottom: 4px; }
.ci-list a, .ci-list span { color: var(--white); font-size: 15.5px; }
.ci-list a:hover { color: var(--yellow); }
.ci-map { margin-top: 14px; border-radius: var(--radius); overflow: hidden; filter: grayscale(.3); }
.ci-map iframe { display: block; }

.ct-form {
  background: var(--white); color: var(--black);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-top: 6px solid var(--yellow);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.ct-form h3 { font-family: var(--heading); font-weight: 500; font-size: 26px; letter-spacing: .04em; margin-bottom: 4px; }
.ct-form h3 b { color: var(--yellow-dark); font-weight: 700; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ct-form label { display: flex; flex-direction: column; gap: 6px; }
.ct-form label span {
  font-family: var(--heading); font-weight: 500; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gray-1);
}
.ct-form input, .ct-form select, .ct-form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-4);
  border-radius: 8px;
  font: inherit; font-size: 15px; color: var(--black); background: var(--white);
  transition: border-color .18s, box-shadow .18s;
}
.ct-form input:focus, .ct-form select:focus, .ct-form textarea:focus {
  outline: 0; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,200,0,.28);
}
.ct-note { text-align: center; font-size: 12.5px; color: var(--gray-2); }

/* ================= Footer ================= */
.foot { background: var(--black-2); color: var(--gray-3); padding: 70px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 50px; }
.foot-brand p { margin: 18px 0; font-size: 14.5px; max-width: 320px; color: var(--gray-3); }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--black); display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  transition: background .18s, color .18s, transform .18s;
}
.foot-social a:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }

.foot h5 {
  font-family: var(--heading); font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--yellow); font-weight: 700; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.foot ul { display: flex; flex-direction: column; gap: 10px; }
.foot ul a { font-size: 14.5px; color: var(--gray-3); transition: color .18s, padding-left .18s; }
.foot ul a:hover { color: var(--yellow); padding-left: 4px; }
.foot-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-3); }
.foot-contact li .ic { color: var(--yellow); width: 16px; height: 16px; flex-shrink: 0; }
.foot-social a .ic { width: 18px; height: 18px; }

.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; }
.fb-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 13px; color: var(--gray-2); }

/* ================= FAB ================= */
.fab {
  position: fixed; z-index: 50;
  right: 22px;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform .18s ease;
  color: var(--white);
}
.fab .icon { width: 24px; height: 24px; }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab-call { bottom: 90px; background: var(--yellow); color: var(--black); animation: pulse 2.2s infinite; }
.fab-wa   { bottom: 22px; background: #25D366; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,200,0,.55), var(--shadow-md); }
  70% { box-shadow: 0 0 0 22px rgba(255,200,0,0), var(--shadow-md); }
  100% { box-shadow: 0 0 0 0 rgba(255,200,0,0), var(--shadow-md); }
}

/* ================= Scroll reveal ================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ================= Responsive ================= */
@media (max-width: 1080px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-mini-fleet { height: 260px; max-width: 520px; margin: 0 auto 30px; }
  .mini-car { width: 60%; min-width: 260px; }
  .hero-right { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; align-items: center; }
  .hero-car { margin-bottom: 0; }
  .book-card { margin-top: 0; max-width: 100%; }
  .book-line { align-items: center; text-align: center; }

  .nav { display: none; position: absolute; top: 84px; left: 0; right: 0; flex-direction: column; gap: 0; background: #131313; border-bottom: 3px solid var(--yellow); box-shadow: 0 20px 30px rgba(0,0,0,.35); padding: 8px 0; }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.06); color: var(--gray-3); }
  .nav a::after { display: none; }
  .burger { display: block; }
  .hdr-phone-txt { display: none; }
  .hdr-phone { padding: 0; border-left: 0; }
  .hdr-cta { display: none; }

  .about-grid, .contact-grid, .cta-grid, .hap-plan { grid-template-columns: 1fr; }
  .tariff-grid, .fleet-grid, .hap-grid { grid-template-columns: 1fr 1fr; }
  .happening { background-attachment: scroll; }
  .hap-plan { padding: 30px; }
  .tf-featured { transform: none; }
  .tf-featured:hover { transform: translateY(-8px); }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-right { display: none; }
  .wedo { background-attachment: scroll; }
}

@media (max-width: 640px) {
  .topstrip-inner { justify-content: center; text-align: center; }
  .topstrip-right { font-size: 12px; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .topstrip .ts-item { display: none; }
  .ts-phone { padding: 3px 10px; }

  .hdr-inner { height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 22px; }
  .brand-tag { font-size: 9.5px; }

  .corner-ribbon { width: 130px; height: 130px; }
  .corner-ribbon span { font-size: 12px; top: 30px; }

  .bl-phone { font-size: 22px; }
  .bl-label { font-size: 12px; }
  .hero-mini-fleet { display: none; }
  .hero-title { font-size: 44px; }
  .hero-right { grid-template-columns: 1fr; }
  .book-card { max-width: 100%; }

  .about, .tariffs, .wedo, .fleet, .routes, .explore, .testis, .cta-banner, .contact { padding: 70px 0; }

  .tariff-grid, .fleet-grid, .wedo-grid, .explore-grid, .hap-grid { grid-template-columns: 1fr; }
  .happening { padding: 70px 0; }
  .explore-grid { grid-auto-rows: 220px; }
  .ex-big { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat b { font-size: 34px; }

  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .fb-inner { flex-direction: column; text-align: center; }

  .routes-wrap { border-radius: 14px; }
  .route-head { display: none; }
  .route-row { grid-template-columns: 1fr 1fr; padding: 18px; gap: 10px; }
  .rt-name { grid-column: span 2; }
  .route-row > div:not(.rt-name) { font-size: 16px; }
  .route-row > div:nth-of-type(2)::before { content: 'Sedan '; color: var(--gray-3); font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: .1em; display: block; text-transform: uppercase; }
  .route-row > div:nth-of-type(3)::before { content: 'SUV '; color: var(--gray-3); font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: .1em; display: block; text-transform: uppercase; }
  .route-row > div:nth-of-type(4)::before { content: 'Premium '; color: var(--gray-3); font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: .1em; display: block; text-transform: uppercase; }
  .route-row .btn { grid-column: span 2; }

  .testi { grid-template-columns: 70px 1fr; padding: 24px; }
  .tst-avatar { width: 70px; height: 70px; }

  .ct-form { padding: 22px; }
  .ct-row { grid-template-columns: 1fr; }
}
