/* taxi.asia — kiwitaxi.com-matched design */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

:root {
  /* Colors from kiwitaxi.com */
  --ray:          #00d2cd;
  --ray-active:   #00beb9;
  --teal-dark:    #009e9b;
  --purple:       #411482;
  --purple-dark:  #2d006e;
  --pg-5:         #393147;  /* dark purple bg */
  --pg-4-5:       #4d455b;
  --pg-4:         #61596f;
  --pg-3-5:       #756d83;
  --pg-3:         #938ba1;
  --pg-2-5:       #9d95ab;
  --pg-2:         #b1a9bf;  /* subtitle on dark */
  --pg-1-5:       #c5bdd3;
  --pg-1:         #d9d1e7;  /* light purple border */
  --divider:      #e4deee;
  --gray:         #e2dee9;
  --light-gray:   #f7f6fa;  /* section bg */
  --x-light-gray: #f9f9fb;  /* lighter section bg */
  --white:        #ffffff;
  --orange:       #ff6e41;
  --lime:         #dcfa00;

  --shadow-sm: 0 4px 10px rgba(65, 20, 130, .05);
  --shadow-md: 0 8px 24px rgba(65, 20, 130, .08);
  --shadow-lg: 0 20px 60px rgba(65, 20, 130, .12);
  --shadow-card: 0 2px 12px rgba(57, 49, 71, .08);

  --radius: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--purple);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ray); text-decoration: none; }
a:hover { color: var(--ray-active); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { color: var(--purple); line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(24px, 3.2vw, 36px); }
h3 { font-size: 19px; line-height: 24px; }
h4 { font-size: 16px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 743px) { .container { padding: 0 24px; } }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  text-align: center;
  font-family: inherit;
  line-height: 1.25;
}
.btn-primary {
  background: var(--ray);
  color: var(--purple);
  box-shadow: 0 4px 12px rgba(0, 210, 205, .25);
}
.btn-primary:hover { background: var(--ray-active); color: var(--purple); }
.btn-primary:active { transform: translateY(1px); }

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-outline {
  background: #fff;
  color: var(--purple);
  border: 1.5px solid var(--pg-1);
}
.btn-outline:hover { border-color: var(--ray); color: var(--purple); }

.btn-dark {
  background: var(--purple);
  color: #fff;
}
.btn-dark:hover { background: var(--purple-dark); color: #fff; }

/* ── HEADER (transparent over hero with dark fade) ───── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.28) 60%, rgba(0,0,0,0) 100%);
  padding-bottom: 30px;
}
.header-inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 20px 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  height: 57px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: color .15s;
}
.main-nav a:hover { color: var(--ray); }

.nav-cta {
  background: var(--ray);
  color: var(--purple) !important;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 210, 205, .25);
}
.nav-cta:hover { background: var(--ray-active); color: var(--purple) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile nav: slide-in sidebar from right, covers 60% of screen */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  max-width: 300px;
  min-width: 240px;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 88px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .28s ease;
  box-shadow: none;
  z-index: 1000;
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
  box-shadow: -20px 0 50px rgba(0,0,0,.4);
}
.mobile-nav a {
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 16px;
  font-weight: 700;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .nav-cta-mob {
  margin-top: 18px;
  background: var(--ray);
  color: var(--purple) !important;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  border: none;
  font-weight: 800;
}

/* Backdrop behind mobile nav when open */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 999;
}
.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Light theme for non-homepage (pages without dark hero) */
.site-header.light-theme {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 0;
}
.site-header.light-theme .header-inner { padding: 16px 32px; }
.site-header.light-theme .site-logo { filter: none; }
.site-header.light-theme .main-nav a { color: var(--purple); }
.site-header.light-theme .main-nav a:hover { color: var(--ray-active); }
.site-header.light-theme .burger span { background: var(--purple); }
.site-header.light-theme .mobile-nav {
  background: #fff;
  backdrop-filter: none;
  border-top: 1px solid var(--divider);
}
.site-header.light-theme .mobile-nav a {
  color: var(--purple);
  border-bottom: 1px solid var(--divider);
}

