/* =========================================
   SteeveCars — Black + Taxi Yellow Redesign
   ========================================= */

:root {
  --navy: #111111;
  --navy-2: #1a1a1a;
  --navy-3: #222222;
  --navy-line: #2a2a2a;
  --ink: #0a0a0a;
  --text: #1a1a1a;
  --muted: #6b7385;
  --line: #e6e8ee;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --lime: #f5c518;
  --lime-2: #e6b000;
  --lime-ink: #0a0a0a;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, .10);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, .18);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, .30);
  --tr: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .5rem;
  line-height: 1.1;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { margin: 0 0 1rem; color: var(--text); }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  font-family: inherit;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--tr), background .2s var(--tr), color .2s var(--tr), border-color .2s var(--tr), box-shadow .2s var(--tr);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--lime); color: var(--lime-ink); }
.btn--primary:hover { background: var(--lime-2); box-shadow: 0 8px 20px rgba(245, 197, 24, .3); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn--white { background: #fff; color: var(--ink); border-color: #fff; }
.btn--white:hover { background: #f2f4f8; box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.btn--white svg { color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(0,0,0,.2); }
.btn--ghost:hover { background: var(--bg-soft); border-color: var(--ink); }
.btn--lg { padding: 1rem 1.5rem; font-size: 1rem; }
.btn--block { width: 100%; }
.w-full { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__tagline {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--lime);
  line-height: 1;
  padding: .25rem .6rem;
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 999px;
  white-space: nowrap;
}
.brand img {
  height: 42px;
  width: auto;
  background: transparent;
  /* Force logo to render as clean white silhouette on dark navy bg */
  filter: brightness(0) invert(1);
}

.nav__links { display: flex; gap: 1.8rem; }
.nav__links a { font-size: .95rem; font-weight: 500; color: #fff; position: relative; padding: .3rem 0; transition: color .2s var(--tr); }
.nav__links a:hover { color: var(--lime); }
.nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--lime); border-radius: 2px;
}

.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__phone {
  color: #fff; font-weight: 500; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .5rem;
}
.nav__phone-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  display: grid; place-items: center; color: #fff;
}
.nav__phone:hover { color: var(--lime); }

.nav__toggle {
  display: none;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy-2); border: 1px solid var(--navy-line);
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav__toggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s var(--tr), opacity .2s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: .3rem;
  padding: 1rem 4%;
  border-top: 1px solid var(--navy-line);
  background: var(--navy);
}
.nav__mobile a { padding: .8rem .5rem; border-radius: 10px; font-weight: 500; color: #fff; }
.nav__mobile a:not(.btn):hover { background: var(--navy-2); }
.nav__mobile.is-open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.hero__copy { position: relative; z-index: 2; padding-right: 1rem; }
.hero__title { color: #fff; margin-bottom: 1rem; }
.hero__sub { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 42ch; }
.hero__cta { display: flex; gap: .75rem; margin: 1.75rem 0 1.5rem; flex-wrap: wrap; }
.hero__features {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.hero__features li {
  display: inline-flex; align-items: center; gap: .55rem;
  color: rgba(255,255,255,.9); font-size: .92rem; font-weight: 500;
}
.hero__features li svg {
  padding: .35rem;
  background: rgba(245, 197, 24, .15);
  border-radius: 50%;
  box-sizing: content-box;
  flex: none;
}

.hero__visual {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4/3;
  display: block;
}
/* Blend the left edge of the image into the navy hero background */
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--navy) 0%,
    rgba(0, 0, 0, 0.85) 8%,
    rgba(0, 0, 0, 0.45) 20%,
    rgba(0, 0, 0, 0) 40%
  );
  pointer-events: none;
  z-index: 1;
}
/* Soft blend on the top and bottom too, so the image dissolves cleanly into the hero */
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--navy) 0%, rgba(0, 0, 0, 0) 12%),
    linear-gradient(to top,    var(--navy) 0%, rgba(0, 0, 0, 0) 12%);
  pointer-events: none;
  z-index: 1;
}

