﻿/* A2Z Airport Parking — PHP 1 transition design system
   Lighter blue primary · WhatsApp green accent · White bg · Cream cards */
:root {
  --a2z-cream-50: #FFFFFF;
  --a2z-cream-100: #f8fafc;
  --a2z-cream-200: #e6eef4;
  --a2z-cream-300: #d7e0e8;
  --a2z-ink-900: #0f172a;
  --a2z-ink-800: #2e1065;
  --a2z-ink-700: #334155;
  --a2z-ink-500: #334155;
  --a2z-ink-400: #8494a3;
  --a2z-gold: #0088f0;
  --a2z-gold-light: #33a3f5;
  --a2z-gold-dark: #0070c8;
  --a2z-void: #0f172a;
  --a2z-sky: #0088f0;
  --a2z-sky-dark: #0070c8;
  --a2z-primary: #0088f0;
  --a2z-card: #ffffff;
  --a2z-font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --a2z-header-h: 70px;
  --a2z-max: 1160px;
  --a2z-radius: 12px;
  --a2z-shadow: 0 2px 8px rgba(15, 36, 56, 0.05);
  --a2z-shadow-lg: 0 10px 28px rgba(15, 36, 56, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
  /* Hide native scrollbars; page still scrolls (wheel / trackpad / touch / keys) */
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  /* Stop hard left/right swipe from rubber-banding a white strip */
  overscroll-behavior-x: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar,
body.a2z-site::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
body.a2z-site {
  margin: 0;
  font-family: var(--a2z-font);
  background: var(--a2z-cream-100);
  color: var(--a2z-ink-900);
  -webkit-font-smoothing: antialiased;
  /* clip (not hidden) — overflow-x:hidden forces overflow-y:auto and breaks sticky scrub */
  overflow-x: clip;
  overscroll-behavior-x: none;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
img, video { max-width: 100%; height: auto; }
video.a2z-hero__video,
video.a2z-scroll-story__video {
  height: 100%;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }

.a2z-container {
  width: 100%;
  max-width: var(--a2z-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .a2z-container { padding: 0 32px; }
}

.gold-text {
  background: linear-gradient(135deg, var(--a2z-sky-dark) 0%, var(--a2z-sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  background: var(--a2z-gold);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: box-shadow 0.25s, transform 0.15s, background 0.2s;
}
.btn-gold:hover {
  background: var(--a2z-gold-dark);
  box-shadow: 0 10px 28px rgba(30, 190, 87, 0.45);
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1.5px solid var(--a2z-primary);
  border-radius: 12px;
  background: transparent;
  color: var(--a2z-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.btn-outline:hover { background: var(--a2z-primary); color: #fff; }

.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--a2z-sky-dark);
  margin: 0 0 12px;
}
.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--a2z-primary);
}

/* ── Header ── */
.a2z-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--a2z-header-h);
  transition: background 0.35s, box-shadow 0.35s;
}
.a2z-header.is-solid {
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--a2z-cream-300);
}
.a2z-header.is-transparent { background: transparent; }
.a2z-header__inner {
  height: var(--a2z-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.a2z-logo { height: 52px; width: auto; max-width: min(82vw, 280px); }
@media (min-width: 1024px) { .a2z-logo { height: 60px; max-width: 320px; } }

.a2z-nav { display: none; align-items: center; gap: 28px; }
@media (min-width: 1024px) { .a2z-nav { display: flex; } }
.a2z-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.a2z-header.is-transparent .a2z-nav a { color: rgba(255,255,255,0.82); }
.a2z-header.is-transparent .a2z-nav a:hover { color: #fff; }
.a2z-header.is-solid .a2z-nav a { color: var(--a2z-ink-700); }
.a2z-header.is-solid .a2z-nav a:hover { color: var(--a2z-ink-900); }

.a2z-header__actions { display: none; align-items: center; gap: 8px; }
@media (min-width: 1024px) { .a2z-header__actions { display: flex; } }
.a2z-header__link {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.a2z-header.is-transparent .a2z-header__link { color: rgba(255,255,255,0.82); }
.a2z-header.is-transparent .a2z-header__link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.a2z-header.is-solid .a2z-header__link { color: var(--a2z-ink-800); }
.a2z-header.is-solid .a2z-header__link:hover { background: var(--a2z-cream-200); }

.a2z-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}
@media (min-width: 1024px) { .a2z-burger { display: none; } }
.a2z-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.a2z-header.is-transparent .a2z-burger { color: #fff; }
.a2z-header.is-solid .a2z-burger { color: var(--a2z-ink-900); }

.a2z-mobile-menu {
  display: none;
  position: fixed;
  top: var(--a2z-header-h);
  left: 0; right: 0;
  z-index: 999;
  background: var(--a2z-cream-100);
  border-bottom: 1px solid var(--a2z-cream-300);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 20px 24px 24px;
}
.a2z-mobile-menu.is-open { display: block; }
.a2z-mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--a2z-cream-200);
  font-size: 15px;
  font-weight: 500;
  color: var(--a2z-ink-800);
}
.a2z-mobile-menu a:hover { color: var(--a2z-gold); }
.a2z-mobile-menu__ctas { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ── Hero ── */
.a2z-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--a2z-void);
  overflow: hidden;
  padding: calc(var(--a2z-header-h) + 40px) 0 80px;
  max-width: 100%;
}
.a2z-hero__bg {
  display: none;
}
.a2z-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Prevent intrinsic video width from expanding the page before/without layout CSS */
  pointer-events: none;
}
.a2z-hero__masks { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.a2z-hero__mask--h {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--a2z-void) 0%, transparent 28%, transparent 72%, var(--a2z-void) 100%);
}
.a2z-hero__mask--v {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--a2z-void) 0%, transparent 14%, transparent 66%, rgba(8,9,11,0.8) 82%, var(--a2z-void) 100%);
}
.a2z-hero__mask--radial {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 0%, rgba(8,9,11,0.27) 65%, rgba(8,9,11,0.6) 100%);
}
.a2z-hero__mask--tint {
  position: absolute; inset: 0;
  background: rgba(8,9,11,0.27);
}
.a2z-hero__scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.a2z-hero__scroll-cue span {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(200,145,58,0.7), transparent);
  animation: a2zScrollCue 1.6s ease-in-out infinite;
}
@keyframes a2zScrollCue {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(8px); opacity: 1; }
}
.a2z-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .a2z-hero__grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
}
.a2z-hero__headline {
  margin: 0 0 20px;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
}
.a2z-hero__sub {
  margin: 0 0 32px;
  max-width: 22rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.a2z-hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.a2z-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}
.a2z-hero__trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--a2z-gold);
  flex-shrink: 0;
}

.a2z-search-card {
  background: #fff;
  border-radius: var(--a2z-radius);
  box-shadow: var(--a2z-shadow-lg);
  padding: 32px 24px 24px;
  position: relative;
  overflow: visible;
  max-width: 100%;
  border: 1px solid var(--a2z-cream-300);
}
@media (min-width: 1024px) { .a2z-search-card { padding: 40px 28px 28px; } }
.a2z-search-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--a2z-ink-900);
  border: 1px solid var(--a2z-gold);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a2z-gold-light);
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}

.a2z-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid var(--a2z-cream-300);
  background: var(--a2z-cream-100);
}
.a2z-tab {
  flex: 1 1 calc(50% - 2px);
  min-height: 44px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--a2z-ink-700);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
@media (min-width: 380px) { .a2z-tab { flex: 1; font-size: 14px; } }
.a2z-tab.is-active {
  background: var(--a2z-ink-900);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.a2z-search-card__title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--a2z-ink-900);
}
.a2z-field { margin-bottom: 16px; }
.a2z-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--a2z-ink-500);
}
.a2z-field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .a2z-field-row { grid-template-columns: 1fr 1fr; }
}
.a2z-input, .a2z-select {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--a2z-cream-300);
  background: var(--a2z-cream-100);
  font-family: inherit;
  font-size: 14px;
  color: var(--a2z-ink-900);
  transition: border-color 0.2s;
}
.a2z-input:focus, .a2z-select:focus {
  outline: none;
  border-color: var(--a2z-gold);
}
.a2z-search-panel { display: none; }
.a2z-search-panel.is-active { display: block; }
.a2z-search-note {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--a2z-ink-500);
}
.a2z-search-secure {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--a2z-ink-700);
}
.a2z-search-card .a2z-search-note {
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--a2z-ink-500);
}

/* ── Trust bar ── */
.a2z-trustbar {
  background: #fff;
  border-bottom: 1px solid var(--a2z-cream-300);
}
.a2z-trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.a2z-trustbar__item {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border-right: 1px solid var(--a2z-cream-300);
  font-size: 12px;
  font-weight: 600;
  color: var(--a2z-ink-700);
}
.a2z-trustbar__item:last-child { border-right: none; }
.a2z-trustbar__icon {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--a2z-gold); flex-shrink: 0;
}

/* Section headers */
.a2z-section-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 16px; margin-bottom: 40px;
}
.a2z-section-head__link {
  display: none; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--a2z-ink-900);
  text-decoration: none; white-space: nowrap;
  transition: color 0.2s;
}
.a2z-section-head__link:hover { color: var(--a2z-gold); }
@media (min-width: 1024px) { .a2z-section-head__link { display: inline-flex; } }
.a2z-section-foot { display: none; margin-top: 24px; text-align: center; }
@media (max-width: 1023px) { .a2z-section-foot { display: block; } }
.a2z-section-foot .a2z-card__link { display: inline-flex; align-items: center; gap: 6px; }

/* ── Sections ── */
.a2z-section { padding: 96px 0; }
.a2z-section--cream { background: #fff; }
.a2z-section--white { background: #fff; }
.a2z-section--tan { background: var(--a2z-card); }

.a2z-cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .a2z-cards-3 { grid-template-columns: repeat(3, 1fr); } }
.a2z-card {
  border-radius: var(--a2z-radius);
  border: 1px solid var(--a2z-cream-300);
  background: var(--a2z-card);
  padding: 28px;
  box-shadow: var(--a2z-shadow);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.a2z-card:hover {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: var(--a2z-shadow-lg);
  transform: translateY(-2px);
}
.a2z-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.a2z-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--a2z-ink-500); }
.a2z-card__link { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--a2z-sky-dark); }