/* ── HERO (kiwitaxi-matched) ─────────────────────────── */
.hero {
  background: #0a0a0a;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 18%, rgba(0,0,0,.15) 38%, rgba(0,0,0,0) 55%),
    url('/images/display/hero.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 120px 0 80px;
  position: relative;
}
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero .hero-cta {
  display: inline-block;
  margin: 0 auto;
  padding: 18px 42px;
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(0, 210, 205, .35);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--pg-1);
  max-width: 620px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

/* Hero stats row */
.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 48px;
  margin-top: auto;
  padding-top: 80px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-feature-icon {
  width: 36px;
  height: 36px;
  color: var(--ray);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-feature-icon svg { width: 100%; height: 100%; }
.hero-feature-info {
  text-align: left;
}
.hero-feature-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero-feature-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--pg-1-5);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-feature-divider {
  width: 1px;
  height: 36px;
  background: var(--pg-3);
  opacity: .4;
}

/* Search form (unused on homepage, kept for other pages) */
.search-wrap {
  position: relative;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
  z-index: 10;
}
.search-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr 180px 160px auto;
  gap: 8px;
  align-items: stretch;
}
.search-field {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  background: var(--x-light-gray);
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: border-color .15s, background .15s;
  min-width: 0;
}
.search-field:focus-within {
  background: #fff;
  border-color: var(--ray);
}
.search-field label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pg-3-5);
  margin-bottom: 4px;
}
.search-field-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-field-inner svg { flex-shrink: 0; color: var(--ray); }
.search-field-inner input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--purple);
  outline: none;
  min-width: 0;
  padding: 0;
  width: 100%;
}
.search-field-inner input::placeholder { color: var(--pg-2-5); font-weight: 500; }
.search-btn {
  background: var(--ray);
  color: var(--purple);
  padding: 0 36px;
  font-size: 17px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 210, 205, .3);
}
.search-btn:hover { background: var(--ray-active); }

/* ── SECTIONS ────────────────────────────────────────── */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--light-gray);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head h2 {
  margin-bottom: 16px;
  color: #1a1a1a;
}
.section-head p {
  color: #1a1a1a;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

/* ── FLAG STRIP ──────────────────────────────────────── */
.flag-strip {
  background: #fff;
  border-bottom: 1px solid var(--divider);
  padding: 20px 0;
  position: relative;
  z-index: 5;
}
.flag-strip-inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.flag-strip-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--pg-3-5);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.flag-strip a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
}
.flag-strip a:hover { color: var(--ray-active); }
.flag-strip a img {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(57,49,71,.2);
}

/* ── CARDS / AIRPORT GRID ────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--divider);
  overflow: hidden;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--pg-1);
}

.airport-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.airport-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--light-gray);
}
.airport-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.airport-card .flag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--pg-3-5);
  margin-bottom: 8px;
  font-weight: 700;
}
.airport-card .flag-row img {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(57,49,71,.2);
}
.airport-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 6px;
  color: var(--purple);
  font-weight: 800;
}
.airport-card .iata {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ray-active);
  letter-spacing: .08em;
  margin-left: 4px;
  vertical-align: middle;
}
.airport-card .desc {
  color: var(--pg-3-5);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  margin: 10px 0 16px;
  flex: 1;
}
.airport-card .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}
.airport-card .price {
  font-size: 13px;
  color: var(--pg-3-5);
  font-weight: 600;
}
.airport-card .price strong {
  color: var(--purple);
  font-weight: 800;
  font-size: 18px;
  margin-left: 4px;
}
.airport-card .book-link {
  color: var(--ray-active);
  font-weight: 800;
  font-size: 14px;
}

/* ── VALUE PROPS (big photo cards like kiwitaxi) ─────── */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-prop {
  border-radius: var(--radius);
  padding: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 432px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background-color: var(--pg-5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Exact kiwitaxi gradient: clear top half, fade to dark at bottom 75%+ */
.value-prop.bg-easy { background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.72) 75.93%), url('/images/display/airport-singapore.webp'); }
.value-prop.bg-meet { background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.72) 75.93%), url('/images/display/airport-bangkok.webp'); }
.value-prop.bg-safe { background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.72) 75.93%), url('/images/display/airport-dubai.webp'); }

.value-prop-icon {
  width: 40px;
  height: 40px;
  color: var(--ray);
  display: flex;
  align-items: center;
  align-self: flex-start;
}
.value-prop-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.value-prop-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.value-prop-content p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}

/* ── CAR CLASSES GRID (with images) ──────────────────── */
.car-classes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-class {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex;
  flex-direction: column;
}
.car-class:hover {
  border-color: var(--ray);
  box-shadow: 0 10px 30px rgba(0, 210, 205, .12);
  transform: translateY(-3px);
}
.car-class-img {
  background: #f9f9fb;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 36px;
  border-bottom: 1px solid var(--divider);
}
.car-class-img img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.car-class-body { padding: 20px 26px 24px; }
.car-class-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.car-class h3 {
  font-size: 19px;
  color: var(--purple);
  font-weight: 800;
}
.car-class-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--ray-active);
}
.car-class-desc {
  font-size: 14px;
  color: var(--pg-3-5);
  font-weight: 500;
  margin-bottom: 16px;
}
.car-class-specs {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--pg-3-5);
  padding-top: 14px;
  border-top: 1px solid var(--divider);
  font-weight: 600;
}
.car-class-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.car-class-specs strong { color: var(--purple); font-weight: 800; }