/* Booking bar */
.booker {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr .8fr auto;
  gap: 1rem;
  align-items: end;
  box-shadow: var(--shadow-lg);
}
.booker__field label {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 500;
  margin-bottom: .35rem;
  padding-left: .25rem;
}
.booker__input {
  position: relative;
  display: flex; align-items: center;
  background: transparent;
  border: 1px solid var(--navy-line);
  border-radius: 8px;
  transition: border-color .2s var(--tr), background .2s var(--tr);
  padding: 0 .75rem;
}
.booker__input:focus-within { border-color: var(--lime); background: rgba(245, 197, 24, .05); }
.booker__input svg { color: rgba(255,255,255,.5); flex: none; margin-right: .5rem; }
.booker__input input, .booker__input select {
  flex: 1;
  border: 0; outline: none; background: transparent;
  padding: .75rem 0;
  font: inherit; color: #fff;
  font-size: .92rem;
  min-width: 0;
}
.booker__input input::placeholder { color: rgba(255,255,255,.4); }
.booker__input select { appearance: none; color: #fff; cursor: pointer; }
.booker__input select option { background: var(--navy); color: #fff; }
.booker__input input[type="datetime-local"] { color-scheme: dark; }
.booker__submit { height: 46px; padding: 0 1.5rem; }

/* ============ TRUST ROW ============ */
.trust {
  background: var(--bg);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; text-align: center;
}
.trust__item {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  font-weight: 500; color: var(--text); font-size: .95rem;
}
.trust__item svg {
  padding: .5rem;
  background: rgba(245, 197, 24, .12);
  border-radius: 50%;
  box-sizing: content-box;
}

/* ============ SECTIONS ============ */
.section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.section--muted { background: var(--bg-soft); }

.section__head { margin-bottom: 2.5rem; }
.section__head--center { text-align: center; margin-inline: auto; max-width: 720px; }
.underline {
  width: 60px; height: 3px;
  background: var(--lime);
  border-radius: 3px;
  margin: .5rem auto 0;
}
.underline--left { margin-left: 0; }

/* ============ SERVICES ============ */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--tr), box-shadow .3s var(--tr);
  position: relative;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-soft);
}
.service__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--tr);
}
.service:hover .service__img img { transform: scale(1.04); }
.service__body { padding: 1.5rem; position: relative; }
.service__icon {
  position: absolute;
  top: -22px; left: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  color: var(--lime);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.service__body h3 { margin-top: .75rem; margin-bottom: .4rem; }
.service__body p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ============ AIRPORTS ============ */
.airports {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.airports__copy p { color: var(--muted); font-size: 1rem; max-width: 42ch; }
.airports__pills {
  display: flex;
  flex-wrap: nowrap;
  gap: .4rem;
  margin-top: 1.5rem;
}
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #fff; border: 1px solid var(--line);
  padding: .5rem .75rem; border-radius: 999px;
  font-size: .82rem; font-weight: 500;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.chip svg { color: var(--navy); flex: none; }
.airports__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #0a0a0a;
}
.airports__map-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============ WHY US + TESTIMONIALS ============ */
.why {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.why__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.why__list li { display: flex; gap: .9rem; align-items: flex-start; }
.why__icon {
  flex: none;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(245, 197, 24, .15);
  color: var(--navy);
  display: grid; place-items: center;
}
.why__list h4 { margin: 0 0 .25rem; }
.why__list p { color: var(--muted); font-size: .92rem; margin: 0; }

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.testimonial__stars {
  color: var(--lime-2);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.testimonial p {
  color: var(--text);
  font-size: .95rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.testimonial footer {
  display: flex; align-items: center; gap: .75rem;
}
.testimonial footer img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.testimonial footer strong {
  display: block;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 600;
}
.testimonial footer span {
  color: var(--muted);
  font-size: .82rem;
}

/* ============ STEPS ============ */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem; align-items: center;
}
.step {
  display: flex; align-items: center; gap: .9rem;
  padding: .5rem;
}
.step__num {
  flex: none;
  width: 36px; height: 36px; border-radius: 50%;
  background: #eef1f5; color: var(--muted);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 1rem;
}
.step__icon {
  width: 48px; height: 48px;
  object-fit: contain;
  flex: none;
}
.step h4 { margin: 0 0 .2rem; font-size: 1rem; }
.step p { color: var(--muted); font-size: .88rem; margin: 0; }
.step__arrow { display: grid; place-items: center; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--navy);
  background-image:
    linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .95)),
    url("../images/hero image.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0 0 .35rem; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem;
  border-top: 1px solid var(--navy-line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--navy-line);
}

/* Brand column */
.footer__col--brand { max-width: 340px; }
.footer__logo {
  height: 42px;
  width: auto;
  margin-bottom: 1rem;
  background: transparent;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0 0 1.4rem;
}

/* Column headings */
.footer__heading {
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 1.1rem;
  padding: 0;
}

/* Link lists */
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .65rem;
}
.footer__links a {
  color: rgba(255,255,255,.6);
  font-size: .92rem;
  font-weight: 400;
  transition: color .2s var(--tr), transform .2s var(--tr);
  display: inline-block;
  padding: 0;
  background: none;
  border: none;
}
.footer__links a:hover {
  color: var(--lime);
  transform: translateX(2px);
}