.a2z-airports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
}
@media (min-width: 640px) { .a2z-airports-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .a2z-airports-grid { grid-template-columns: repeat(6, 1fr); } }
.a2z-airport-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--a2z-cream-300);
  background: var(--a2z-cream-200);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.a2z-airport-card:hover {
  border-color: rgba(200,145,58,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.a2z-airport-card__thumb {
  position: relative;
  height: 84px;
  background: #1a1c24;
  overflow: hidden;
}
@media (min-width: 640px) { .a2z-airport-card__thumb { height: 96px; } }
.a2z-airport-card__thumb img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s ease-out;
}
.a2z-airport-card:hover .a2z-airport-card__thumb img { transform: scale(1.04); }
.a2z-airport-card__thumb-overlay,
.a2z-airport-card__thumb::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  display: block;
  background: linear-gradient(
    to top,
    rgba(12, 13, 18, 0.78) 0%,
    rgba(12, 13, 18, 0.38) 40%,
    rgba(12, 13, 18, 0.12) 65%,
    transparent 100%
  );
  pointer-events: none;
}
.a2z-airport-card__code {
  position: absolute; z-index: 2;
  bottom: 8px; left: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.85);
}
.a2z-airport-card__body {
  background: #fff;
  padding: 10px 12px;
}
.a2z-airport-card__name { margin: 0; font-size: 13px; font-weight: 700; line-height: 1.25; }
.a2z-airport-card__meta { margin: 2px 0 0; font-size: 11px; color: var(--a2z-ink-500); }
.a2z-airport-card__cta { margin: 4px 0 0; font-size: 12px; font-weight: 600; color: var(--a2z-gold); }

.a2z-airport-hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    radial-gradient(720px 280px at 18% 0%, rgba(0, 136, 240, 0.22), transparent 55%),
    linear-gradient(155deg, #0f172a 0%, #2e1065 52%, #4c1d95 100%);
  color: #fff;
  overflow: hidden;
}
.a2z-airport-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: radial-gradient(circle at 80% 20%, rgba(0, 136, 240, 0.35), transparent 50%);
}
.a2z-airport-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.a2z-airport-hero .kicker {
  color: #7dd3fc;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
}
.a2z-airport-hero h1 { margin: 8px 0 0; font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.15; }

.a2z-airport-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 960px) {
  .a2z-airport-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; }
  .a2z-airport-sidebar { position: sticky; top: 96px; }
}

.a2z-airport-prose { max-width: 720px; }
.a2z-airport-prose > p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--a2z-ink-600);
  margin: 0 0 16px;
}
.a2z-airport-locality {
  margin: 0 0 32px;
  padding: 16px 0 16px 16px;
  border-left: 3px solid var(--a2z-primary, #0088f0);
  font-size: 15px;
  line-height: 1.65;
  color: var(--a2z-ink-600);
  font-style: normal;
}
.a2z-airport-section { margin-bottom: 32px; }
.a2z-airport-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--a2z-ink-900);
}
.a2z-airport-section p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--a2z-ink-600);
}
.a2z-airport-muted { font-size: 14px; color: var(--a2z-ink-500); margin: 0 0 16px; }

.a2z-vendor-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.a2z-vendor-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--a2z-cream-300);
  border-radius: 12px;
  background: #fff;
}
.a2z-vendor-list__name { font-size: 15px; font-weight: 600; color: var(--a2z-ink-900); }
.a2z-vendor-list__type { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--a2z-ink-500); }

.a2z-faq-stack { display: grid; gap: 8px; }
.a2z-airport-others { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--a2z-cream-300); }
.a2z-airport-others h2 { font-size: 18px; margin: 0 0 12px; }
.a2z-airport-others ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 16px; }
.a2z-airport-others a { font-size: 14px; font-weight: 600; color: var(--a2z-primary, #0088f0); }

.a2z-search-card--inline { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.a2z-blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 960px) {
  .a2z-blog-layout { grid-template-columns: minmax(0, 1fr) 300px; }
}
.a2z-blog-prose h2 { margin: 28px 0 12px; font-size: 22px; }
.a2z-blog-prose h3 { margin: 20px 0 8px; font-size: 18px; }
.a2z-blog-prose ul { margin: 0 0 16px 20px; color: var(--a2z-ink-600); }
.a2z-blog-prose li { margin-bottom: 6px; line-height: 1.6; }
.a2z-blog-cta {
  margin-top: 32px;
  padding: 24px;
  border-radius: 16px;
  background: var(--a2z-ink-900);
  color: #fff;
  text-align: center;
}
.a2z-blog-cta p { margin: 0 0 12px; font-size: 14px; color: rgba(255,255,255,0.8); }
.a2z-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .a2z-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .a2z-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.a2z-blog-card__meta { font-size: 12px; color: var(--a2z-ink-500); margin: 0 0 8px; }
.a2z-blog-card__title { margin: 0 0 8px; font-size: 18px; line-height: 1.35; }
.a2z-blog-card__title a { color: var(--a2z-ink-900); text-decoration: none; }
.a2z-blog-card__title a:hover { color: var(--a2z-gold); }
.a2z-blog-card__desc { font-size: 14px; line-height: 1.55; color: var(--a2z-ink-500); margin: 0 0 12px; }

.a2z-airports-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 640px) { .a2z-airports-hub-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .a2z-airports-hub-grid { grid-template-columns: repeat(4, 1fr); } }

.a2z-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .a2z-features { grid-template-columns: 1fr 1fr; } }
.a2z-feature {
  background: #fff;
  border: 1px solid var(--a2z-cream-300);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.a2z-feature--icon:hover {
  border-color: rgba(200,145,58,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.a2z-feature__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--a2z-cream-100);
  border: 1px solid var(--a2z-cream-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--a2z-gold);
  margin-bottom: 12px;
}
.a2z-feature h4 { margin: 0 0 4px; font-size: 13px; font-weight: 700; line-height: 1.35; }
.a2z-feature p { margin: 0; font-size: 12px; color: #9395a5; line-height: 1.5; }
.a2z-why-a2z__intro {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--a2z-ink-500);
  max-width: 24rem;
}

.a2z-reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .a2z-reviews-layout { grid-template-columns: 1fr 3fr; gap: 56px; }
}
.a2z-reviews-intro .section-title { margin-bottom: 24px; }
.a2z-trustpilot {
  display: block;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--a2z-cream-300);
  background: var(--a2z-cream-100);
  text-decoration: none;
  transition: border-color 0.25s;
}
.a2z-trustpilot:hover { border-color: #00B67A; }
.a2z-trustpilot__brand {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #00B67A;
  margin-bottom: 10px;
}
.a2z-trustpilot__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.a2z-trustpilot__star-box {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #00B67A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.a2z-trustpilot__score {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--a2z-ink-900);
}
.a2z-trustpilot__score small { font-size: 13px; font-weight: 400; color: var(--a2z-ink-500); }
.a2z-trustpilot__meta { display: block; margin-top: 4px; font-size: 11px; color: var(--a2z-ink-500); }

.a2z-stars {
  display: flex;
  gap: 2px;
}
.a2z-stars__item { color: #00B67A; display: inline-flex; }

.a2z-reviews-carousel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  max-width: 100%;
}
.a2z-reviews-carousel__controls {
  display: none;
}
@media (min-width: 768px) {
  .a2z-reviews-carousel__controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 12px;
  }
}
.a2z-reviews-carousel__btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--a2z-cream-300);
  background: #fff;
  color: var(--a2z-ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.a2z-reviews-carousel__btn:hover {
  border-color: var(--a2z-ink-900);
  background: var(--a2z-cream-100);
}
.a2z-reviews-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.a2z-reviews-carousel__viewport {
  overflow: hidden;
  outline: none;
}
.a2z-reviews-carousel__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .a2z-reviews-carousel__track { transition: none; }
}
.a2z-reviews-carousel__slide {
  flex: 0 0 var(--a2z-review-slide-width, 100%);
  min-width: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.a2z-review {
  background: var(--a2z-cream-100);
  border: 1px solid var(--a2z-cream-300);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.a2z-review p {
  margin: 12px 0 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #353849;
  flex: 1;
}
.a2z-review footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.a2z-review cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--a2z-ink-900);
}
.a2z-review__date {
  display: block;
  font-size: 11px;
  color: var(--a2z-ink-500);
  margin-top: 2px;
}
.a2z-review__verified {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  color: #00B67A;
  border: 1px solid #00B67A;
  border-radius: 4px;
  padding: 2px 6px;
}
.a2z-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.a2z-reviews-dots__btn,
.a2z-reviews-dots span {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #d4d5dc;
  width: 8px;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}
.a2z-reviews-dots__btn::before,
.a2z-reviews-dots span::before {
  content: '';
  position: absolute;
  inset: -18px;
}
.a2z-reviews-dots__btn.is-active,
.a2z-reviews-dots span.is-active {
  width: 20px;
  background: var(--a2z-ink-900);
}