/* ── LEGAL / STATIC PAGE STYLE (blommor.se-inspired) ─── */
.legal-page {
  background: var(--x-light-gray);
  min-height: 60vh;
  padding-top: 0;
}
.legal-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}
.legal-container > h1 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--purple);
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.legal-updated {
  color: var(--pg-3-5);
  font-size: 14px;
  margin-bottom: 32px;
  font-weight: 500;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
}
.legal-card h2 {
  font-size: 20px;
  color: var(--purple);
  margin-bottom: 12px;
  font-weight: 800;
}
.legal-card p {
  line-height: 1.75;
  color: var(--pg-3-5);
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 15.5px;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul { padding-left: 22px; margin-bottom: 12px; }
.legal-card ul li {
  line-height: 1.7;
  margin-bottom: 6px;
  color: var(--pg-3-5);
  font-weight: 500;
  font-size: 15.5px;
}
.legal-card strong { color: var(--purple); font-weight: 700; }
.legal-card a:not(.legal-cta) {
  color: var(--ray-active);
  font-weight: 700;
}
.legal-card a:not(.legal-cta):hover { text-decoration: underline; }

.legal-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.legal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ray);
  color: var(--purple);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  transition: background .15s, transform .1s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(0, 210, 205, .25);
}
.legal-cta:hover { background: var(--ray-active); color: var(--purple); text-decoration: none; }
.legal-cta.secondary {
  background: #fff;
  color: var(--purple);
  border: 1.5px solid var(--pg-1);
  box-shadow: none;
}
.legal-cta.secondary:hover { background: var(--light-gray); color: var(--purple); }

.legal-cta-box {
  background: #e6faf9;
  border: 1px solid rgba(0,210,205,.25);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 20px 0;
  text-align: center;
}
.legal-cta-box p { margin-bottom: 14px; font-size: 15px; color: var(--purple); font-weight: 600; }

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}
.legal-link {
  color: var(--ray-active);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}
.legal-link:hover { text-decoration: underline; }

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.contact-side { display: flex; flex-direction: column; }
.contact-side .legal-card { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--purple);
  margin: 14px 0 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--pg-1);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  color: var(--purple);
  background: #fff;
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--ray); }
.contact-form textarea { min-height: 160px; resize: vertical; }
.form-help {
  font-size: 12px;
  color: var(--pg-3-5);
  margin: 12px 0;
}
.contact-form .legal-cta {
  width: 100%;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .legal-container { padding: 40px 20px 60px; }
  .legal-card { padding: 22px 22px; border-radius: 12px; }
  .legal-cta-row { flex-direction: column; }
  .legal-cta { text-align: center; width: 100%; }
  .contact-layout { grid-template-columns: 1fr; }
}

/* ── SERVICES (icons) ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.service-item {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  transition: border-color .15s, transform .15s;
}
.service-item:hover {
  border-color: var(--ray);
  transform: translateY(-2px);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6faf9;
  color: var(--ray-active);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
}
.service-item h4 {
  font-size: 13px;
  color: var(--purple);
  font-weight: 800;
  line-height: 1.35;
}

/* ── STEPS ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ray);
  color: var(--purple);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 16px rgba(0, 210, 205, .25);
}
.step h3 { margin-bottom: 10px; font-size: 19px; color: var(--purple); }
.step p { color: var(--pg-3-5); font-size: 15px; line-height: 1.55; font-weight: 500; }

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 40px;
  padding: 12px 24px;
  margin-top: 18px;
  box-shadow: var(--shadow-card);
}
.reviews-rating .stars { color: #ff9b00; font-size: 18px; letter-spacing: 2px; }
.reviews-rating .score { font-size: 22px; font-weight: 800; color: var(--purple); }
.reviews-rating .count { font-size: 14px; color: var(--pg-3-5); font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 28px;
}
.review-stars {
  color: #ff9b00;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 15px;
  color: var(--purple);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ray);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}
.review-meta .name { color: var(--purple); font-weight: 800; font-size: 14px; }
.review-meta .loc { color: var(--pg-3-5); font-size: 13px; font-weight: 500; }

/* ── SEO TEXT BLOCK ──────────────────────────────────── */
.seo-block {
  max-width: 860px;
  margin: 0 auto;
}
.seo-block h2 {
  margin-bottom: 24px;
  color: var(--purple);
}
.seo-block p {
  color: var(--pg-3-5);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 500;
}
.seo-block h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 20px;
}

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: var(--pg-5);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,210,205,.08), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,210,205,.08), transparent 50%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(26px, 3.5vw, 38px);
}
.cta-banner p {
  color: var(--pg-1);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* ── TRUST BAND (after flag strip) ───────────────────── */
.trust-band {
  background: #fff;
  padding: 36px 0;
  border-bottom: 1px solid var(--divider);
}
.trust-band-inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trust-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e6faf9;
  color: var(--ray-active);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item-icon svg { width: 28px; height: 28px; }
.trust-item-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1.3;
}
.trust-item-sub {
  font-size: 13px;
  color: var(--pg-3-5);
  font-weight: 500;
}

/* ── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: var(--purple);
  padding: 48px 0;
  color: #fff;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,210,205,.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,210,205,.12), transparent 50%);
}
.stats-strip-inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-big .num {
  font-size: 38px;
  font-weight: 800;
  color: var(--ray);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.stat-big .lbl {
  font-size: 14px;
  color: var(--pg-1-5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── PAYMENT ICONS ───────────────────────────────────── */
.payment-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.payment-bar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── AIRPORT DETAIL PAGE ─────────────────────────────── */
.airport-hero {
  background: var(--light-gray);
  padding: 56px 0 48px;
}
.airport-hero-inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
}
.airport-hero-copy .breadcrumb {
  font-size: 13px;
  color: var(--pg-3-5);
  margin-bottom: 14px;
  font-weight: 600;
}
.airport-hero-copy .breadcrumb a { color: var(--pg-3-5); }
.airport-hero-copy .breadcrumb a:hover { color: var(--ray-active); }
.airport-hero-copy h1 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 12px;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.airport-hero-copy h1 img.flag-img {
  width: 36px;
  height: 24px;
  vertical-align: -4px;
  margin-right: 10px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(57,49,71,.2);
}
.airport-hero-copy .lead {
  color: var(--pg-3-5);
  font-size: 17px;
  margin-bottom: 24px;
  font-weight: 500;
}
.airport-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.airport-stat {
  background: #fff;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  border: 1px solid var(--divider);
}
.airport-stat .val {
  font-size: 17px;
  font-weight: 800;
  color: var(--purple);
}
.airport-stat .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--pg-3-5);
  margin-top: 3px;
  font-weight: 700;
}
.airport-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.airport-hero-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.airport-content {
  padding: 60px 0;
}
.airport-layout {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.airport-body h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--purple);
  margin-top: 36px;
  margin-bottom: 14px;
}
.airport-body h2:first-child { margin-top: 0; }
.airport-body p {
  color: var(--pg-3-5);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 500;
}

.airport-body ul.tips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 24px;
}
.airport-body ul.tips li {
  background: #e6faf9;
  border-left: 3px solid var(--ray);
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  color: var(--purple);
  font-weight: 500;
  display: flex;
  gap: 10px;
}
.airport-body ul.tips li::before {
  content: '✓';
  color: var(--ray-active);
  font-weight: 800;
  flex-shrink: 0;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 28px;
  font-size: 15px;
  border: 1px solid var(--divider);
  border-radius: 12px;
  overflow: hidden;
}
.price-table th {
  background: var(--light-gray);
  color: var(--purple);
  padding: 14px 18px;
  text-align: left;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--divider);
}
.price-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--divider);
  color: var(--purple);
  font-weight: 500;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table .price-val { color: var(--ray-active); font-weight: 800; }

/* sidebar booking box */
.booking-box {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.booking-box h3 {
  font-size: 19px;
  color: var(--purple);
  margin-bottom: 4px;
}
.booking-box .airport-name {
  color: var(--pg-3-5);
  font-size: 13px;
  margin-bottom: 16px;
  font-weight: 600;
}
.booking-box .price-from {
  font-size: 28px;
  font-weight: 800;
  color: var(--purple);
  margin: 16px 0;
}
.booking-box .price-from small {
  font-size: 13px;
  font-weight: 500;
  color: var(--pg-3-5);
}
.booking-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 16px 0 20px;
}
.booking-box ul li {
  color: var(--purple);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  gap: 10px;
}
.booking-box ul li::before {
  content: '✓';
  color: var(--ray-active);
  font-weight: 800;
}
.booking-box .btn { width: 100%; }
.booking-box .note {
  font-size: 12px;
  color: var(--pg-3-5);
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}