/* Contact column */
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .85rem;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.footer__contact li svg {
  color: var(--lime);
  flex: none;
  margin-top: 3px;
}
.footer__contact a {
  color: rgba(255,255,255,.6);
  display: inline;
  padding: 0;
  background: none;
  border: none;
  transition: color .2s var(--tr);
}
.footer__contact a:hover { color: var(--lime); }

/* Social icons */
.footer__social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: .55rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  padding: 0;
  transition: transform .2s var(--tr), background .2s var(--tr), color .2s var(--tr), border-color .2s var(--tr);
}
.footer__social a:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  transform: translateY(-3px);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  flex-wrap: wrap;
}
.footer__copyright {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.footer__legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.footer__legal a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  padding: 0;
  background: none;
  border: none;
  display: inline;
  transition: color .2s var(--tr);
}
.footer__legal a:hover { color: var(--lime); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__col--brand { grid-column: 1 / -1; max-width: 100%; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
  .footer__legal { gap: 1.25rem; }
}

/* ============ ABOUT HERO — Dark fintech (Stripe / Vercel / Linear vibe) ============ */
.about-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(60% 50% at 90% 10%, rgba(245, 197, 24, 0.14), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(120, 180, 255, 0.08), transparent 60%),
    linear-gradient(180deg, #080808 0%, #111111 50%, #080808 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
/* Subtle grid pattern faded to center */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at center, black 30%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}
/* Floating lime orb, top-right */
.about-hero::after {
  content: '';
  position: absolute;
  top: -18%;
  right: -12%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.22) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: aboutOrb 22s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes aboutOrb {
  0%   { transform: translate(0, 0) scale(1); opacity: .9; }
  100% { transform: translate(-40px, 30px) scale(1.15); opacity: 1; }
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-hero__copy .eyebrow {
  color: var(--lime);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .8rem;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 999px;
  letter-spacing: .12em;
}
.about-hero__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 1.5rem;
}
.text-lime {
  color: var(--lime);
  position: relative;
  white-space: nowrap;
  text-shadow: 0 0 40px rgba(245, 197, 24, 0.35);
}
.text-lime::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.35em;
  background: var(--lime);
  opacity: 0.18;
  border-radius: 2px;
  z-index: -1;
}
.about-hero__desc {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 0 2rem;
}
.about-hero__cta {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}
.about-hero__cta .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.about-hero__cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
.about-hero__cta .btn--ghost svg { transition: transform .25s var(--tr); }
.about-hero__cta .btn--ghost:hover svg { transform: translateX(3px); }