/* FAQ home — two column accordion */
.a2z-faq-home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
@media (min-width: 1024px) {
  .a2z-faq-home { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.a2z-faq-home__panel {
  background: #fff;
  border: 1px solid var(--a2z-cream-200);
  border-radius: 12px;
  overflow: hidden;
}
.a2z-faq-home__item {
  border-bottom: 1px solid var(--a2z-cream-200);
}
.a2z-faq-home__item:last-child { border-bottom: 0; }
.a2z-faq-home__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  appearance: none;
  font: inherit;
  color: inherit;
}
.a2z-faq-home__trigger:focus-visible {
  outline: 2px solid var(--a2z-gold);
  outline-offset: -2px;
}
.a2z-faq-home__question {
  font-size: 14px;
  font-weight: 600;
  color: var(--a2z-ink-900);
  line-height: 1.45;
  transition: color 0.2s;
}
.a2z-faq-home__trigger:hover .a2z-faq-home__question { color: var(--a2z-gold); }
.a2z-faq-home__item.is-open .a2z-faq-home__question { color: var(--a2z-gold-dark); }
.a2z-faq-home__toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: -2px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--a2z-cream-100);
  border: 1px solid var(--a2z-cream-300);
  color: var(--a2z-ink-400);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.a2z-faq-home__toggle::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.2s ease;
}
.a2z-faq-home__item.is-open .a2z-faq-home__toggle {
  background: var(--a2z-cream-100);
  border-color: var(--a2z-gold);
  color: var(--a2z-gold);
}
.a2z-faq-home__item.is-open .a2z-faq-home__toggle::after {
  transform: rotate(-135deg) translate(-1px, -1px);
}
.a2z-faq-home__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.a2z-faq-home__item.is-open .a2z-faq-home__answer {
  grid-template-rows: 1fr;
}
.a2z-faq-home__answer-inner {
  overflow: hidden;
  min-height: 0;
}
.a2z-faq-home__answer p {
  margin: 0;
  padding: 0 52px 18px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--a2z-ink-700);
}
.a2z-faq-home__answer a { color: var(--a2z-gold-dark); font-weight: 600; }
.a2z-faq-home__answer a:hover { color: var(--a2z-gold); }

.a2z-floating-dock {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 56;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.a2z-floating-dock__btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transition: transform 0.2s ease;
  text-decoration: none;
}
.a2z-floating-dock__btn:hover { transform: scale(1.05); }
.a2z-floating-dock__btn:active { transform: scale(0.95); }
.a2z-floating-dock__btn--faq {
  background: var(--a2z-navy-900);
  color: var(--a2z-gold);
  border: 1px solid rgba(200,145,58,0.3);
}
.a2z-floating-dock__book {
  pointer-events: auto;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--a2z-gold) 0%, var(--a2z-gold-dark) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 136, 240, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.a2z-floating-dock__book:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 136, 240, 0.42);
  color: #fff;
}
.a2z-floating-dock__book:active { transform: scale(0.98); }
@media (min-width: 768px) {
  .a2z-floating-dock__book { display: inline-flex; }
}
.a2z-floating-dock__btn--wa {
  background: #25d366;
  color: #fff;
}

.a2z-faq { max-width: 720px; margin: 32px auto 0; }
.a2z-faq details {
  border-bottom: 1px solid var(--a2z-cream-300);
  padding: 16px 0;
}
.a2z-faq summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--a2z-ink-900);
  list-style: none;
}
.a2z-faq summary::-webkit-details-marker { display: none; }
.a2z-faq p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: var(--a2z-ink-500); }

/* ── Footer ── */
.a2z-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #2A5F94 0%, #1A4B7A 50%, #0F2A45 100%);
  color: rgba(255,255,255,0.5);
}
.a2z-footer > * {
  position: relative;
  z-index: 1;
}
.a2z-footer::after {
  content: "A2Z";
  position: absolute;
  left: 50%;
  bottom: -0.12em;
  transform: translateX(-50%);
  z-index: 0;
  font-family: 'Manrope', var(--a2z-font, system-ui, sans-serif);
  font-weight: 800;
  font-size: clamp(6.5rem, 24vw, 24rem);
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.065);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.a2z-footer__inner { padding: 56px 0 0; }
.a2z-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .a2z-footer__grid { grid-template-columns: 3fr 2fr 2fr 5fr; gap: 40px 32px; }
}
.a2z-footer__tagline { margin: 0; max-width: 20rem; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.45); }
.a2z-footer__brand { grid-column: 1 / -1; }
@media (min-width: 1024px) { .a2z-footer__brand { grid-column: auto; } }
.a2z-footer__logo { height: 56px; width: auto; margin-bottom: 16px; }
.a2z-footer h3 {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.a2z-footer ul { list-style: none; margin: 0; padding: 0; }
.a2z-footer li { margin-bottom: 8px; }
.a2z-footer a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.a2z-footer a:hover { color: var(--a2z-gold); }
.a2z-footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* Airports — full-width row, multi-column, no scroll */
.a2z-footer__airports {
  grid-column: 1 / -1;
  padding: 32px 0 56px;
}
.a2z-footer__airports-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .a2z-footer__airports-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.a2z-footer__airports-head h3 { margin: 0; }
.a2z-footer__airport-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  max-height: none;
  overflow: visible;
}
@media (min-width: 640px) {
  .a2z-footer__airport-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .a2z-footer__airport-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .a2z-footer__airport-list { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px 28px; }
}
@media (min-width: 1280px) {
  .a2z-footer__airport-list { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}
.a2z-footer__airport-list li { margin-bottom: 0; }
.a2z-footer__airport-list a {
  display: block;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.a2z-footer__airports-all {
  display: inline-block;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(200,145,58,0.9) !important;
}
.a2z-footer__airports-all:hover { color: var(--a2z-gold) !important; text-decoration: underline; }

.a2z-footer__newsletter-col { grid-column: 1 / -1; }
@media (min-width: 1024px) { .a2z-footer__newsletter-col { grid-column: auto; } }
.a2z-footer__bottom {
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
.a2z-footer__powered { margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .a2z-footer__powered { margin: 0; } }
.a2z-powered-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.a2z-powered-by:hover { color: rgba(255,255,255,0.65); }
.a2z-powered-by__label { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.a2z-powered-by__logo { height: 22px; width: auto; }
.a2z-powered-by__gold { color: #c8913a; fill: #c8913a; stroke: #c8913a; }
.a2z-powered-by:hover .a2z-powered-by__gold { color: #c8913a; fill: #c8913a; stroke: #c8913a; }
.a2z-newsletter h3 { margin: 0 0 8px; }
.a2z-newsletter__lead { margin: 0 0 12px; font-size: 12px; line-height: 1.55; color: rgba(255,255,255,0.45); }
.a2z-newsletter__form { display: flex; flex-direction: column; gap: 10px; }
.a2z-newsletter__input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 10px 12px;
  font-size: 13px;
}
.a2z-newsletter__input::placeholder { color: rgba(255,255,255,0.35); }
.a2z-newsletter__consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255,255,255,0.4);
}
.a2z-newsletter__consent a { color: var(--a2z-gold); }
.a2z-newsletter__btn {
  align-self: flex-start;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(180deg, #D9A84F 0%, #C8913A 100%);
  color: var(--a2z-navy-900);
  cursor: pointer;
}
.a2z-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.a2z-faq-chatbot {
  position: fixed;
  bottom: 10.5rem;
  right: 20px;
  z-index: 57;
  pointer-events: auto;
  width: min(calc(100% - 2.5rem), 22rem);
  max-width: calc(100% - 2.5rem);
  max-height: min(70vh, 520px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #E0DBD2;
  background: #FAF8F5;
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}
/* display:flex above overrides the [hidden] UA rule — keep closed panel fully gone */
.a2z-faq-chatbot[hidden] {
  display: none !important;
}
.a2z-faq-chatbot__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #1A1D2B;
  color: #fff;
}
.a2z-faq-chatbot__title { font-size: 13px; font-weight: 700; }
.a2z-faq-chatbot__close {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.a2z-faq-chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
}
.a2z-faq-chatbot__bubble {
  border-radius: 12px;
  padding: 10px 12px;
}
.a2z-faq-chatbot__bubble--user {
  margin-left: 24px;
  background: #1A1D2B;
  color: #fff;
}
.a2z-faq-chatbot__bubble--assistant {
  margin-right: 16px;
  background: #fff;
  border: 1px solid #E8E4DE;
  color: #4A4D5C;
}
.a2z-faq-chatbot__bubble a { color: var(--a2z-gold-dark); font-weight: 600; }
.a2z-faq-chatbot__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  border-top: 1px solid #E0DBD2;
  background: #fff;
}
.a2z-faq-chatbot__chip {
  border: 1px solid #E0DBD2;
  background: #F8F5F0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #1A1D2B;
  cursor: pointer;
}
.a2z-faq-chatbot__form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #E0DBD2;
  background: #F8F5F0;
}
.a2z-faq-chatbot__form input {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  border: 1px solid #E0DBD2;
  padding: 10px 12px;
  font-size: 13px;
}
.a2z-faq-chatbot__form button {
  width: 40px;
  border: none;
  border-radius: 12px;
  background: #1A1D2B;
  color: var(--a2z-gold);
  cursor: pointer;
}
.a2z-faq-chatbot__foot {
  margin: 0;
  padding: 0 16px 12px;
  font-size: 10px;
  text-align: center;
  color: #9395A5;
}
.a2z-faq-chatbot__foot a { color: var(--a2z-gold); font-weight: 600; }
.a2z-cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  border-top: 1px solid var(--a2z-cream-300);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 -8px 32px rgba(26,29,43,0.08);
}
.a2z-cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}
@media (min-width: 640px) {
  .a2z-cookie-banner__inner { flex-direction: row; align-items: center; }
}
.a2z-cookie-banner__text {
  flex: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--a2z-ink-500);
}
.a2z-cookie-banner__text a { font-weight: 600; color: var(--a2z-ink-800); }
.a2z-cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.a2z-cookie-banner__btn {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.a2z-cookie-banner__btn--ghost {
  border: 1px solid var(--a2z-cream-300);
  background: #fff;
  color: var(--a2z-ink-700);
}
.a2z-cookie-banner__btn--gold {
  border: none;
  background: linear-gradient(180deg, #D9A84F 0%, #C8913A 100%);
  color: var(--a2z-navy-900);
}
.a2z-faq-home__item.is-open .a2z-faq-home__answer { grid-template-rows: 1fr; }
.a2z-faq-home__item.is-open .a2z-faq-home__toggle::before { transform: rotate(90deg); opacity: 0; }
.a2z-faq-home__item.is-open .a2z-faq-home__trigger { color: var(--a2z-ink-900); }

/* ── Static / hotels page ── */
.a2z-page-hero {
  background: linear-gradient(135deg, #1a1d2b 0%, #252837 100%);
  color: #fff;
  padding: calc(var(--a2z-header-h) + 48px) 0 64px;
}
.a2z-page-hero h1 { margin: 12px 0 16px; font-size: clamp(32px, 5vw, 44px); font-weight: 800; }
.a2z-page-hero p { margin: 0; max-width: 36rem; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.65); }

.a2z-hotels-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: -24px;
  padding-bottom: 64px;
}
@media (min-width: 1024px) { .a2z-hotels-layout { grid-template-columns: 280px 1fr; } }
.a2z-hotels-filters {
  background: #fff;
  border: 1px solid var(--a2z-cream-300);
  border-radius: 16px;
  padding: 24px;
  height: fit-content;
}
.a2z-coming-soon-banner {
  background: var(--a2z-cream-100);
  border: 1px solid rgba(200, 145, 58, 0.35);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--a2z-ink-600);
}
.a2z-coming-soon-banner strong { color: var(--a2z-ink-900); }
.a2z-hotel-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--a2z-cream-300);
  background: #fff;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .a2z-hotel-card { flex-direction: row; } }