.quick-facts {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 20px;
}
.quick-facts h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--purple);
  margin-bottom: 14px;
  font-weight: 800;
}
.quick-facts dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-facts dl div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.quick-facts dt { color: var(--pg-3-5); font-weight: 500; }
.quick-facts dd { color: var(--purple); font-weight: 700; }

/* ── PAGE HERO (static pages) ────────────────────────── */
.page-hero {
  background: var(--light-gray);
  padding: 70px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--purple); margin-bottom: 12px; word-wrap: break-word; overflow-wrap: break-word; padding: 0 20px; }
.page-hero p { color: var(--pg-3-5); font-size: 17px; font-weight: 500; padding: 0 20px; }

.page-body {
  max-width: 780px;
  margin: 60px auto;
  padding: 0 32px;
}
.page-body h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--purple);
  margin-top: 32px;
  margin-bottom: 12px;
}
.page-body p { color: var(--pg-3-5); line-height: 1.75; font-weight: 500; }
.page-body ul { padding-left: 22px; color: var(--pg-3-5); }
.page-body ul li { margin-bottom: 8px; line-height: 1.75; font-weight: 500; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--purple);
  font-size: 16px;
}
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--ray-active);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid var(--divider); }
.faq-item p {
  padding: 18px 24px;
  color: var(--pg-3-5);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

/* contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact-form label {
  font-weight: 700;
  font-size: 14px;
  color: var(--purple);
  margin-bottom: 4px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--pg-1);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  color: var(--purple);
  transition: border-color .15s;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--ray); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--pg-5);
  color: var(--pg-1-5);
  padding: 60px 0 30px;
}
.footer-grid {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand a.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-brand img {
  height: 57px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.footer-brand p {
  color: var(--pg-2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--pg-2);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .15s;
  font-weight: 500;
}
.footer-col a:hover { color: var(--ray); }
.footer-bottom {
  max-width: 1216px;
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid var(--pg-4-5);
  text-align: center;
  font-size: 14px;
  color: var(--pg-2);
  font-weight: 500;
}
.footer-bottom a {
  color: var(--ray);
  font-weight: 700;
}
.footer-bottom a:hover { color: var(--ray-active); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .search-box {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .search-btn {
    grid-column: 1 / -1;
    padding: 16px;
  }
}

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps  { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .value-props { grid-template-columns: 1fr; gap: 20px; }
  .car-classes { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .airport-hero-inner { grid-template-columns: 1fr; }
  .airport-hero-img { max-width: 560px; }
  .airport-layout { grid-template-columns: 1fr; }
  .booking-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-features { gap: 12px 32px; }
  .hero-feature-divider { display: none; }
}

@media (max-width: 743px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .grid-4, .grid-3, .steps { grid-template-columns: 1fr; }
  .car-classes { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* Footer stays 2 columns on phones for better balance */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  /* Airport detail page — reduce padding so content fits viewport */
  .airport-hero-inner { padding: 0 20px; }
  .airport-layout { padding: 0 20px; gap: 32px; }
  /* Tables scroll horizontally instead of breaking the layout */
  .price-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .price-table th, .price-table td {
    padding: 10px 12px;
    font-size: 14px;
  }
  /* Breadcrumb can wrap on narrow screens */
  .breadcrumb { white-space: normal; word-break: break-word; }
  .hero {
    min-height: 540px;
    padding: 140px 0 60px;  /* shrink hero image area */
    background-size: cover;
  }
  .hero-inner { padding: 0 20px; }
  .hero h1 {
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 24px;
    white-space: nowrap;       /* keep each line unbroken */
  }
  .hero .hero-cta { margin-bottom: 40px; }
  /* Three stat lines: stack left-aligned with consistent indent */
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 80px;          /* push stats further down */
    padding-left: 24px;         /* straight indented left margin */
    margin-top: auto;
  }
  .hero-feature { width: 100%; }
  .hero-feature-divider { display: none; }
  /* Hide "We cover:" label on mobile */
  .flag-strip-label { display: none; }
  .section { padding: 60px 0; }
  .search-box {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }
  .search-wrap { margin-top: -70px; padding: 0 20px; }
  .airport-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-feature-value { font-size: 18px; }
  .hero-feature-icon { width: 28px; height: 28px; }
  .airport-content { padding: 40px 0; }
  /* Hide all sections horizontal overflow */
  .container, .section, .hero-inner { max-width: 100%; }
  /* Prevent header from causing horizontal scroll */
  .site-header { width: 100%; }
  .header-inner { padding: 20px 20px 0; }
}

/* Extra-narrow phones — make sure H1 still fits on one line */
@media (max-width: 380px) {
  .hero h1 { font-size: 23px; }
}