/* Glassmorphic bento grid */
.about-hero__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: .85rem;
  position: relative;
}
.bento {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem;
  transition: transform .35s var(--tr), background .35s var(--tr), border-color .35s var(--tr), box-shadow .35s var(--tr);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
}
/* Sheen border on hover using mask-composite */
.bento::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.5), transparent 40%, transparent 60%, rgba(245, 197, 24, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--tr);
  pointer-events: none;
}
.bento:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: transparent;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 197, 24, 0.15);
}
.bento:hover::after { opacity: 1; }
.bento--hero {
  grid-column: 1 / -1;
  padding: 1.6rem 1.5rem;
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(245, 197, 24, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.03);
}
.bento--full { grid-column: 1 / -1; display: flex; align-items: center; gap: 1rem; }
.bento--full .bento__body { flex: 1; }
.bento__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: .9rem;
  position: relative;
}
.bento__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}
.bento--full .bento__icon { margin-bottom: 0; flex: none; }
.bento__icon--lime  { background: rgba(245, 197, 24, 0.16); color: var(--lime); box-shadow: inset 0 0 0 1px rgba(245, 197, 24, 0.25); }
.bento__icon--navy  { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.9); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); }
.bento__icon--amber { background: rgba(255, 175, 0, 0.16); color: #ffb84c; box-shadow: inset 0 0 0 1px rgba(255, 175, 0, 0.25); }
.bento__icon--blue  { background: rgba(120, 180, 255, 0.16); color: #78b4ff; box-shadow: inset 0 0 0 1px rgba(120, 180, 255, 0.25); }
.bento__eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
}
.bento__value {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
}
.bento__value--sm {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: .35rem;
}
.bento__value-suffix {
  color: var(--lime);
  font-size: 0.8em;
  margin-left: .1rem;
  text-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
}
.bento__desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

/* Reveal-on-scroll for bento cards (staggered) */
.about-hero__bento .bento { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--tr), transform .6s var(--tr); }
.about-hero__bento.is-visible .bento { opacity: 1; transform: none; }
.about-hero__bento.is-visible .bento:nth-child(1) { transition-delay: .05s; }
.about-hero__bento.is-visible .bento:nth-child(2) { transition-delay: .15s; }
.about-hero__bento.is-visible .bento:nth-child(3) { transition-delay: .25s; }
.about-hero__bento.is-visible .bento:nth-child(4) { transition-delay: .35s; }

@media (max-width: 900px) {
  .about-hero__grid { grid-template-columns: 1fr; }
  .about-hero__bento { max-width: 560px; }
}
@media (prefers-reduced-motion: reduce) {
  .about-hero::after { animation: none; }
}

/* ============ LEGAL PAGES ============ */
.legal-hero {
  background: var(--navy);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 85% 30%, rgba(245, 197, 24, 0.12), transparent 60%),
    radial-gradient(50% 50% at 15% 90%, rgba(245, 197, 24, 0.06), transparent 60%);
  pointer-events: none;
}
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero h1 { color: #fff; margin-bottom: .75rem; font-size: clamp(2rem, 4vw, 3rem); }
.legal-hero__sub { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 56ch; margin-bottom: 1rem; }
.legal-hero__meta {
  display: inline-block;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  background: rgba(255,255,255,.06);
  padding: .4rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--navy-line);
  margin: 0;
}