.a2z-hotel-card__img {
  min-height: 200px;
  background: linear-gradient(135deg, #353849, #1a1d2b);
  flex: 0 0 40%;
}
.a2z-hotel-card__body { padding: 24px; flex: 1; }
.a2z-hotel-card__body h3 { margin: 0 0 8px; font-size: 20px; }
.a2z-header.is-solid .a2z-logo #logo-a-mark { stroke: none; }
.a2z-header.is-solid .a2z-logo text { fill: #0f2238; }

/* ── Booking flow ── */
.a2z-booking-page { padding: calc(var(--a2z-header-h) + 32px) 0 64px; }
.a2z-booking-hero {
  padding: calc(var(--a2z-header-h) + 32px) 0 24px;
  background: linear-gradient(135deg, #1a1d2b 0%, #252837 100%);
  color: #fff;
}
.a2z-booking-hero h1 { margin: 8px 0; font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
.a2z-booking-hero p { margin: 0; color: rgba(255,255,255,0.65); font-size: 15px; }
.a2z-booking-layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .a2z-booking-layout { grid-template-columns: 1fr 340px; } }
.a2z-panel { background: #fff; border: 1px solid var(--a2z-cream-300); border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.a2z-panel h2, .a2z-panel h3 { margin: 0 0 16px; font-size: 18px; font-weight: 700; }
.a2z-form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) {
  .a2z-form-grid--2 { grid-template-columns: 1fr 1fr; }
  .a2z-form-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .a2z-form-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.a2z-radio-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 16px; }
.a2z-product-grid { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: stretch; }
@media (min-width: 640px) { .a2z-product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .a2z-product-grid { grid-template-columns: repeat(3, 1fr); } }
.a2z-product-card {
  background: var(--a2z-card);
  border: 1px solid var(--a2z-cream-300);
  border-radius: var(--a2z-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--a2z-shadow);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.a2z-product-card:hover { border-color: rgba(37, 211, 102, 0.45); box-shadow: var(--a2z-shadow-lg); transform: translateY(-2px); }
.a2z-product-card__img { height: 100px; flex: 0 0 100px; background: var(--a2z-cream-200); display: flex; align-items: center; justify-content: center; padding: 10px; position: relative; }
.a2z-product-card__img img { max-height: 72px; max-width: 100%; object-fit: contain; }
.a2z-product-card__badge { position: absolute; top: 8px; left: 8px; background: var(--a2z-ink-900); color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; padding: 3px 8px; border-radius: 999px; }
.a2z-product-card__body {
  padding: 14px 16px 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.a2z-product-card__main { flex: 0 0 auto; }
.a2z-product-card__grow { flex: 1 1 auto; min-height: 1px; }
.a2z-product-card__footer {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--a2z-cream-200);
}
.a2z-product-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--a2z-ink-900);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
}
.a2z-product-card__title-sub { display: block; font-size: 12px; font-weight: 600; color: var(--a2z-ink-500); margin-top: 2px; }
.a2z-product-card__review-slot {
  flex: 0 0 auto;
  min-height: 40px;
  margin-bottom: 6px;
}
.a2z-product-card__review-slot.is-empty {
  visibility: hidden;
}
.a2z-product-card__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  margin: 0;
  min-height: 18px;
  font-size: 12px;
  color: var(--a2z-ink-500);
  flex-shrink: 0;
}
.a2z-product-card__rating-score strong { color: var(--a2z-ink-900); font-weight: 700; }
.a2z-product-card__rating-count { color: var(--a2z-ink-500); }
.a2z-product-card__quote {
  margin: 0;
  min-height: 1.35em;
  font-size: 12px;
  line-height: 1.35;
  color: var(--a2z-ink-500);
  font-style: italic;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  flex-shrink: 0;
}
.a2z-product-card__quote-author {
  font-style: normal;
  color: var(--a2z-ink-400);
  font-size: 11px;
}
.a2z-product-card__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 0 0 auto;
  height: 51px;
  overflow: hidden;
}
.a2z-product-card__highlights li {
  position: relative;
  padding-left: 11px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--a2z-ink-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.a2z-product-card__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--a2z-gold);
  transform: translateY(-50%);
}
.a2z-product-card__highlights li.is-placeholder {
  visibility: hidden;
}
.a2z-product-card__highlights.is-empty {
  visibility: hidden;
}
.a2z-product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  min-height: 28px;
}
.a2z-product-card__price { font-size: 24px; font-weight: 800; line-height: 1; color: var(--a2z-ink-900); margin: 0; }
.a2z-product-card__price-label { font-size: 12px; font-weight: 500; color: var(--a2z-ink-500); }
.a2z-product-card__discount { font-size: 11px; color: var(--a2z-gold-dark); margin: 0 0 8px; min-height: 14px; }
.a2z-product-card__discount.is-empty { visibility: hidden; }
.a2z-product-card__form { margin: 0; }
.a2z-product-card__cta { width: 100%; min-height: 44px; }
.a2z-results-toolbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.a2z-results-toolbar__count {
  margin: 0;
  font-size: 14px;
  color: var(--a2z-ink-500);
}
.a2z-results-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.a2z-results-sort__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--a2z-ink-700);
  white-space: nowrap;
  margin: 0;
}
.a2z-results-sort__select {
  box-sizing: border-box;
  width: 10.5rem;
  max-width: 10.5rem;
  min-width: 0;
  flex: 0 0 auto;
  margin: 0;
  padding: 8px 36px 8px 12px;
  border: 1px solid var(--a2z-cream-300);
  border-radius: 10px;
  background-color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--a2z-ink-900);
  line-height: 1.3;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23353849' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.a2z-results-sort__select:focus {
  outline: none;
  border-color: var(--a2z-gold);
  box-shadow: 0 0 0 3px rgba(200, 145, 58, 0.15);
}
.a2z-results-sort__btn {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--a2z-ink-700);
  background: #fff;
  border: 1px solid var(--a2z-cream-300);
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.a2z-results-sort__btn:hover {
  border-color: var(--a2z-gold);
  color: var(--a2z-ink-900);
}
.a2z-results-sort__btn.is-active {
  background: var(--a2z-ink-900);
  border-color: var(--a2z-ink-900);
  color: #fff;
}
.a2z-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  line-height: 1;
}
.a2z-stars__icon { font-size: 14px; letter-spacing: -1px; }
.a2z-stars__icon--full { color: var(--a2z-gold); }
.a2z-stars__icon--half {
  color: var(--a2z-gold);
  opacity: 0.45;
}
.a2z-stars__icon--empty { color: var(--a2z-cream-300); }
.a2z-sidebar { position: sticky; top: calc(var(--a2z-header-h) + 16px); }
.a2z-summary { background: #fff; border: 1px solid var(--a2z-cream-300); border-radius: 16px; padding: 20px; }
.a2z-summary__logo { max-height: 72px; max-width: 100%; margin: 0 auto 12px; display: block; }
.a2z-summary ul { list-style: none; margin: 0; padding: 0; }
.a2z-summary li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--a2z-cream-200); font-size: 13px; }
.a2z-summary__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; font-weight: 700; }
.a2z-summary__total span:last-child { font-size: 24px; }
.a2z-crosssell { margin-top: 16px; background: linear-gradient(135deg, #1a1d2b, #353849); color: #fff; border-radius: 16px; padding: 20px; }
.a2z-optional { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--a2z-cream-200); }
.a2z-stripe-field { min-height: 48px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--a2z-cream-300); background: var(--a2z-cream-100); }
.a2z-alert { border-radius: 12px; padding: 12px 14px; font-size: 14px; margin-top: 12px; }
.a2z-alert--info { background: #eef6ff; color: #1e4f7a; border: 1px solid #cfe4ff; }
.a2z-alert--success { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
.a2z-alert--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.a2z-alert--warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* DVLA Find vehicle — booking checkout */
.a2z-vehicle-block { margin-bottom: 16px; }
.a2z-dvla-lookup__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: end;
}
@media (min-width: 640px) {
  .a2z-dvla-lookup__row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}
.a2z-dvla-lookup__actions {
  display: flex;
  align-items: flex-end;
  padding-bottom: 14px;
}
.a2z-dvla-lookup__actions .a2z-dvla-find {
  min-height: 48px;
  white-space: nowrap;
}
.a2z-dvla-status {
  min-height: 1.25em;
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--a2z-ink-500, #5b5f73);
}
.a2z-dvla-error {
  margin-top: 8px;
}
.a2z-dvla-error:focus {
  outline: 2px solid var(--a2z-green-600, #0b925e);
  outline-offset: 2px;
}
.a2z-dvla-result {
  margin-top: 12px;
}
.a2z-dvla-result:focus {
  outline: 2px solid var(--a2z-green-600, #0b925e);
  outline-offset: 2px;
}
.a2z-dvla-result__card {
  background: #f8faf8;
  border: 1px solid #d8e5dc;
  border-radius: 12px;
  padding: 14px 16px;
}
.a2z-dvla-result__reg {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--a2z-navy-900, #1a1d2b);
}
.a2z-dvla-result__meta {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--a2z-ink-700, #353849);
}
.a2z-dvla-result__fuel {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--a2z-ink-500, #5b5f73);
}
.a2z-dvla-result__note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--a2z-ink-500, #5b5f73);
}
.a2z-dvla-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--a2z-navy-900, #1a1d2b);
  cursor: pointer;
}
.a2z-dvla-manual-link {
  display: inline-block;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--a2z-ink-500, #5b5f73);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.a2z-dvla-manual-link:hover,
.a2z-dvla-manual-link:focus-visible {
  color: var(--a2z-navy-900, #1a1d2b);
}
.a2z-dvla-fallback-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--a2z-ink-500, #5b5f73);
}
.a2z-dvla-fallback-hint .a2z-dvla-manual-link {
  margin-top: 0;
  margin-right: 4px;
}
.a2z-vehicle-block.is-dvla-pending-confirm .a2z-vehicle-manual .a2z-vehicle-make,
.a2z-vehicle-block.is-dvla-pending-confirm .a2z-vehicle-manual .a2z-vehicle-colour,
.a2z-vehicle-block.is-dvla-confirmed .a2z-vehicle-manual .a2z-vehicle-make,
.a2z-vehicle-block.is-dvla-confirmed .a2z-vehicle-manual .a2z-vehicle-colour {
  background: #f3f4f6;
}
.a2z-promo-row { display: flex; gap: 8px; margin-top: 12px; }
.a2z-promo-row .a2z-input { flex: 1; }
.a2z-empty { text-align: center; padding: 48px 24px; background: #fff; border: 1px solid var(--a2z-cream-300); border-radius: 16px; }

/* Customer dashboard */
.a2z-dash-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }
.a2z-dash-sidebar { position: sticky; top: 96px; }
.a2z-dash-nav { background: #fff; border: 1px solid var(--a2z-cream-300); border-radius: 16px; padding: 20px; }
.a2z-dash-nav__welcome { font-size: 13px; color: var(--a2z-ink-500); margin: 0 0 16px; line-height: 1.5; }
.a2z-dash-nav ul { list-style: none; margin: 0; padding: 0; }
.a2z-dash-nav li + li { margin-top: 4px; }
.a2z-dash-nav a { display: block; padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--a2z-ink-700); text-decoration: none; }
.a2z-dash-nav a:hover { background: var(--a2z-cream-100); }
.a2z-dash-nav a.is-active { background: var(--a2z-navy-900); color: #fff; }
.a2z-dash-nav__logout { color: #b91c1c !important; }
.a2z-dash-main { min-width: 0; }
.a2z-table-wrap { overflow-x: auto; }
.a2z-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.a2z-table th, .a2z-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--a2z-cream-200); white-space: nowrap; }
.a2z-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--a2z-ink-500); background: var(--a2z-cream-50); }
.a2z-table__actions { display: flex; gap: 8px; align-items: center; }
.a2z-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.a2z-badge--success { background: #ecfdf3; color: #166534; }
.a2z-badge--danger { background: #fef2f2; color: #991b1b; }
.a2z-badge--muted { background: var(--a2z-cream-100); color: var(--a2z-ink-500); }
.btn-sm { min-height: 34px; padding: 6px 12px; font-size: 12px; }
.a2z-dropdown { position: relative; }
.a2z-dropdown__menu { display: none; position: absolute; right: 0; top: calc(100% + 4px); min-width: 180px; background: #fff; border: 1px solid var(--a2z-cream-300); border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 20; padding: 6px; }
.a2z-dropdown__menu.is-open { display: block; }
.a2z-dropdown__menu a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 13px; color: var(--a2z-ink-700); text-decoration: none; white-space: nowrap; }
.a2z-dropdown__menu a:hover { background: var(--a2z-cream-100); }
.a2z-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.a2z-modal[hidden] { display: none; }
.a2z-modal__dialog { background: #fff; border-radius: 16px; max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 24px; position: relative; }
.a2z-modal__close { position: absolute; top: 12px; right: 16px; border: 0; background: none; font-size: 28px; line-height: 1; cursor: pointer; color: var(--a2z-ink-500); }

/* Legacy customer portal forms (amend/cancel/profile) */
.cuastomer-dashboard { padding: 32px 0 64px; background: var(--a2z-cream-50); }
.cuastomer-dashboard .container { max-width: var(--a2z-container); margin: 0 auto; padding: 0 20px; }
.cuastomer-dashboard .row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.cuastomer-dashboard [class*="col-"] { padding: 0 12px; box-sizing: border-box; width: 100%; }
@media (min-width: 768px) {
  .cuastomer-dashboard .col-md-2 { width: 16.666%; } .cuastomer-dashboard .col-md-3 { width: 25%; }
  .cuastomer-dashboard .col-md-4 { width: 33.333%; } .cuastomer-dashboard .col-md-6 { width: 50%; }
  .cuastomer-dashboard .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
  .cuastomer-dashboard .col-lg-5 { width: 41.666%; } .cuastomer-dashboard .col-lg-6 { width: 50%; }
  .cuastomer-dashboard .col-lg-7 { width: 58.333%; } .cuastomer-dashboard .col-lg-12 { width: 100%; }
}
@media (min-width: 1200px) {
  .cuastomer-dashboard .col-xl-2 { width: 16.666%; } .cuastomer-dashboard .col-xl-3 { width: 25%; }
  .cuastomer-dashboard .col-xl-4 { width: 33.333%; } .cuastomer-dashboard .col-xl-9 { width: 75%; }
  .cuastomer-dashboard .col-xl-12 { width: 100%; }
}
.cuastomer-dashboard .dashboard-sidebar { background: #fff; border: 1px solid var(--a2z-cream-300); border-radius: 16px; padding: 20px; margin-bottom: 24px; }
.cuastomer-dashboard .service-details__title h3 { margin: 0 0 12px; font-size: 18px; }
.cuastomer-dashboard .booking-one__form,
.cuastomer-dashboard form { background: #fff; border: 1px solid var(--a2z-cream-300); border-radius: 16px; padding: 24px; }
.cuastomer-dashboard label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--a2z-ink-700); }
.cuastomer-dashboard .form-control,
.cuastomer-dashboard input[type="text"],
.cuastomer-dashboard input[type="email"],
.cuastomer-dashboard input[type="password"],
.cuastomer-dashboard select,
.cuastomer-dashboard textarea { width: 100%; min-height: 42px; padding: 10px 12px; border: 1px solid var(--a2z-cream-300); border-radius: 10px; font-size: 14px; box-sizing: border-box; margin-bottom: 12px; }
.cuastomer-dashboard .contact-page__input-box { margin-bottom: 8px; }
.cuastomer-dashboard .btn, .cuastomer-dashboard button[type="submit"],
.cuastomer-dashboard .confirm-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 10px 18px; border-radius: 10px; border: 0; font-weight: 700; cursor: pointer; }
.cuastomer-dashboard .btn-warning, .cuastomer-dashboard .confirm-btn { background: var(--a2z-gold); color: var(--a2z-navy-900); }
.cuastomer-dashboard .alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; }
.cuastomer-dashboard .alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.cuastomer-dashboard .alert-success { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
.cuastomer-dashboard .alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.a2z-panel--legacy { padding: 24px; }
.a2z-panel--legacy .booking-one__form,
.a2z-panel--legacy form { border: 0; padding: 0; background: transparent; }
.cuastomer-dashboard .mb-2 { margin-bottom: 8px; } .cuastomer-dashboard .mb-3 { margin-bottom: 12px; } .cuastomer-dashboard .mb-4 { margin-bottom: 16px; }
@media (max-width: 900px) {
  .a2z-dash-layout { grid-template-columns: 1fr; }
  .a2z-dash-sidebar { position: static; }
}

/* Customer auth (login / signup) */
.a2z-auth-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 20px; padding: 4px; background: var(--a2z-cream-100); border-radius: 12px; }
.a2z-auth-tabs__btn { border: 0; background: transparent; padding: 10px 8px; border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--a2z-ink-500); cursor: pointer; }
.a2z-auth-tabs__btn.is-active { background: #fff; color: var(--a2z-navy-900); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.a2z-auth-panel__lead { font-size: 14px; color: var(--a2z-ink-500); margin: 0 0 16px; line-height: 1.5; }
.a2z-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.a2z-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--a2z-ink-600); margin: 12px 0; }
.a2z-check input { margin-top: 3px; }
.a2z-check a { color: var(--a2z-navy-900); }
@media (max-width: 520px) {
  .a2z-field-row { grid-template-columns: 1fr; }
}

/* Contact + support pages */
.a2z-contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.a2z-contact-form-wrap { min-width: 0; }
.a2z-contact-info { display: flex; flex-direction: column; gap: 16px; }
.a2z-contact-list { list-style: none; margin: 0; padding: 0; font-size: 14px; color: var(--a2z-ink-600); }
.a2z-contact-list li + li { margin-top: 8px; }
.a2z-contact-list a { color: var(--a2z-navy-900); font-weight: 600; text-decoration: none; }
.a2z-contact-list a:hover { color: var(--a2z-gold); }
.a2z-panel--muted { background: var(--a2z-cream-50); }
.a2z-panel h2 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--a2z-ink-500); margin: 0 0 8px; }
.a2z-faq-item { border-top: 1px solid var(--a2z-cream-200); padding: 10px 0; font-size: 14px; }
.a2z-faq-item summary { cursor: pointer; font-weight: 600; color: var(--a2z-ink-700); }
.a2z-faq-item p { margin: 8px 0 0; color: var(--a2z-ink-500); line-height: 1.5; }
.a2z-faq-page { max-width: 760px; }
.a2z-faq-page .a2z-faq-item { padding: 16px 20px; border: 1px solid var(--a2z-cream-200); border-radius: 8px; }
.a2z-legal-page { max-width: 820px; }
.a2z-legal-content { display: grid; gap: 16px; }
.a2z-legal-section h2 { font-size: 18px; font-weight: 700; color: var(--a2z-navy-900); margin: 0 0 12px; text-transform: none; letter-spacing: 0; }
.a2z-legal-subsection { margin-top: 16px; }
.a2z-legal-subsection h3 { font-size: 15px; font-weight: 700; color: var(--a2z-ink-800); margin: 0 0 8px; }
.a2z-legal-section p,
.a2z-legal-content p { font-size: 14px; line-height: 1.7; color: var(--a2z-ink-600); margin: 0 0 12px; }
.a2z-legal-section ul,
.a2z-legal-content ul { margin: 0 0 12px; padding-left: 20px; font-size: 14px; line-height: 1.7; color: var(--a2z-ink-600); }
.a2z-legal-section li + li { margin-top: 6px; }
.a2z-legal-content a { color: var(--a2z-navy-900); font-weight: 600; }
.a2z-legal-content--legacy { font-size: 14px; line-height: 1.7; color: var(--a2z-ink-600); }
.a2z-legal-content--legacy ul { padding-left: 20px; }
.a2z-legal-content--legacy a { color: var(--a2z-navy-900); font-weight: 600; }
.a2z-product-seo__grid { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: 24px; align-items: start; }
.a2z-about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.a2z-about-stat { text-align: center; padding: 24px 16px; }
.a2z-about-stat__value { font-size: 28px; font-weight: 800; color: var(--a2z-navy-900); margin: 0; }
.a2z-about-stat__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--a2z-ink-500); margin: 6px 0 0; font-weight: 600; }
@media (max-width: 900px) {
  .a2z-product-seo__grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .a2z-contact-layout { grid-template-columns: 1fr; }
  .a2z-contact-info { order: 2; }
}