.legal { background: var(--bg-soft); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.legal__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

/* Table of contents sidebar */
.legal__toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.legal__toc-title {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 .75rem;
}
.legal__toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.legal__toc li { counter-increment: toc; }
.legal__toc a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .85rem;
  margin: 0 -.85rem;
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  border-radius: 0 8px 8px 0;
  transition: color .2s var(--tr), border-color .2s var(--tr), background .2s var(--tr);
}
.legal__toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--muted);
  font-weight: 700;
  font-size: .75rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
  flex: none;
  min-width: 1.6rem;
}
.legal__toc a:hover {
  color: var(--navy);
  background: var(--bg-soft);
}
.legal__toc a:hover::before { color: var(--navy); }
.legal__toc a.is-current {
  color: var(--navy);
  font-weight: 600;
  border-left-color: var(--lime);
  background: linear-gradient(90deg, rgba(245, 197, 24, 0.12), transparent);
}
.legal__toc a.is-current::before { color: var(--lime-2, #e6b000); }

/* Content */
.legal__content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-sm);
  line-height: 1.7;
}
.legal__content section { margin-bottom: 2.5rem; scroll-margin-top: 90px; }
.legal__content section:last-child { margin-bottom: 0; }
.legal__content h2 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  margin: 0 0 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.legal__content h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 .5rem;
  color: var(--navy);
}
.legal__content p { color: var(--text); margin: 0 0 1rem; }
.legal__content ul {
  margin: 0 0 1rem;
  padding-left: 0;
  list-style: none;
}
.legal__content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .55rem;
  color: var(--text);
}
.legal__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}
.legal__content a { color: var(--navy); font-weight: 500; border-bottom: 1px solid rgba(0, 0, 0, 0.2); transition: border-color .2s var(--tr); }
.legal__content a:hover { border-bottom-color: var(--navy); }
.legal__content strong { color: var(--ink); font-weight: 600; }

/* Callout card inside content */
.legal__card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.5rem;
}
.legal__card strong {
  display: block;
  color: var(--navy);
  margin-bottom: .35rem;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.legal__card p { margin: 0; color: var(--text); }

@media (max-width: 900px) {
  .legal__grid { grid-template-columns: 1fr; }
  .legal__toc {
    position: static;
    order: 2;
  }
  .legal__content { order: 1; }
}

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .25s var(--tr);
}
.modal-backdrop.is-open { opacity: 1; }
.modal {
  background: #fff;
  border-radius: 22px;
  padding: 2.25rem 2rem 1.75rem;
  max-width: 420px;
  width: 100%;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  transform: scale(0.94) translateY(20px);
  opacity: 0;
  transition: transform .35s var(--tr), opacity .25s var(--tr);
}
.modal-backdrop.is-open .modal { transform: none; opacity: 1; }
.modal__close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s var(--tr), color .2s var(--tr);
}
.modal__close:hover { background: var(--bg-soft); color: var(--ink); }
.modal__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  position: relative;
  animation: modalIconPop .6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.modal__icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: modalIconRing 1.4s ease-out infinite;
}
.modal__icon--info    { background: rgba(245, 197, 24, 0.18); color: var(--navy); }
.modal__icon--info svg { color: #c49000; }
.modal__icon--warning { background: rgba(255, 175, 0, 0.15); color: #d97706; }
.modal__icon--error   { background: rgba(239, 68, 68, 0.12); color: #dc2626; }
.modal__icon--success { background: rgba(34, 197, 94, 0.15); color: #16a34a; }
.modal__title {
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 .5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.modal__message {
  color: var(--muted);
  font-size: .95rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.modal__actions {
  display: flex;
  gap: .6rem;
}
.modal__actions .btn { flex: 1; }

@keyframes modalIconPop {
  0%   { transform: scale(0);   opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes modalIconRing {
  0%   { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ============ TOAST ============ */
.toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  pointer-events: none;
}
.toast {
  background: #fff;
  padding: .9rem 1rem;
  padding-right: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  min-width: 300px;
  max-width: 400px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform .4s var(--tr), opacity .4s var(--tr);
  position: relative;
  pointer-events: auto;
}
.toast.is-open { transform: translateX(0); opacity: 1; }
.toast.is-leaving { transform: translateX(20px); opacity: 0; }
.toast__icon {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.toast__icon--info    { background: rgba(245, 197, 24, 0.18); color: #c49000; }
.toast__icon--warning { background: rgba(255, 175, 0, 0.15); color: #d97706; }
.toast__icon--error   { background: rgba(239, 68, 68, 0.12); color: #dc2626; }
.toast__icon--success { background: rgba(34, 197, 94, 0.15); color: #16a34a; }
.toast__body { flex: 1; min-width: 0; }
.toast__title {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .1rem;
  line-height: 1.4;
}
.toast__message {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.toast__close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s;
}
.toast__close:hover { background: var(--bg-soft); color: var(--ink); }

/* Field error state */
.field.has-error, .booker__input.has-error { border-color: #dc2626 !important; }
.contact-form input.has-error, .contact-form textarea.has-error { border-color: #dc2626 !important; }

/* ============ AUTOCOMPLETE DROPDOWN (body-portal) ============ */
.ac-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 360px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: .4rem;
  z-index: 999;
  max-height: 340px;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .18s var(--tr), transform .18s var(--tr);
  visibility: hidden;
}
.ac-dropdown.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
}
.ac-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .65rem .8rem;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font: inherit;
  font-size: .92rem;
  transition: background .15s var(--tr);
}
.ac-item:hover,
.ac-item.is-active {
  background: rgba(245, 197, 24, 0.12);
}
.ac-item__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--lime);
}
.ac-item__icon--airport  { background: rgba(245, 197, 24, 0.14); color: var(--lime); }
.ac-item__icon--station  { background: rgba(120, 180, 255, 0.14); color: #78b4ff; }
.ac-item__icon--city     { background: rgba(255, 175, 0, 0.14); color: #ffb84c; }
.ac-item__icon--place    { background: rgba(255, 255, 255, 0.08); color: rgba(255,255,255,.85); }
.ac-item__name {
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.ac-item__name mark {
  background: transparent;
  color: var(--lime);
  font-weight: 700;
}
.ac-item__type {
  flex: none;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}
.ac-empty {
  padding: 1rem .8rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: .88rem;
  text-align: center;
}
/* Dark scrollbar */
.ac-dropdown::-webkit-scrollbar { width: 8px; }
.ac-dropdown::-webkit-scrollbar-track { background: transparent; }
.ac-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.ac-dropdown::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }
.ac-dropdown { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.15) transparent; }

@media (max-width: 720px) {
  .ac-dropdown { min-width: 280px; max-height: 280px; }
  .ac-item__type { display: none; }
  .ac-item__name { white-space: normal; }
}

@media (max-width: 480px) {
  .toast-container { left: 1rem; right: 1rem; top: 1rem; }
  .toast { min-width: 0; max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .modal, .modal-backdrop, .toast { transition: opacity .2s; }
  .modal__icon, .modal__icon::before { animation: none; }
}

/* ============ SECTION DIVIDERS (luminous gradient stripes) ============ */
.trust,
.section,
.about-hero,
.cta-band {
  border-top: 1px solid;
  border-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 12%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.06) 88%,
    transparent 100%
  ) 1;
}

/* ============ GLOBAL DARK-FINTECH TREATMENT FOR LIGHT SECTIONS ============ */
/* Applies the same premium dark aesthetic (background, grid, glow, glassmorphism)
   used in About section to every light section, so the whole page feels cohesive. */

.section:not(.section--dark),
.trust {
  position: relative;
  color: #fff;
  background:
    radial-gradient(60% 50% at 90% 10%, rgba(245, 197, 24, 0.10), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(120, 180, 255, 0.06), transparent 60%),
    linear-gradient(180deg, #080808 0%, #111111 50%, #080808 100%);
  overflow: hidden;
  isolation: isolate;
}
.section:not(.section--dark)::before,
.trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at center, black 30%, transparent 82%);
          mask-image: radial-gradient(ellipse 85% 65% at center, black 30%, transparent 82%);
  pointer-events: none;
  z-index: -1;
}
/* Alternating rhythm: muted variant is slightly lighter dark */
.section--muted {
  background:
    radial-gradient(60% 50% at 10% 20%, rgba(245, 197, 24, 0.07), transparent 60%),
    radial-gradient(50% 50% at 90% 100%, rgba(120, 180, 255, 0.05), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
}
.section .container,
.trust .container { position: relative; z-index: 1; }

/* Headings & body text */
.section:not(.section--dark) .section__head h2,
.section:not(.section--dark) h1,
.section:not(.section--dark) h2,
.section:not(.section--dark) h3,
.section:not(.section--dark) h4 { color: #fff; }
.section:not(.section--dark) .section__head p,
.section:not(.section--dark) .section__sub { color: rgba(255, 255, 255, 0.65); }
.section:not(.section--dark) p { color: rgba(255, 255, 255, 0.72); }

/* Trust row */
.trust { border-bottom-color: rgba(255, 255, 255, 0.06); }
.trust__item { color: rgba(255, 255, 255, 0.9); }

/* ── Service cards → glassmorphic ── */
.service {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
}
.service:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 197, 24, 0.15);
  border-color: transparent;
}
.service__body h3 { color: #fff; }
.service__body p { color: rgba(255, 255, 255, 0.55); }
.service__img { background: rgba(255, 255, 255, 0.02); }

/* ── Testimonial cards → glassmorphic ── */
.testimonial {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: none;
}
.testimonial p { color: rgba(255, 255, 255, 0.85); }
.testimonial footer strong { color: #fff; }
.testimonial footer span { color: rgba(255, 255, 255, 0.5); }
.testimonial::before { color: var(--lime); opacity: 0.7; }

/* ── Why-us list ── */
.why__list h4 { color: #fff; }
.why__list p { color: rgba(255, 255, 255, 0.6); }
.why__icon {
  background: rgba(245, 197, 24, 0.15);
  color: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(245, 197, 24, 0.2);
}

/* ── Steps ── */
.step h4 { color: #fff; }
.step p { color: rgba(255, 255, 255, 0.6); }
.step__num {
  background: rgba(245, 197, 24, 0.15);
  color: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(245, 197, 24, 0.2);
}
.step__icon {
  width: 44px;
  height: 44px;
  flex: none;
  color: var(--lime);
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 12px rgba(245, 197, 24, 0.25));
}

/* ── Airport chips (Meet & greet / Luggage / Live flight tracking) ── */
.chip {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none;
}
.chip svg { color: var(--lime); }
.airports__copy p { color: rgba(255, 255, 255, 0.7); }
.airports__map { background: transparent; }

/* Underline (green) — stays lime, works on dark ✓ */
.underline { background: var(--lime); }

/* Cards visible above pseudo backgrounds */
.service, .testimonial, .step, .why__list li,
.airports__map, .airports__copy { position: relative; z-index: 1; }

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--tr), transform .7s var(--tr); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .booker { grid-template-columns: 1fr 1fr; }
  .booker__submit { grid-column: 1 / -1; }
  .services { grid-template-columns: 1fr; }
  .airports { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step__arrow { transform: rotate(90deg); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__phone { display: none; }

  /* Airports: full-width map, wrapping chips */
  .airports__map {
    border-radius: var(--radius);
    overflow: visible;
    width: 100%;
  }
  .airports__map-img { border-radius: var(--radius); }
  .airports__pills { flex-wrap: wrap; gap: .5rem; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .booker { grid-template-columns: 1fr; padding: .85rem; }
  .booker__submit { grid-column: auto; }
  .trust__grid { grid-template-columns: 1fr; gap: .75rem; }
  .trust__item { justify-content: flex-start; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
  .hero__features { gap: 1rem; }
  h1 { font-size: 2rem; }

  /* Airports mobile: bleed map edge-to-edge inside section */
  .airports { gap: 1.5rem; }
  .airports__copy { padding: 0 .25rem; }
  .airports__map {
    margin: 0 -4%;
    width: calc(100% + 8%);
    border-radius: 0;
  }
  .airports__map-img { border-radius: 0; width: 100%; height: auto; }
  .airports__pills { flex-wrap: wrap; gap: .45rem; }
  .chip { font-size: .78rem; padding: .45rem .65rem; }

  /* Brand tagline: shrink slightly on small screens */
  .brand__tagline { font-size: .65rem; padding: .2rem .5rem; letter-spacing: .1em; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