/* ── Reveal animations ── */
.a2z-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.a2z-reveal--delay { transition-delay: 0.12s; }
.a2z-reveal--delay-1 { transition-delay: 0.06s; }
.a2z-reveal--delay-2 { transition-delay: 0.12s; }
.a2z-reveal--delay-3 { transition-delay: 0.18s; }
.a2z-reveal--delay-4 { transition-delay: 0.24s; }
.a2z-reveal--delay-5 { transition-delay: 0.30s; }
.a2z-reveal--from-left { transform: translateX(-20px); }
.a2z-reveal--from-left.is-visible { transform: none; }
.a2z-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .a2z-reveal { opacity: 1; transform: none; transition: none; }
  .a2z-hero__scroll-cue span { animation: none; }
}

/* ── Travel extras strip ── */
.a2z-travel-extras {
  padding: 48px 0;
  border-block: 1px solid var(--a2z-cream-300);
  background: var(--a2z-cream-100);
}
.a2z-travel-extras__intro { margin: 12px 0 0; max-width: 36rem; font-size: 14px; line-height: 1.6; color: var(--a2z-ink-500); }
.a2z-travel-extras__grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
@media (min-width: 640px) { .a2z-travel-extras__grid { grid-template-columns: 1fr 1fr; } }
.a2z-travel-tile {
  display: flex; flex-direction: column; height: 100%;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--a2z-cream-300);
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}
.a2z-travel-tile:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.a2z-travel-tile__img { aspect-ratio: 5/3; overflow: hidden; background: var(--a2z-cream-200); }
.a2z-travel-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.a2z-travel-tile:hover .a2z-travel-tile__img img { transform: scale(1.04); }
.a2z-travel-tile__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.a2z-travel-tile__body h3 { margin: 0; font-size: 15px; font-weight: 700; color: var(--a2z-ink-900); }
.a2z-travel-tile__body p { margin: 8px 0 12px; flex: 1; font-size: 13px; line-height: 1.55; color: var(--a2z-ink-500); }

/* ── Scroll story (how it works) — Next.js: /driveandfly.mp4 ── */
.a2z-scroll-story-wrap {
  background: #fff;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}
.a2z-scroll-story {
  height: 600vh;
  position: relative;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}
.a2z-scroll-story__sticky {
  position: sticky; top: 0; height: 100dvh; min-height: 0; overflow: hidden;
  background: #f5f1eb;
  max-width: 100%;
  width: 100%;
}
.a2z-scroll-story__video {
  position: absolute; inset: 0; width: 100%; max-width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .a2z-scroll-story__video { object-fit: contain; }
}
.a2z-scroll-story__blend-edge {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, #f8f5f0 0%, rgba(248,245,240,0.92) 6%, rgba(248,245,240,0) 18%, rgba(248,245,240,0) 82%, rgba(248,245,240,0.92) 94%, #f8f5f0 100%),
    linear-gradient(to bottom, #f8f5f0 0%, rgba(248,245,240,0.92) 7%, rgba(248,245,240,0) 20%, rgba(248,245,240,0) 80%, rgba(248,245,240,0.92) 93%, #f8f5f0 100%);
}
.a2z-scroll-story__spotlight {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.a2z-scroll-story__wash {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  /* Lighter wash so scrubbed driveandfly.mp4 stays visible (Next.js parity) */
  background: linear-gradient(to bottom, rgba(248,245,240,0.88) 0%, rgba(248,245,240,0.36) 15%, rgba(248,245,240,0.10) 30%, rgba(248,245,240,0) 47%, rgba(248,245,240,0) 58%, rgba(248,245,240,0.14) 74%, rgba(248,245,240,0.42) 88%, rgba(248,245,240,0.86) 100%);
  opacity: 0.17;
}
.a2z-scroll-story__overlay {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; min-height: 0;
  /* Slight nudge so chrome clears the sticky header and fits in one viewport */
  padding-top: 12px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.a2z-scroll-story__badge-wrap {
  display: flex; justify-content: center; flex-shrink: 0;
  padding: 16px 16px 0;
}
@media (min-width: 640px) { .a2z-scroll-story__badge-wrap { padding-top: 28px; } }
.a2z-scroll-story__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(200,145,58,0.3);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--a2z-gold);
}
@media (min-width: 640px) { .a2z-scroll-story__badge { font-size: 10px; letter-spacing: 0.22em; padding: 6px 16px; } }
.a2z-scroll-story__badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--a2z-gold); flex-shrink: 0;
}
.a2z-scroll-story__pill-wrap {
  display: flex; justify-content: center; flex-shrink: 0;
  margin-top: 8px; padding: 0 16px;
}
@media (min-width: 640px) { .a2z-scroll-story__pill-wrap { margin-top: 14px; } }
.a2z-scroll-story__pill {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px; padding: 4px 12px; border-radius: 999px; text-align: center;
  background: rgba(26,29,43,0.82); border: 1px solid rgba(255,255,255,0.22);
}
.a2z-scroll-story__pill-num {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  color: #f8f5f0; font-variant-numeric: tabular-nums;
}
.a2z-scroll-story__pill-title {
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(248,245,240,0.85);
}
@media (min-width: 640px) {
  .a2z-scroll-story__pill-num, .a2z-scroll-story__pill-title { font-size: 11px; letter-spacing: 0.08em; }
}
.a2z-scroll-story__center {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 10px 16px 12px; min-height: 0; overflow: hidden;
}
.a2z-scroll-story__big-num {
  display: block; font-weight: 900; line-height: 1; margin-bottom: 8px;
  font-size: clamp(48px, 18vw, 120px); letter-spacing: -0.04em;
  color: rgba(248,245,240,0.62);
  text-shadow: 0 8px 36px rgba(26,29,43,0.12);
  -webkit-text-stroke: 1.2px rgba(26,29,43,0.2);
  user-select: none;
}
@media (min-width: 640px) { .a2z-scroll-story__big-num { margin-bottom: 12px; } }
.a2z-scroll-story__card {
  width: 100%; max-width: 32rem; padding: 18px 22px; border-radius: 12px;
  background: #faf7f2; border: 1px solid rgba(200,145,58,0.28);
  box-shadow: 0 18px 44px rgba(26,29,43,0.12);
}
@media (min-width: 640px) { .a2z-scroll-story__card { padding: 22px 30px; border-radius: 16px; } }
.a2z-scroll-story__card-title {
  margin: 0 0 6px; font-weight: 700; color: var(--a2z-ink-900); line-height: 1.15;
  font-size: clamp(22px, 6vw, 44px); letter-spacing: -0.025em;
}
.a2z-scroll-story__card-desc {
  margin: 0; line-height: 1.55; color: #3a3d50;
  font-size: clamp(13px, 3.4vw, 16px);
}
.a2z-scroll-story__footer {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 0 12px 12px;
}
@media (min-width: 640px) { .a2z-scroll-story__footer { gap: 14px; padding-bottom: 18px; } }
.a2z-scroll-story__dots {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px;
}
.a2z-scroll-story__dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: rgba(26,29,43,0.18);
  transition: width 0.2s ease, background 0.2s ease;
}
.a2z-scroll-story__dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, #c8913a, #d9a84f);
}
.a2z-scroll-story__counter {
  margin-left: 4px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; color: #9395a5; font-variant-numeric: tabular-nums;
}
.a2z-scroll-story__step-labels {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 12px; max-width: 100%; padding: 0 4px;
}
@media (min-width: 768px) { .a2z-scroll-story__step-labels { gap: 12px 20px; } }
.a2z-scroll-story__label {
  border: 0; background: none; padding: 4px; cursor: pointer;
  font-size: 8px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #9395a5; font-weight: 500; opacity: 0.78;
  transition: color 0.5s, opacity 0.5s, font-weight 0.5s;
}
@media (min-width: 640px) { .a2z-scroll-story__label { font-size: 9px; letter-spacing: 0.1em; } }
@media (min-width: 768px) { .a2z-scroll-story__label { font-size: 10px; } }
@media (min-width: 1024px) { .a2z-scroll-story__label { font-size: 11px; } }
.a2z-scroll-story__label.is-active { color: var(--a2z-ink-900); font-weight: 700; opacity: 1; }
.a2z-scroll-story__progress {
  width: min(14rem, calc(100% - 2.5rem)); height: 2px;
  border-radius: 999px; overflow: hidden; background: rgba(0,0,0,0.1);
}
.a2z-scroll-story__bar-fill {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, #c8913a, #d9a84f);
  border-radius: 999px;
}
.a2z-scroll-story__controls {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px; width: 100%; max-width: 22rem; padding: 0 8px;
  flex-shrink: 0; margin: 8px auto 0;
}
.a2z-scroll-story__controls--top {
  position: relative; z-index: 12;
  margin-top: 8px; margin-bottom: 0;
}
@media (min-width: 640px) {
  .a2z-scroll-story__controls { gap: 10px; }
  .a2z-scroll-story__controls--top { margin-top: 12px; }
}
.a2z-scroll-story__ctrl {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; min-width: 40px; border-radius: 999px; cursor: pointer;
  transition: transform 0.15s, background 0.15s, opacity 0.15s;
}
@media (min-width: 640px) {
  .a2z-scroll-story__ctrl { height: 44px; min-width: 44px; }
}
.a2z-scroll-story__ctrl:active:not(:disabled) { transform: scale(0.98); }
.a2z-scroll-story__ctrl:disabled { opacity: 0.35; cursor: not-allowed; }
.a2z-scroll-story__ctrl--prev,
.a2z-scroll-story__ctrl--next {
  border: 1px solid rgba(0,0,0,0.1); background: rgba(255,255,255,0.9);
  color: var(--a2z-ink-900); box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.a2z-scroll-story__ctrl--prev:hover:not(:disabled),
.a2z-scroll-story__ctrl--next:hover:not(:disabled) { background: #fff; }
.a2z-scroll-story__ctrl--skip {
  min-width: 5.5rem; padding: 0 16px; border: 1px solid rgba(200,145,58,0.4);
  background: #faf7f2; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--a2z-ink-900);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.a2z-scroll-story__ctrl--next {
  border-color: rgba(200,145,58,0.35);
  background: linear-gradient(to bottom, #d9a84f, #c8913a);
}

/* ── Circular services gallery ── */
.a2z-services-layout {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}
@media (min-width: 1024px) {
  .a2z-services-layout { grid-template-columns: 1fr 2fr; gap: 48px; }
  .a2z-services-layout__copy { position: sticky; top: calc(var(--a2z-header-h) + 28px); }
}
.a2z-services-layout__intro {
  margin: 16px 0 0; max-width: 22rem; font-size: 14px;
  line-height: 1.6; color: var(--a2z-ink-500);
}
.a2z-services-gallery-wrap {
  min-width: 0; display: flex; flex-direction: column; align-items: center;
}
.a2z-services-gallery-foot {
  margin: 16px 0 0; text-align: center; font-size: 13px; color: var(--a2z-ink-500);
}
@media (min-width: 1024px) { .a2z-services-gallery-foot { margin-top: 24px; } }

.a2z-circular-gallery {
  position: relative; width: 100%; min-height: min(68vw, 380px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px 0; cursor: grab; touch-action: none;
  outline: none; perspective: 2000px;
  overflow: hidden;
  max-width: 100%;
}
@media (min-width: 640px) { .a2z-circular-gallery { min-height: 420px; padding: 20px 0; } }
.a2z-circular-gallery:active { cursor: grabbing; }
.a2z-circular-gallery:focus-visible {
  box-shadow: 0 0 0 2px var(--a2z-gold), 0 0 0 4px #fff;
  border-radius: 12px;
}
.a2z-circular-gallery__nav {
  position: absolute; top: 50%; z-index: 20;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--a2z-cream-300); background: var(--a2z-cream-100);
  color: var(--a2z-ink-900); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer; transform: translateY(-50%);
  transition: border-color 0.2s, background 0.2s;
}
@media (min-width: 640px) { .a2z-circular-gallery__nav { width: 48px; height: 48px; } }
.a2z-circular-gallery__nav:hover { border-color: var(--a2z-ink-900); background: #fff; }
.a2z-circular-gallery__nav--prev { left: 0; }
.a2z-circular-gallery__nav--next { right: 0; }
.a2z-circular-gallery__stage {
  position: relative; margin: 0 48px; width: calc(100% - 96px); max-width: 640px;
  height: min(72vw, 400px);
  box-sizing: border-box;
}
@media (min-width: 640px) { .a2z-circular-gallery__stage { margin: 0 56px; height: 420px; } }
@media (min-width: 768px) { .a2z-circular-gallery__stage { height: 440px; } }
.a2z-circular-gallery__ring {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
}
.a2z-circular-gallery__item {
  position: absolute; left: 50%; top: 50%;
  width: 240px; height: 320px;
  transition: opacity 0.3s linear;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
@media (min-width: 640px) { .a2z-circular-gallery__item { width: 256px; height: 340px; } }
.a2z-circular-gallery__card {
  display: block; position: relative; width: 100%; height: 100%;
  overflow: hidden; border-radius: 12px;
  border: 1px solid var(--a2z-cream-300); background: var(--a2z-cream-100);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  text-decoration: none; color: inherit;
  transition: box-shadow 0.3s;
}
.a2z-circular-gallery__card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.a2z-circular-gallery__card:focus-visible {
  outline: 2px solid var(--a2z-gold); outline-offset: 2px;
}
.a2z-circular-gallery__photo {
  position: absolute; inset: 0; overflow: hidden;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.a2z-circular-gallery__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.a2z-circular-gallery__caption {
  position: absolute; bottom: 0; left: 0; z-index: 1; width: 100%;
  padding: 16px 16px 16px; padding-top: 64px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
  color: #fff;
}
.a2z-circular-gallery__caption h3 {
  margin: 0; font-size: 18px; font-weight: 700; line-height: 1.35;
}
.a2z-circular-gallery__caption p {
  margin: 4px 0 0; font-size: 14px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.45;
}
.a2z-circular-gallery__credit {
  margin: 8px 0 0 !important; font-size: 12px !important; font-style: normal !important; color: rgba(255,255,255,0.6) !important;
}
.a2z-circular-gallery__cta {
  display: block; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--a2z-gold);
}

@media (prefers-reduced-motion: reduce) {
  /* Keep 600vh + sticky like Next.js so Prev/Next/scroll still advance steps.
     JS uses behavior:auto when reduced-motion is on. */
  .a2z-circular-gallery__item { transition: none; }
  .a2z-scroll-story__label { transition: none; }
  .a2z-scroll-story__dot { transition: none; }
}

/* ── Why A2Z with photo ── */
.a2z-why-a2z__grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 1024px) { .a2z-why-a2z__grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.a2z-why-a2z__photo {
  border-radius: 16px; overflow: hidden; height: 224px; margin-bottom: 32px;
  position: relative;
}
.a2z-why-a2z__photo img { width: 100%; height: 100%; object-fit: cover; }
.a2z-why-a2z__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
}
.a2z-features--grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .a2z-features--grid { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   PHP 1 — CX transition styles (brand tokens only)
   ═══════════════════════════════════════════════════════════════ */

/* Slim transition bar */
.a2z-php1-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 6px 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--a2z-primary);
  border-bottom: 1px solid rgba(56, 189, 248, 0.35);
}
body.a2z-php1 {
  --a2z-php1-bar-h: 28px;
  /* Content offsets that use --a2z-header-h include the slim bar */
  --a2z-header-h: calc(88px + var(--a2z-php1-bar-h));
}
body.a2z-php1 .a2z-header,
body.a2z-php1 .a2z-header__inner {
  height: 88px;
}
body.a2z-php1 .a2z-header {
  top: var(--a2z-php1-bar-h);
}
body.a2z-php1 .a2z-mobile-menu {
  top: calc(88px + var(--a2z-php1-bar-h));
}
body.a2z-php1 .a2z-airport-hero {
  padding-top: calc(88px + var(--a2z-php1-bar-h) + 32px);
}
@media (max-width: 767px) {
  body.a2z-php1 {
    padding-bottom: 72px; /* room for mobile contact bar */
  }
}

/* Larger homepage search card */
.a2z-search-card--xlarge {
  padding: 28px 22px 24px;
}
@media (min-width: 1024px) {
  .a2z-search-card--xlarge {
    padding: 48px 36px 36px;
  }
}
.a2z-search-card--xlarge .a2z-search-card__title {
  font-size: 26px;
}
.a2z-cx-optional {
  font-weight: 500;
  color: var(--a2z-ink-400);
  font-size: 12px;
}

/* Search loading overlay */
.a2z-search-loading {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(26, 29, 43, 0.72);
  backdrop-filter: blur(6px);
}
.a2z-search-loading[hidden] { display: none !important; }
html.a2z-search-loading-active,
html.a2z-search-loading-active body {
  overflow: hidden;
}
.a2z-search-loading__card {
  width: min(420px, 100%);
  padding: 32px 28px;
  border-radius: 16px;
  background: var(--a2z-cream-50);
  border: 1px solid var(--a2z-cream-300);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  text-align: center;
}
.a2z-search-loading__spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid var(--a2z-cream-300);
  border-top-color: var(--a2z-gold);
  animation: a2zSearchSpin 0.8s linear infinite;
}
@keyframes a2zSearchSpin {
  to { transform: rotate(360deg); }
}
.a2z-search-loading__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--a2z-ink-900);
}
.a2z-search-loading__sub {
  margin: 0;
  font-size: 13px;
  color: var(--a2z-ink-500);
  line-height: 1.5;
}
.a2z-cx-loading-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  border-radius: 16px;
  background: var(--a2z-cream-50);
  border: 1px solid var(--a2z-cream-300);
  text-align: center;
}

/* Filter chips */
.a2z-results-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}
.a2z-filter-chip {
  appearance: none;
  border: 1px solid var(--a2z-cream-300);
  background: var(--a2z-cream-50);
  color: var(--a2z-ink-700);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.a2z-filter-chip:hover {
  border-color: var(--a2z-gold);
  color: var(--a2z-ink-900);
}
.a2z-filter-chip.is-active {
  background: var(--a2z-gold);
  border-color: var(--a2z-gold);
  color: #fff;
}

/* Product meta list — gold = good, cream = warn */
.a2z-product-card__meta-list {
  list-style: none;
  margin: 10px 0 12px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.a2z-product-card__meta-list li {
  font-size: 12px;
  line-height: 1.4;
  color: var(--a2z-ink-700);
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--a2z-cream-100);
  border: 1px solid var(--a2z-cream-200);
}
.a2z-product-card__meta-list li strong {
  color: var(--a2z-ink-900);
  font-weight: 700;
}
.a2z-product-card__meta-list li.is-good {
  background: rgba(200, 145, 58, 0.12);
  border-color: rgba(200, 145, 58, 0.35);
  color: var(--a2z-ink-800);
}
.a2z-product-card__meta-list li.is-warn {
  background: var(--a2z-cream-200);
  border-color: var(--a2z-cream-300);
  color: var(--a2z-ink-700);
}

/* Recently viewed */
.a2z-recent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .a2z-recent-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .a2z-recent-grid { grid-template-columns: repeat(3, 1fr); }
}
.a2z-recent-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--a2z-cream-300);
}
.a2z-recent-card__img {
  flex: 0 0 96px;
  width: 96px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--a2z-cream-200);
}
.a2z-recent-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.a2z-recent-card__body { min-width: 0; }
.a2z-recent-card__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--a2z-ink-900);
  line-height: 1.3;
}
.a2z-recent-card__meta {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--a2z-ink-500);
}
.a2z-recent-card__price {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--a2z-ink-900);
  margin-bottom: 6px;
}
.a2z-recent-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--a2z-gold-dark);
  text-decoration: none;
}
.a2z-recent-card__link:hover { text-decoration: underline; }

/* Mobile sticky contact bar */
.a2z-mobile-contact {
  display: none;
}
@media (max-width: 767px) {
  .a2z-mobile-contact {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    background: #ffffff;
    border-top: 1px solid var(--a2z-cream-300);
    box-shadow: 0 -4px 20px rgba(15, 36, 56, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .a2z-mobile-contact__hours {
    margin: 0 0 6px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--a2z-ink-500);
  }
  .a2z-mobile-contact__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .a2z-mobile-contact__actions--three {
    grid-template-columns: repeat(3, 1fr);
  }
  .a2z-mobile-contact__actions--four {
    grid-template-columns: repeat(4, 1fr);
  }
  .a2z-mobile-contact__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 48px;
    padding: 8px 6px;
    border-radius: 12px;
    text-decoration: none;
    background: #fff;
    border: 1.5px solid var(--fl-blue, #0088f0);
    color: var(--fl-band, #4c1d95);
    font-size: 11px;
    font-weight: 700;
  }
  .a2z-mobile-contact__btn--book {
    background: var(--fl-blue, #0088f0);
    border-color: var(--fl-blue, #0088f0);
    color: #fff;
  }
  .a2z-mobile-contact__btn--wa {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
  }
  .a2z-mobile-contact__icon {
    display: flex;
    color: inherit;
  }
  .a2z-mobile-contact__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  /* Lift floating dock above sticky bar */
  .a2z-floating-dock {
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
  body.a2z-site {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

/* Deals strip */
.a2z-cx-deals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .a2z-cx-deals { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .a2z-cx-deals { grid-template-columns: repeat(5, 1fr); }
}
.a2z-cx-deal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--a2z-cream-300);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.a2z-cx-deal:hover {
  border-color: rgba(200, 145, 58, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.a2z-cx-deal__kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--a2z-gold-dark);
}
.a2z-cx-deal__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--a2z-ink-900);
  line-height: 1.25;
}
.a2z-cx-deal__copy {
  margin: 0;
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: var(--a2z-ink-500);
}
.a2z-cx-deal__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--a2z-gold-dark);
}

/* Rewards strip */
.a2z-cx-rewards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .a2z-cx-rewards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .a2z-cx-rewards { grid-template-columns: repeat(4, 1fr); }
}
.a2z-cx-reward {
  padding: 18px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--a2z-cream-300);
}
.a2z-cx-reward h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--a2z-ink-900);
}
.a2z-cx-reward p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--a2z-ink-500);
}

/* Contact quick strip */
.a2z-cx-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .a2z-cx-contact { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .a2z-cx-contact { grid-template-columns: repeat(4, 1fr); }
}
.a2z-cx-contact__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 14px;
  background: var(--a2z-cream-50);
  border: 1px solid var(--a2z-cream-300);
  text-decoration: none;
  color: inherit;
}
a.a2z-cx-contact__item:hover {
  border-color: var(--a2z-gold);
}
.a2z-cx-contact__item strong {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--a2z-gold-dark);
}
.a2z-cx-contact__item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--a2z-ink-900);
  word-break: break-word;
}

/* Airport journey guide */
.a2z-cx-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .a2z-cx-guide { grid-template-columns: 1fr 1fr; }
}
.a2z-cx-guide__item {
  padding: 16px;
  border-radius: 12px;
  background: var(--a2z-cream-50);
  border: 1px solid var(--a2z-cream-300);
}
.a2z-cx-guide__item h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--a2z-ink-900);
}
.a2z-cx-guide__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--a2z-ink-500);
}

/* Operator photos */
.a2z-cx-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .a2z-cx-photos { grid-template-columns: repeat(5, 1fr); }
}
.a2z-cx-photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--a2z-cream-200);
  border: 1px solid var(--a2z-cream-300);
}
.a2z-cx-photo img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .a2z-cx-photo img { height: 140px; }
}
.a2z-cx-photo figcaption {
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--a2z-ink-700);
  background: var(--a2z-cream-50);
}

/* Proposal / CX helper layouts */
.a2z-cx-banner {
  padding: calc(var(--a2z-header-h) + 48px) 0 40px;
  background: linear-gradient(160deg, var(--a2z-ink-900) 0%, var(--a2z-ink-800) 100%);
  color: #fff;
}
.a2z-cx-banner__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
}
.a2z-cx-banner__sub {
  margin: 0 0 20px;
  max-width: 40rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.a2z-cx-banner__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.a2z-cx-banner__ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.a2z-cx-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .a2z-cx-split { grid-template-columns: 1fr 1fr; align-items: start; }
}
.a2z-cx-checklist {
  margin: 16px 0 0;
  padding: 0 0 0 18px;
  color: var(--a2z-ink-700);
  font-size: 14px;
  line-height: 1.7;
}
.a2z-cx-flight-card__code {
  margin: 8px 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--a2z-ink-900);
}
.a2z-cx-flight-card__status {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--a2z-gold-dark);
}
.a2z-cx-placeholder {
  padding: 28px;
  border-radius: 14px;
  border: 1px dashed var(--a2z-cream-300);
  background: var(--a2z-cream-50);
  text-align: center;
}
.a2z-cx-placeholder p {
  margin: 0 0 16px;
  color: var(--a2z-ink-500);
}
.a2z-cx-faq { max-width: 720px; }
@media (prefers-reduced-motion: reduce) {
  .a2z-search-loading__spinner { animation: none; }
  .a2z-cx-deal { transition: none; }
}


/* ── PHP 1 design doc polish ── */
.a2z-btn-book {
  background: var(--a2z-gold) !important;
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
}
.a2z-btn-book:hover {
  background: var(--a2z-gold-dark) !important;
}
.a2z-search-card__badge {
  background: var(--a2z-primary);
  border-color: var(--a2z-sky);
  color: #fff;
}
.a2z-tab.is-active {
  background: var(--a2z-primary);
  color: #fff;
}
.a2z-hero__trust-dot { background: var(--a2z-gold); }
.a2z-section-head { margin-bottom: 48px; }
.a2z-cx-deal,
.a2z-cx-reward,
.a2z-cx-contact__item,
.a2z-cx-guide__item,
.a2z-recent-card {
  border-radius: var(--a2z-radius);
  box-shadow: var(--a2z-shadow);
  border-color: var(--a2z-cream-300);
  background: var(--a2z-card);
}
.a2z-cx-deal__kicker,
.a2z-cx-contact__item strong { color: var(--a2z-sky-dark); }
.a2z-cx-deal__cta { color: var(--a2z-gold-dark); }
.a2z-product-card__cta {
  background: var(--a2z-gold) !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}
.a2z-search-card {
  background: var(--a2z-card) !important;
}
body.a2z-site {
  background: #fff !important;
}

/* Hero promo — subtle non-blocking toast */
.a2z-hero-promo {
  position: fixed;
  left: 16px;
  bottom: 24px;
  z-index: 940;
  max-width: min(320px, calc(100vw - 32px));
  pointer-events: none;
}
.a2z-hero-promo[hidden] { display: none !important; }
.a2z-hero-promo__card {
  position: relative;
  pointer-events: auto;
  padding: 14px 38px 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(76, 29, 149, 0.14);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.a2z-hero-promo.is-visible .a2z-hero-promo__card {
  opacity: 1;
  transform: translateY(0);
}
.a2z-hero-promo__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--a2z-ink-500, #64748b);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a2z-hero-promo__close:hover { background: rgba(15, 23, 42, 0.06); }
.a2z-hero-promo__kicker {
  margin: 0 0 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--a2z-gold-dark, #0070c8);
}
.a2z-hero-promo__title {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--a2z-ink-900, #0f172a);
}
.a2z-hero-promo__cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--a2z-gold-dark, #0070c8);
  text-decoration: none;
}
.a2z-hero-promo__cta:hover { text-decoration: underline; }
@media (max-width: 767px) {
  .a2z-hero-promo {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }
  .a2z-hero-promo__card {
    padding: 12px 36px 12px 14px;
  }
  .a2z-hero-promo__title { font-size: 0.88rem; }
}
@media (prefers-reduced-motion: reduce) {
  .a2z-hero-promo__card {
    transition: none;
    opacity: 1;
    transform: none;
  }
}