/**
 * PHP 1 redesign — brand identity UI (sitewide).
 * Brand: Purple #4C1D95 · Cerulean #0088F0 · Navy #0F172A.
 * Green: savings / free cancellation / success / WhatsApp only.
 * Content, SEO markup and copy live in PHP — do not change here.
 */
:root {
  --a2z-background: #f8fafc;
  --a2z-surface: #ffffff;
  --a2z-surface-soft: #f0f5fa;
  --a2z-surface-warm: #faf8f5;

  --a2z-ink: #0f172a;
  --a2z-text: #0f172a;
  --a2z-muted: #334155;

  /* Structural / interactive — cerulean */
  --a2z-line: #0088f0;
  --a2z-line-soft: #e2e8f0;

  /* CTA — brand cerulean */
  --a2z-primary: #0088f0;
  --a2z-primary-hover: #0070c8;
  --a2z-primary-soft: #e6f4fe;

  --a2z-success: #0f7a56;
  --a2z-success-soft: #e7f5ef;

  --a2z-offer: #c45a2c;
  --a2z-warning: #9a5b00;
  --a2z-danger: #b42318;

  --a2z-border: #e2e8f0;
  --a2z-border-strong: #cbd5e1;

  --a2z-radius-sm: 8px;
  --a2z-radius-md: 12px;
  --a2z-radius-lg: 16px;

  --a2z-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --a2z-shadow-md: 0 10px 28px rgba(15, 23, 42, 0.08);

  --a2z-brand: #4c1d95;
  --a2z-brand-deep: #0f172a;
  --a2z-brand-mid: #2e1065;
  --a2z-brand-soft: var(--a2z-primary-soft);
  --a2z-accent: var(--a2z-primary);
  --a2z-accent-hover: var(--a2z-primary-hover);
  --a2z-accent-soft: var(--a2z-primary-soft);
  --a2z-accent-glow: rgba(0, 136, 240, 0.28);

  /* Trustpilot brand green — never remap to site cerulean */
  --a2z-trustpilot-green: #00b67a;

  --a2z-navy-950: var(--a2z-brand-deep);
  --a2z-navy-900: var(--a2z-ink);
  --a2z-navy-800: var(--a2z-brand-mid);
  --a2z-navy-700: #334155;
  --a2z-green-700: var(--a2z-success);
  --a2z-green-600: var(--a2z-success);
  --a2z-green-100: var(--a2z-success-soft);
  --a2z-cream: var(--a2z-background);
  --a2z-header-h: 70px;
  --a2z-util-h: 0px;
  --a2z-max: 1160px;
  --a2z-font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --a2z-space-section: clamp(52px, 7vw, 88px);

  --a2z-cream-50: var(--a2z-surface);
  --a2z-cream-100: var(--a2z-background);
  --a2z-cream-200: #e2e8f0;
  --a2z-cream-300: var(--a2z-border);
  --a2z-ink-900: var(--a2z-ink);
  --a2z-ink-800: var(--a2z-brand-mid);
  --a2z-ink-700: var(--a2z-navy-700);
  --a2z-ink-500: var(--a2z-muted);
  --a2z-ink-400: #8494a3;
  --a2z-gold: var(--a2z-primary);
  --a2z-gold-light: #33a3f5;
  --a2z-gold-dark: var(--a2z-primary-hover);
  --a2z-void: var(--a2z-brand-deep);
  --a2z-sky: var(--a2z-line);
  --a2z-sky-dark: #0070c8;
  --a2z-primary-legacy: var(--a2z-ink);
  --a2z-card: var(--a2z-surface);
  --a2z-shadow: var(--a2z-shadow-sm);
  --a2z-shadow-lg: var(--a2z-shadow-md);
}

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

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.a2z-site.a2z-php1 {
  margin: 0;
  font-family: var(--a2z-font);
  background: var(--a2z-background);
  color: var(--a2z-text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: clip;
}

body.a2z-php1.a2z-nav-open {
  overflow: hidden;
}

.a2z-container {
  width: 100%;
  max-width: var(--a2z-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .a2z-container { padding: 0 28px; }
}

.a2z-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--a2z-line);
}
.a2z-section-title,
.section-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.25;
  font-weight: 750;
  color: var(--a2z-ink);
  max-width: 22ch;
  letter-spacing: -0.015em;
}
.a2z-section-lead {
  margin: 14px 0 0;
  max-width: 38rem;
  color: var(--a2z-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.a2z-section {
  padding: var(--a2z-space-section) 0;
}
.a2z-section--cream { background: var(--a2z-cream); }
.a2z-section--soft { background: var(--a2z-surface-soft); }
.a2z-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.a2z-section-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}
.a2z-text-link,
.a2z-text-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--a2z-navy-800);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.a2z-text-link:hover,
.a2z-text-btn:hover { color: var(--a2z-green-700); }

/* Buttons — consistent system; accent reserved for primary CTAs */
.a2z-btn,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--a2z-radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease, border-color 0.18s ease;
}
.a2z-btn--primary,
.btn-gold {
  background: var(--a2z-primary);
  color: #fff;
  box-shadow: 0 4px 14px var(--a2z-accent-glow);
}
.a2z-btn--primary:hover,
.btn-gold:hover {
  background: var(--a2z-primary-hover);
  color: #fff;
  transform: none;
  box-shadow: 0 6px 18px var(--a2z-accent-glow);
}
.a2z-btn--primary:focus-visible,
.btn-gold:focus-visible,
.a2z-btn--ghost:focus-visible,
.a2z-btn-book:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(47, 122, 176, 0.45);
  outline-offset: 2px;
}
.a2z-btn--ghost,
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--a2z-border);
  color: var(--a2z-brand);
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--a2z-radius-sm);
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
}
.a2z-btn--ghost:hover,
.btn-outline:hover {
  border-color: var(--a2z-brand);
  background: var(--a2z-brand-soft);
  color: var(--a2z-brand-deep);
  transform: none;
  box-shadow: none;
}

/* Primary CTA — clear, not oversized / glowing */
.a2z-btn-book {
  min-height: 46px !important;
  padding: 11px 20px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  background: var(--a2z-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--a2z-radius-sm) !important;
  box-shadow: 0 4px 14px var(--a2z-accent-glow) !important;
  letter-spacing: 0.01em;
}
.a2z-btn-book:hover {
  background: var(--a2z-primary-hover) !important;
  color: #fff !important;
  transform: none;
  box-shadow: 0 6px 18px var(--a2z-accent-glow) !important;
}
.a2z-header.is-transparent .a2z-btn-book {
  box-shadow: 0 4px 14px var(--a2z-accent-glow) !important;
}

/* Preview bar */
.a2z-php1-bar {
  background: var(--a2z-navy-950);
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 4px 12px;
}

/* Utility bar */
.a2z-utilbar {
  background: var(--a2z-navy-950);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
}
.a2z-utilbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  min-height: var(--a2z-util-h);
  padding-top: 6px;
  padding-bottom: 6px;
}
.a2z-utilbar a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.a2z-utilbar a:hover { color: #fff; text-decoration: underline; }
.a2z-utilbar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: rgba(255,255,255,0.72);
}

/* Header */
.a2z-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--a2z-border);
  backdrop-filter: blur(10px);
}
.a2z-home .a2z-header.is-transparent {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.a2z-header.is-transparent .a2z-nav a,
.a2z-header.is-transparent .a2z-header__link {
  color: #fff;
}
.a2z-header.is-transparent .a2z-burger span { background: #fff; }
.a2z-header.is-solid {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--a2z-border);
}
.a2z-header.is-solid .a2z-nav a,
.a2z-header.is-solid .a2z-header__link {
  color: var(--a2z-navy-900);
}
.a2z-header.is-solid .a2z-burger span { background: var(--a2z-navy-900); }

.a2z-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--a2z-header-h);
}
.a2z-header__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  width: min(120px, 32vw);
  max-height: 48px;
  overflow: hidden;
  transform: none;
}
.a2z-header__logo-link .a2z-logo,
.a2z-header__logo-link .a2z-header__logo-img {
  width: 100%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
/* Homepage swaps both logos in the DOM — stack so they never sit side-by-side */
.a2z-header__logo-link .a2z-logo-swap {
  display: block;
  line-height: 0;
}
.a2z-header__logo-link .a2z-logo-swap--light {
  display: none;
}
.a2z-header__logo-link .a2z-logo-swap--dark,
.a2z-header__logo-link .a2z-logo-swap--light {
  width: 100%;
}
.a2z-nav {
  display: none;
  align-items: center;
  gap: 4px 18px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 600;
}
.a2z-nav a {
  color: var(--a2z-ink);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.a2z-nav a:hover {
  color: var(--a2z-ink);
  border-bottom-color: var(--a2z-line);
}
.a2z-header__actions {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}
.a2z-header__phone {
  display: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--a2z-navy-900);
  text-decoration: none;
  white-space: nowrap;
}
.a2z-header.is-transparent .a2z-header__phone { color: #fff; }
.a2z-header.is-solid .a2z-header__phone { color: var(--a2z-navy-900); }
.a2z-header__link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--a2z-navy-900);
}
.a2z-burger {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.a2z-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--a2z-navy-900);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.a2z-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.a2z-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.a2z-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .a2z-nav { display: flex; }
  .a2z-header__actions { display: flex; }
  .a2z-header__phone { display: inline-flex; margin-left: auto; }
  .a2z-burger { display: none; }
  .a2z-header__logo-link { width: 160px; }
}

/* Mobile menu */
.a2z-mobile-menu {
  position: fixed;
  inset: 0;
  top: calc(var(--a2z-util-h) + var(--a2z-header-h) + 24px);
  z-index: 99;
  background: var(--a2z-surface);
  padding: 24px 20px 40px;
  display: none;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--a2z-border);
}
.a2z-mobile-menu.is-open { display: flex; }
.a2z-mobile-menu a {
  display: block;
  padding: 14px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--a2z-navy-900);
  text-decoration: none;
  border-bottom: 1px solid var(--a2z-border);
  min-height: 44px;
}
.a2z-mobile-menu__ctas {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.a2z-mobile-menu__phone {
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--a2z-green-700) !important;
  border-bottom: none !important;
}

/* Hero */
.a2z-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  padding: 40px 0 56px;
  color: #fff;
  background: linear-gradient(145deg, var(--a2z-navy-950) 0%, var(--a2z-navy-800) 55%, #1a5a4a 100%);
  overflow: hidden;
}
.a2z-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.a2z-hero__masks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.a2z-hero__mask--tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7,30,43,0.88) 0%, rgba(7,30,43,0.62) 48%, rgba(7,30,43,0.45) 100%);
}
.a2z-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
  align-items: center;
  width: 100%;
}
@media (min-width: 960px) {
  .a2z-hero__grid {
    grid-template-columns: 1fr minmax(340px, 420px);
    gap: 40px;
  }
}
.a2z-hero__headline {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.15;
  font-weight: 800;
  max-width: 16ch;
  color: #fff;
}
.a2z-hero__sub {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  max-width: 36ch;
}
.a2z-hero__scroll-cue { display: none; }

/* Search card */
.a2z-search-card {
  background: var(--a2z-surface);
  color: var(--a2z-text);
  border-radius: var(--a2z-radius-lg);
  padding: 28px 24px 28px;
  box-shadow: var(--a2z-shadow-md);
  border: 1px solid rgba(255,255,255,0.35);
}
.a2z-search-card__title {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--a2z-navy-950);
}
.a2z-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  padding: 4px;
  background: var(--a2z-surface-soft);
  border-radius: var(--a2z-radius-sm);
}
.a2z-tab {
  flex: 1;
  min-height: 40px;
  border: 0;
  border-radius: 6px 6px 0 0;
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--a2z-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.a2z-tab.is-active {
  background: var(--a2z-surface);
  color: var(--a2z-ink);
  box-shadow: none;
  border-bottom-color: var(--a2z-line);
}
.a2z-search-panel[hidden] { display: none !important; }
.a2z-field { margin-bottom: 14px; }
.a2z-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--a2z-navy-900);
}
.a2z-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.a2z-input,
.a2z-select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1.5px solid var(--a2z-border);
  border-radius: var(--a2z-radius-sm);
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  color: var(--a2z-text);
}
.a2z-input:focus,
.a2z-select:focus {
  border-color: var(--a2z-green-600);
  box-shadow: 0 0 0 3px rgba(11, 146, 94, 0.18);
  outline: none;
}
.a2z-search-secure,
.a2z-search-note {
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: var(--a2z-muted);
  text-align: center;
  line-height: 1.4;
}
.a2z-cx-optional { font-weight: 500; color: var(--a2z-muted); }
.a2z-promo-toggle {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--a2z-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.a2z-search-card__badge { display: none; }
.kicker { color: rgba(255,255,255,0.78); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 12px; }

/* Trust strip */
.a2z-trust-strip,
.a2z-trustbar {
  background: var(--a2z-surface);
  border-bottom: 1px solid var(--a2z-border);
}
.a2z-trust-strip__list,
.a2z-trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  list-style: none;
  margin: 0;
  padding: 16px 0;
}
.a2z-trust-strip__item,
.a2z-trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--a2z-muted);
}
.a2z-trust-strip__icon,
.a2z-trustbar__icon {
  color: var(--a2z-green-700);
  display: inline-flex;
  width: 18px;
  height: 18px;
}
.a2z-trust-strip__icon svg,
.a2z-trustbar__icon svg { width: 18px; height: 18px; }

/* Service cards */
.a2z-services-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .a2z-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .a2z-services-grid { grid-template-columns: repeat(3, 1fr); }
}
.a2z-service-card {
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-md);
  padding: 28px 24px;
  box-shadow: var(--a2z-shadow-sm);
}
.a2z-service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--a2z-brand);
}
.a2z-service-card__icon svg { width: 40px; height: 40px; }
.a2z-service-card__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--a2z-navy-950);
}
.a2z-service-card__copy {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--a2z-muted);
  line-height: 1.5;
}
.a2z-service-card__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--a2z-brand);
  text-decoration: none;
}
.a2z-service-card__link:hover { text-decoration: underline; }

/* Offers */
.a2z-offers-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .a2z-offers-grid { grid-template-columns: repeat(3, 1fr); }
}
.a2z-offer-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-md);
  text-decoration: none;
  color: inherit;
  min-height: 180px;
  box-shadow: var(--a2z-shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.a2z-offer-card:hover {
  border-color: var(--a2z-brand-mid);
  box-shadow: var(--a2z-shadow-md);
  transform: translateY(-2px);
}
.a2z-offer-card__kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--a2z-brand);
}
.a2z-offer-card__title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--a2z-navy-950);
}
.a2z-offer-card__copy {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--a2z-muted);
}
.a2z-offer-card__cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--a2z-navy-800);
}

/* Why / how */
.a2z-why-grid,
.a2z-how-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .a2z-why-grid { grid-template-columns: repeat(2, 1fr); }
  .a2z-how-grid { grid-template-columns: repeat(3, 1fr); }
}
.a2z-why-card,
.a2z-how-card {
  padding: 20px;
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-md);
}
.a2z-how-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--a2z-green-100);
  color: var(--a2z-green-700);
  font-weight: 800;
  font-size: 0.9rem;
}
.a2z-why-card h3,
.a2z-how-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--a2z-navy-950);
}
.a2z-why-card p,
.a2z-how-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--a2z-muted);
}

/* Airports */
.a2z-airports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .a2z-airports-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .a2z-airports-grid { grid-template-columns: repeat(4, 1fr); }
}
.a2z-airport-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--a2z-radius-md);
  overflow: hidden;
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--a2z-shadow-sm);
}
.a2z-airport-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--a2z-navy-800);
  overflow: hidden;
}
.a2z-airport-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.a2z-airport-card__code {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(7,30,43,0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.a2z-airport-card__body { padding: 12px 14px 14px; }
.a2z-airport-card__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--a2z-navy-950);
}
.a2z-airport-card__meta {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: var(--a2z-muted);
}
.a2z-airport-card__cta {
  margin: 8px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--a2z-green-700);
}
.a2z-airport-card__thumb-overlay { display: none; }

/* Support band */
.a2z-support-band {
  background: var(--a2z-navy-900);
  color: #fff;
  padding: clamp(40px, 5vw, 64px) 0;
}
.a2z-support-band__inner {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .a2z-support-band__inner {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
}
.a2z-support-band .a2z-eyebrow { color: #9fd9bf; }
.a2z-support-band__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: #fff;
}
.a2z-support-band__text {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.78);
  max-width: 36rem;
}
.a2z-support-band__channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .a2z-support-band__channels { grid-template-columns: 1fr 1fr; }
}
.a2z-support-band__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: var(--a2z-radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  min-height: 72px;
}
.a2z-support-band__card strong { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.a2z-support-band__card span { font-size: 0.95rem; font-weight: 700; }

/* FAQ */
.a2z-faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
}
.a2z-faq-item {
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-md);
  overflow: hidden;
}
.a2z-faq-item__heading { margin: 0; }
.a2z-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 14px 18px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--a2z-navy-950);
  cursor: pointer;
}
.a2z-faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.a2z-faq-item__icon::before,
.a2z-faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--a2z-navy-800);
  border-radius: 1px;
}
.a2z-faq-item__icon::before {
  left: 0; right: 0; top: 9px; height: 2px;
}
.a2z-faq-item__icon::after {
  top: 0; bottom: 0; left: 9px; width: 2px;
  transition: opacity 0.15s;
}
.a2z-faq-item.is-open .a2z-faq-item__icon::after { opacity: 0; }
.a2z-faq-item__panel[hidden] { display: none !important; }
.a2z-faq-item__answer {
  padding: 0 18px 18px;
  color: var(--a2z-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.a2z-faq-item__answer a { color: var(--a2z-green-700); font-weight: 600; }
.a2z-faq-item__answer p { margin: 0; }

/* Recently viewed */
.a2z-recent-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .a2z-recent-grid { grid-template-columns: repeat(3, 1fr); }
}
.a2z-recent-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-md);
  background: var(--a2z-surface);
}
.a2z-recent-card__img {
  border-radius: var(--a2z-radius-sm);
  overflow: hidden;
  background: var(--a2z-surface-soft);
  aspect-ratio: 4/3;
}
.a2z-recent-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.a2z-recent-card__title {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: var(--a2z-navy-950);
}
.a2z-recent-card__meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--a2z-muted);
}
.a2z-recent-card__price {
  display: block;
  margin-top: 6px;
  font-weight: 800;
  color: var(--a2z-navy-900);
}
.a2z-recent-card__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--a2z-green-700);
}

/* Footer */
.a2z-footer {
  background: var(--a2z-navy-950);
  color: rgba(255,255,255,0.82);
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.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__pattern { display: none; }
.a2z-footer__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .a2z-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
.a2z-footer__logo { width: 150px; height: auto; margin-bottom: 12px; display: block; }
.a2z-footer__logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 12px;
}
.a2z-footer__logo-link .a2z-footer__logo { margin-bottom: 0; }
.a2z-footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.68);
  max-width: 28ch;
}
.a2z-footer h3 {
  margin: 0 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.a2z-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.a2z-footer li + li { margin-top: 8px; }
.a2z-footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
}
.a2z-footer a:hover { color: #fff; }
.a2z-footer__airports {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.a2z-footer__airports-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.a2z-footer__airports-all { font-size: 0.85rem; font-weight: 600; }
.a2z-footer__airport-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.a2z-footer__airport-list li { margin: 0 !important; }
.a2z-footer__bottom {
  margin-top: 36px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
}
.a2z-footer__copy { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.a2z-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.a2z-footer__legal a { font-size: 0.8rem; }
.a2z-footer__contact {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.a2z-footer__contact a { color: #fff; font-weight: 600; }

/* Results page */
.a2z-results-hero {
  background: var(--a2z-navy-900);
  color: #fff;
  padding: 36px 0 28px;
}
.a2z-results-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #fff;
}
.a2z-results-hero p {
  margin: 0;
  color: rgba(255,255,255,0.78);
}
.a2z-results-page {
  padding: 24px 0 64px;
  background: var(--a2z-surface-soft);
}
.a2z-results-layout {
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) {
  .a2z-results-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
  }
}
.a2z-results-main { min-width: 0; }
.a2z-results-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-md);
  position: sticky;
  top: calc(var(--a2z-header-h) + 8px);
  z-index: 20;
}
.a2z-results-toolbar__count {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--a2z-navy-900);
}
.a2z-results-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.a2z-results-sort__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--a2z-muted);
}
.a2z-results-sort__select {
  min-height: 40px;
  padding: 6px 10px;
  border: 1.5px solid var(--a2z-border);
  border-radius: var(--a2z-radius-sm);
  background: #fff;
  font: inherit;
  font-size: 0.875rem;
}
.a2z-results-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.a2z-filter-chip {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--a2z-border);
  background: var(--a2z-surface);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--a2z-navy-800);
  cursor: pointer;
}
.a2z-filter-chip.is-active {
  background: var(--a2z-navy-900);
  border-color: var(--a2z-navy-900);
  color: #fff;
}
.a2z-filter-chip[hidden] { display: none !important; }
.a2z-filters-panel {
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-md);
  padding: 16px;
}
.a2z-filters-panel h2 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}
.a2z-filters-panel__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.a2z-filters-panel .a2z-filter-chip {
  border-radius: var(--a2z-radius-sm);
  justify-content: space-between;
  display: flex;
  width: 100%;
}
.a2z-filters-clear {
  margin-top: 12px;
  width: 100%;
}
@media (max-width: 1023px) {
  .a2z-results-layout > .a2z-filters-panel {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 80;
    border-radius: var(--a2z-radius-lg) var(--a2z-radius-lg) 0 0;
    max-height: 75vh;
    overflow: auto;
    transform: translateY(110%);
    transition: transform 0.25s ease;
    box-shadow: var(--a2z-shadow-md);
    margin: 0;
  }
  .a2z-results-layout > .a2z-filters-panel.is-open { transform: translateY(0); }
  .a2z-filters-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(7,30,43,0.45);
    display: none;
  }
  .a2z-filters-backdrop.is-open { display: block; }
}
.a2z-filter-mobile-btn {
  display: inline-flex;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: var(--a2z-radius-sm);
  border: 1.5px solid var(--a2z-border);
  background: #fff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .a2z-filter-mobile-btn { display: none; }
  .a2z-filters-backdrop { display: none !important; }
}

.a2z-product-grid,
#parking-product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .a2z-product-grid,
  #parking-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .a2z-results-layout #parking-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1400px) {
  .a2z-results-layout #parking-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Parking cards — also support legacy class */
.a2z-parking-card,
.a2z-product-card {
  display: flex;
  flex-direction: column;
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-md);
  overflow: hidden;
  box-shadow: var(--a2z-shadow-sm);
  min-width: 0;
}
.a2z-parking-card__media,
.a2z-product-card__img {
  position: relative;
  height: 118px;
  aspect-ratio: auto;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* top padding clears the service badge so logos aren't clipped under it */
  padding: 36px 18px 14px;
  border-bottom: 1px solid var(--a2z-border);
  overflow: hidden;
}
.a2z-parking-card__media img,
.a2z-product-card__img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  object-position: center center;
}
.a2z-parking-card__badge,
.a2z-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--a2z-navy-900);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  pointer-events: none;
}
.a2z-parking-card__badge--soft {
  left: auto;
  right: 10px;
  background: rgba(255,255,255,0.92);
  color: var(--a2z-navy-900);
}
.a2z-parking-card__body,
.a2z-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
  gap: 10px;
}
.a2z-parking-card__title,
.a2z-product-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--a2z-navy-950);
}
.a2z-parking-card__airport {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--a2z-muted);
}
.a2z-parking-card__facts,
.a2z-product-card__meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--a2z-muted);
}
.a2z-parking-card__facts .is-good,
.a2z-product-card__meta-list .is-good { color: var(--a2z-green-700); font-weight: 600; }
.a2z-parking-card__facts .is-warn,
.a2z-product-card__meta-list .is-warn { color: var(--a2z-warning); font-weight: 600; }
.a2z-parking-card__rating { color: var(--a2z-navy-900); font-weight: 700; }
.a2z-parking-card__reviews-block {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--a2z-surface-soft, #f0f5fa);
  border: 1px solid var(--a2z-border);
}
.a2z-parking-card__reviews-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--a2z-muted);
}
.a2z-parking-card__reviews-block .a2z-product-card__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
}
.a2z-parking-card__reviews-block .a2z-product-card__rating-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--a2z-success, #0f7a56);
}
.a2z-parking-card__reviews-block .a2z-product-card__quote {
  margin: 8px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--a2z-muted);
  font-style: italic;
}
.a2z-parking-card__reviews-block .a2z-product-card__quote-author {
  font-style: normal;
  font-weight: 600;
}
.a2z-parking-card__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.a2z-parking-card__trust li {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--a2z-primary-soft, #e6f4fe);
  color: var(--a2z-navy-900);
  font-size: 0.72rem;
  font-weight: 700;
}
.a2z-parking-card__charges {
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--a2z-primary-soft, #e6f4fe);
  border: 1px solid rgba(0, 136, 240, 0.28);
  display: grid;
  gap: 6px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--a2z-navy-800, #2e1065);
}
.a2z-parking-card__charges li {
  position: relative;
  padding-left: 18px;
}
.a2z-parking-card__charges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--a2z-primary, #0088f0);
  box-shadow: inset 0 0 0 2px #fff;
  opacity: 0.9;
}
.a2z-parking-card__no-reviews { color: var(--a2z-muted); font-style: italic; }
.a2z-parking-card__footer,
.a2z-product-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--a2z-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.a2z-parking-card__price,
.a2z-product-card__price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--a2z-navy-950);
  line-height: 1;
}
.a2z-parking-card__price-label,
.a2z-product-card__price-label {
  font-size: 0.8rem;
  color: var(--a2z-muted);
  margin-left: 4px;
}
.a2z-parking-card__was,
.a2z-product-card__discount:not(.is-empty) {
  display: block;
  font-size: 0.8rem;
  color: var(--a2z-muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.a2z-product-card__discount.is-empty { min-height: 0; }
.a2z-parking-card__cta,
.a2z-product-card__cta {
  width: 100%;
}
.a2z-product-card__grow { display: none; }
.a2z-product-card__highlights {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.82rem;
  color: var(--a2z-muted);
}

.a2z-summary {
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-md);
  padding: 16px;
  margin-bottom: 14px;
}
.a2z-summary h3 { margin: 0 0 12px; font-size: 1rem; }
.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-border);
  font-size: 0.85rem;
}
.a2z-summary li span { color: var(--a2z-muted); }
.a2z-crosssell {
  background: var(--a2z-navy-900);
  color: #fff;
  border-radius: var(--a2z-radius-md);
  padding: 18px;
}
.a2z-crosssell h4 { margin: 0 0 8px; color: #fff; }
.a2z-crosssell p { margin: 0 0 14px; color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.a2z-empty {
  text-align: center;
  padding: 48px 20px;
  background: var(--a2z-surface);
  border-radius: var(--a2z-radius-md);
  border: 1px solid var(--a2z-border);
}
.a2z-results-empty {
  display: none;
  text-align: center;
  padding: 32px 16px;
  background: var(--a2z-surface);
  border: 1px dashed var(--a2z-border);
  border-radius: var(--a2z-radius-md);
}
.a2z-results-empty.is-visible { display: block; }

/* Loading overlay */
.a2z-search-loading {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 30, 43, 0.72);
}
.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(100%, 400px);
  padding: 28px 24px;
  border-radius: var(--a2z-radius-lg);
  background: #fff;
  text-align: center;
  box-shadow: var(--a2z-shadow-md);
}
.a2z-search-loading__spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border: 3px solid var(--a2z-border);
  border-top-color: var(--a2z-green-600);
  border-radius: 50%;
  animation: a2z-spin 0.8s linear infinite;
}
@keyframes a2z-spin { to { transform: rotate(360deg); } }
.a2z-search-loading__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--a2z-navy-950);
}
.a2z-search-loading__sub {
  margin: 0;
  font-size: 0.9rem;
  color: var(--a2z-muted);
}
.a2z-search-loading__actions {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.a2z-search-loading.is-slow .a2z-search-loading__actions { display: flex; }

/* Cookie banner */
.a2z-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1900;
  background: var(--a2z-navy-950);
  color: #fff;
  padding: 16px 0;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
}
.a2z-cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.a2z-cookie-banner__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
/* Under 640px the inner flex flips to column (a2z-frontend.css) — the 280px
   basis would become forced HEIGHT there, walling off half the viewport. */
@media (max-width: 639.98px) {
  .a2z-cookie-banner__text { flex-basis: auto; }
}
.a2z-cookie-banner__text a { color: #9fd9bf; }
.a2z-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.a2z-cookie-banner__btn {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--a2z-radius-sm);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}
.a2z-cookie-banner__btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
}
.a2z-cookie-banner__btn--gold,
.a2z-cookie-banner__btn--accept {
  background: var(--a2z-green-600);
  border: 1.5px solid var(--a2z-green-600);
  color: #fff;
}
.a2z-cookie-banner__btn--reject {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
}

/* Rewards/points demos stay hidden — not real loyalty systems */
.a2z-php1 .a2z-cx-rewards { display: none !important; }

/* Services carousel + why-A2Z visual restored for SEO content */
.a2z-php1 .a2z-circular-gallery { display: block; }
.a2z-services-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 960px) {
  .a2z-services-layout {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    gap: 40px;
  }
}
.a2z-services-gallery-foot {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--a2z-muted);
}
.a2z-why-a2z__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .a2z-why-a2z__grid {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 40px;
  }
}
.a2z-why-a2z__photo {
  border-radius: var(--a2z-radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--a2z-shadow-md);
}
.a2z-why-a2z__photo img {
  display: block;
  width: 100%;
  height: auto;
}
.a2z-reviews-layout {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .a2z-reviews-layout {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
    align-items: center;
    gap: 36px;
  }
}

/* Reviews simplified */
.a2z-reviews-simple {
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .a2z-reviews-simple { grid-template-columns: repeat(3, 1fr); }
}
.a2z-review-card {
  padding: 18px;
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-md);
}
.a2z-review-card p {
  margin: 10px 0;
  font-size: 0.92rem;
  color: var(--a2z-text);
}
.a2z-review-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
}
.a2z-trustpilot {
  display: block;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--a2z-border);
  background: var(--a2z-surface);
  text-decoration: none;
  transition: border-color 0.25s;
  color: inherit;
}
.a2z-trustpilot:hover { border-color: var(--a2z-trustpilot-green); }
.a2z-trustpilot__brand { color: var(--a2z-trustpilot-green) !important; }
.a2z-trustpilot__star-box {
  background: var(--a2z-trustpilot-green) !important;
  color: #fff !important;
}
.a2z-trustpilot__score,
.a2z-trustpilot__meta { display: block; }
.a2z-review__verified {
  color: var(--a2z-trustpilot-green) !important;
  border-color: var(--a2z-trustpilot-green) !important;
}
.a2z-reviews-intro .a2z-stars__item,
.a2z-review .a2z-stars__item {
  color: var(--a2z-trustpilot-green) !important;
}
.a2z-section-foot { margin-top: 24px; }

@media (max-width: 374px) {
  .a2z-field-row { grid-template-columns: 1fr; }
  .a2z-airports-grid { grid-template-columns: 1fr; }
}

/* Skip link */
.a2z-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  background: #fff;
  color: var(--a2z-navy-950);
  padding: 10px 16px;
  font-weight: 700;
}
.a2z-skip:focus {
  left: 12px;
  top: 12px;
}

/* ── Visual polish pass: whitespace, cards, imagery, Book Now ── */
body.a2z-php1 {
  letter-spacing: 0.01em;
}
body.a2z-php1 .a2z-container {
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  body.a2z-php1 .a2z-container {
    padding-left: 36px;
    padding-right: 36px;
  }
}

body.a2z-php1 .a2z-utilbar {
  background: var(--a2z-brand-deep);
}
body.a2z-php1 .a2z-text-link,
body.a2z-php1 .a2z-card__link,
body.a2z-php1 .a2z-airport-card__cta,
body.a2z-php1 .a2z-recent-card__link,
body.a2z-php1 .a2z-offer-card__cta {
  color: var(--a2z-brand);
}
body.a2z-php1 .a2z-text-link:hover,
body.a2z-php1 .a2z-airport-card__cta:hover {
  color: var(--a2z-accent);
}

body.a2z-php1 .a2z-airport-card,
body.a2z-php1 .a2z-parking-card,
body.a2z-php1 .a2z-product-card,
body.a2z-php1 .a2z-why-card,
body.a2z-php1 .a2z-how-card,
body.a2z-php1 .a2z-faq-item,
body.a2z-php1 .a2z-recent-card,
body.a2z-php1 .a2z-review,
body.a2z-php1 .a2z-summary {
  border-radius: var(--a2z-radius-md);
  border: 1px solid var(--a2z-border);
  box-shadow: var(--a2z-shadow-sm);
  background: var(--a2z-surface);
}
body.a2z-php1 .a2z-airport-card,
body.a2z-php1 .a2z-parking-card,
body.a2z-php1 .a2z-product-card {
  overflow: hidden;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
body.a2z-php1 .a2z-airport-card:hover,
body.a2z-php1 .a2z-parking-card:hover,
body.a2z-php1 .a2z-product-card:hover {
  box-shadow: var(--a2z-shadow-md);
  transform: translateY(-2px);
}
body.a2z-php1 .a2z-airport-card__body,
body.a2z-php1 .a2z-parking-card__body,
body.a2z-php1 .a2z-product-card__body {
  padding: 18px 18px 20px;
}
body.a2z-php1 .a2z-how-card,
body.a2z-php1 .a2z-why-card {
  padding: 24px;
}
body.a2z-php1 .a2z-how-card__num {
  background: var(--a2z-brand-soft);
  color: var(--a2z-brand);
}
body.a2z-php1 .a2z-airports-grid,
body.a2z-php1 .a2z-offers-grid,
body.a2z-php1 .a2z-how-grid,
body.a2z-php1 .a2z-why-grid {
  gap: 20px;
}
body.a2z-php1 .a2z-field {
  margin-bottom: 16px;
}
body.a2z-php1 .a2z-hero {
  padding: 48px 0 72px;
  background: linear-gradient(145deg, var(--a2z-brand-deep) 0%, var(--a2z-brand) 58%, var(--a2z-brand-mid) 100%);
}
body.a2z-php1 .a2z-hero__headline {
  letter-spacing: -0.03em;
}
body.a2z-php1 .a2z-circular-gallery__card,
body.a2z-php1 .a2z-circular-gallery__photo {
  border-radius: var(--a2z-radius-md);
  overflow: hidden;
}
body.a2z-php1 .a2z-circular-gallery__photo img,
body.a2z-php1 .a2z-why-a2z__photo img,
body.a2z-php1 .a2z-airport-card__thumb img {
  object-fit: cover;
}
/* Operator logos on parking/product cards — never crop; keep contain */
body.a2z-php1 .a2z-parking-card__media img,
body.a2z-php1 .a2z-product-card__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain !important;
  object-position: center center;
}
body.a2z-php1 .a2z-why-a2z__photo {
  margin-bottom: 24px;
}
body.a2z-php1 .a2z-parking-card__cta,
body.a2z-php1 .a2z-product-card__cta {
  background: linear-gradient(135deg, var(--a2z-brand, #4c1d95) 0%, var(--a2z-primary, #0088f0) 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.28);
  font-weight: 800;
  letter-spacing: 0.01em;
}
body.a2z-php1 .a2z-parking-card__cta:hover,
body.a2z-php1 .a2z-product-card__cta:hover {
  background: linear-gradient(135deg, #3b1678 0%, var(--a2z-primary-hover, #0070c8) 100%) !important;
  box-shadow: 0 12px 28px rgba(76, 29, 149, 0.34);
  transform: translateY(-1px);
}
body.a2z-php1 .a2z-parking-card__badge,
body.a2z-php1 .a2z-product-card__badge {
  background: var(--a2z-brand);
}
body.a2z-php1 .a2z-support-band {
  background: var(--fl-band, #4c1d95);
}
body.a2z-php1 .a2z-footer {
  background: var(--fl-band-deep, #0f172a);
}
body.a2z-php1 .a2z-mobile-menu__phone {
  color: var(--a2z-brand) !important;
}

/* Airplane How it works — SEO text + video story */
body.a2z-php1 .a2z-scroll-story-wrap {
  display: block;
  background: var(--a2z-brand-deep);
  padding: 0;
  margin: 0;
}
body.a2z-php1 .a2z-scroll-story-seo {
  padding: 48px 24px 20px;
  color: #fff;
}
body.a2z-php1 .a2z-scroll-story-seo__eyebrow {
  color: #9fd9bf;
}
body.a2z-php1 .a2z-scroll-story-seo__title {
  color: #fff;
  max-width: 22ch;
  margin-bottom: 20px;
}
body.a2z-php1 .a2z-how-seo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  body.a2z-php1 .a2z-how-seo-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}
body.a2z-php1 .a2z-how-seo-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: var(--a2z-radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
body.a2z-php1 .a2z-how-seo-list strong {
  font-size: 0.9rem;
  color: #fff;
}
body.a2z-php1 .a2z-how-seo-list span {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.75);
}
/* Header — always light */
.a2z-header,
.a2z-header.is-solid,
.a2z-header--light,
.a2z-home .a2z-header.is-transparent {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96) !important;
  border-bottom: 1px solid var(--a2z-border);
  backdrop-filter: blur(10px);
}
.a2z-header .a2z-nav a,
.a2z-header .a2z-header__link,
.a2z-header .a2z-header__phone,
.a2z-header.is-transparent .a2z-nav a,
.a2z-header.is-transparent .a2z-header__link,
.a2z-header.is-transparent .a2z-header__phone {
  color: var(--a2z-ink) !important;
}
.a2z-header .a2z-burger span,
.a2z-header.is-transparent .a2z-burger span {
  background: var(--a2z-ink) !important;
}
.a2z-php1-bar,
.a2z-utilbar { display: none !important; }

/* Hero with background video (restored) — light copy over dark tint */
body.a2z-white .a2z-hero {
  min-height: min(72vh, 640px);
  padding: 48px 0 56px;
  color: #fff;
  background: var(--a2z-brand-deep) !important;
  overflow: hidden;
  border-bottom: none;
}
body.a2z-white .a2z-hero__video,
body.a2z-white .a2z-hero__masks {
  display: block !important;
}
body.a2z-white .a2z-hero__headline {
  color: #fff !important;
  max-width: 18ch;
}
body.a2z-white .a2z-hero__sub {
  color: rgba(255, 255, 255, 0.9) !important;
}
body.a2z-white .a2z-hero .kicker {
  color: #9ec8e8 !important;
}
body.a2z-white .a2z-search-card {
  border: 1px solid var(--a2z-border);
  box-shadow: var(--a2z-shadow-sm);
}
body.a2z-white .a2z-btn--primary,
body.a2z-white .btn-gold,
body.a2z-white .a2z-btn-book {
  background: var(--a2z-primary) !important;
  box-shadow: 0 4px 14px var(--a2z-accent-glow) !important;
}
body.a2z-white .a2z-btn--primary:hover,
body.a2z-white .btn-gold:hover,
body.a2z-white .a2z-btn-book:hover {
  background: var(--a2z-primary-hover) !important;
}
body.a2z-white .a2z-parking-card__cta,
body.a2z-white .a2z-product-card__cta,
body.a2z-php1 .a2z-parking-card__cta,
body.a2z-php1 .a2z-product-card__cta {
  background: linear-gradient(135deg, var(--a2z-brand, #4c1d95) 0%, var(--a2z-primary, #0088f0) 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.28) !important;
}
body.a2z-white .a2z-parking-card__cta:hover,
body.a2z-white .a2z-product-card__cta:hover,
body.a2z-php1 .a2z-parking-card__cta:hover,
body.a2z-php1 .a2z-product-card__cta:hover {
  background: linear-gradient(135deg, #3b1678 0%, var(--a2z-primary-hover, #0070c8) 100%) !important;
  box-shadow: 0 12px 28px rgba(76, 29, 149, 0.34) !important;
}
body.a2z-white .a2z-tab.is-active {
  color: var(--a2z-ink);
  border-bottom-color: var(--a2z-line);
  box-shadow: none;
}
body.a2z-white .a2z-eyebrow {
  color: var(--a2z-line);
}
body.a2z-white .a2z-section-head {
  border-bottom: 1px solid var(--a2z-line-soft);
  padding-bottom: 18px;
  margin-bottom: 32px;
}
body.a2z-white .a2z-trust-strip,
body.a2z-white .a2z-trustbar {
  border-top: 1px solid var(--a2z-line-soft);
  border-bottom: 1px solid var(--a2z-line-soft);
  background: #fff;
}
body.a2z-white .a2z-trust-strip__icon,
body.a2z-white .a2z-trustbar__icon {
  color: var(--a2z-line);
}
body.a2z-white .is-good,
body.a2z-white .a2z-parking-card__facts .is-good {
  color: var(--a2z-success) !important;
}
body.a2z-white .a2z-offer-card__kicker {
  color: var(--a2z-offer);
}
body.a2z-white .a2z-text-link,
body.a2z-white .a2z-service-card__link,
body.a2z-white .a2z-airport-card__cta {
  color: var(--a2z-line);
}
body.a2z-white .a2z-text-link:hover,
body.a2z-white .a2z-service-card__link:hover {
  color: var(--a2z-primary);
}
body.a2z-white .a2z-input:focus,
body.a2z-white .a2z-select:focus {
  border-color: var(--a2z-line);
  box-shadow: 0 0 0 3px rgba(47, 122, 176, 0.18);
}
body.a2z-white .a2z-scroll-story-wrap {
  background: var(--a2z-brand-deep);
}
body.a2z-white .a2z-footer__cookie-btn {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255,255,255,0.75);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.a2z-white .a2z-hotels-feature {
  background: var(--a2z-surface);
  border: 1px solid var(--a2z-border);
  border-radius: var(--a2z-radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--a2z-shadow-sm);
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  body.a2z-white .a2z-hotels-feature {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}
body.a2z-white .a2z-hotels-feature__img {
  border-radius: var(--a2z-radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--a2z-surface-soft);
}
body.a2z-white .a2z-hotels-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.a2z-white .a2z-airport-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
body.a2z-white .a2z-airport-card__actions a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--a2z-line);
  text-decoration: none;
  border-bottom: 1px solid var(--a2z-line-soft);
}
/* Manage-booking notice + auth cards — brand purple / cerulean palette */
body.a2z-white .a2z-booking-hero,
body.a2z-white .a2z-airport-hero {
  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%);
}
body.a2z-white .a2z-booking-hero .kicker,
body.a2z-white .a2z-airport-hero .kicker {
  color: #7dd3fc !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
}
body.a2z-white .a2z-airport-hero__bg {
  opacity: 0.22;
  background: radial-gradient(circle at 80% 20%, rgba(0, 136, 240, 0.4), transparent 52%);
}
body.a2z-white .a2z-airport-locality {
  border-left-color: var(--a2z-primary);
}
body.a2z-white .a2z-airport-others a {
  color: var(--a2z-primary);
}
body.a2z-white .a2z-manage-notice {
  margin: 18px 0 0;
  max-width: 36rem;
  padding: 16px 18px 16px 20px;
  border-radius: var(--a2z-radius-md);
  background:
    linear-gradient(135deg, rgba(76, 29, 149, 0.55) 0%, rgba(0, 136, 240, 0.38) 100%);
  border: 1px solid rgba(125, 211, 252, 0.35);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
  color: #f8fafc;
  font-size: 0.92rem;
  line-height: 1.55;
  position: relative;
}
body.a2z-white .a2z-manage-notice::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7dd3fc 0%, #0088f0 50%, #4c1d95 100%);
}
body.a2z-white .a2z-booking-page .a2z-panel {
  background:
    linear-gradient(165deg, #ffffff 0%, var(--a2z-primary-soft) 100%);
  border: 1px solid rgba(0, 136, 240, 0.22);
  box-shadow: 0 12px 32px rgba(76, 29, 149, 0.08), var(--a2z-shadow-sm);
}
body.a2z-white .a2z-auth-tabs {
  background: rgba(76, 29, 149, 0.06);
  border: 1px solid rgba(76, 29, 149, 0.1);
}
body.a2z-white .a2z-auth-tabs__btn {
  color: var(--a2z-muted);
}
body.a2z-white .a2z-auth-tabs__btn.is-active {
  background: linear-gradient(135deg, #4c1d95 0%, #0088f0 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 136, 240, 0.28);
}
body.a2z-white .a2z-results-hero {
  background: var(--a2z-ink);
}
body.a2z-white .a2z-support-band {
  background: var(--a2z-ink);
}
body.a2z-white .a2z-airport-card:hover,
body.a2z-white .a2z-parking-card:hover,
body.a2z-white .a2z-product-card:hover,
body.a2z-white .a2z-offer-card:hover {
  transform: none;
  border-color: var(--a2z-line);
  box-shadow: var(--a2z-shadow-sm);
}

/* =============================================================================
   Design polish — visual only (no content / SEO / GEO changes)
   Direction: terminal-board clarity — crisp type, elevated booking desk,
   runway-blue accents. Motion: transform/opacity only + reduced-motion.
   ============================================================================= */
:root {
  --a2z-font-display: "Manrope", var(--a2z-font);
  --a2z-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --a2z-ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --a2z-shadow-lift: 0 14px 36px rgba(15, 36, 56, 0.12);
  --a2z-shadow-hero-card: 0 24px 56px rgba(5, 18, 32, 0.35), 0 2px 0 rgba(255, 255, 255, 0.06) inset;
  --a2z-mesh: radial-gradient(1200px 480px at 12% -10%, rgba(0, 136, 240, 0.07), transparent 55%),
    radial-gradient(900px 420px at 92% 8%, rgba(47, 122, 176, 0.06), transparent 50%);
}

body.a2z-site.a2z-php1 {
  background-image: var(--a2z-mesh);
  background-attachment: fixed;
}

.a2z-section-title,
.section-title,
.a2z-hero__headline,
.a2z-support-band__title,
.a2z-search-card__title,
.a2z-parking-card__title,
.a2z-service-card__title,
.a2z-offer-card__title,
.a2z-airport-card__name,
.a2z-why-card h3,
.a2z-how-card h3,
.a2z-scroll-story__card-title,
.a2z-faq-item__trigger {
  font-family: var(--a2z-font-display);
}

.a2z-section-title,
.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  letter-spacing: -0.03em;
  max-width: 18ch;
  font-weight: 700;
}

.a2z-section-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.a2z-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--a2z-font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.a2z-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.7;
}

/* Header — quieter chrome, clearer nav feedback */
.a2z-header,
.a2z-header.is-solid,
.a2z-header--light {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: rgba(215, 224, 232, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
@media (max-width: 760px) {
  .a2z-header,
  .a2z-header.is-solid,
  .a2z-header--light {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
  }
}

.a2z-nav a {
  position: relative;
  padding: 10px 2px;
  border-bottom: none !important;
  transition: color 0.2s var(--a2z-ease-soft);
}

.a2z-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--a2z-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s var(--a2z-ease-out);
}

.a2z-nav a:hover {
  color: var(--a2z-primary) !important;
}

.a2z-nav a:hover::after {
  transform: scaleX(1);
}

.a2z-btn--primary,
.btn-gold,
.a2z-btn-book {
  transition: background 0.2s var(--a2z-ease-soft), box-shadow 0.2s var(--a2z-ease-soft), transform 0.2s var(--a2z-ease-out) !important;
}

.a2z-btn--primary:hover,
.btn-gold:hover,
.a2z-btn-book:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 22px var(--a2z-accent-glow) !important;
}

.a2z-btn--primary:active,
.btn-gold:active,
.a2z-btn-book:active {
  transform: translateY(0) !important;
}

/* Hero — cinematic terminal arrival */
body.a2z-white .a2z-hero {
  min-height: min(82vh, 720px);
  padding: 56px 0 72px;
}

body.a2z-white .a2z-hero__mask--tint {
  background:
    linear-gradient(105deg, rgba(6, 22, 36, 0.92) 0%, rgba(8, 28, 44, 0.72) 42%, rgba(10, 36, 52, 0.48) 100%),
    linear-gradient(to top, rgba(6, 18, 30, 0.55) 0%, transparent 42%) !important;
}

body.a2z-white .a2z-hero__headline {
  font-size: clamp(2rem, 4.6vw, 3.15rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  max-width: 15ch !important;
}

body.a2z-white .a2z-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem) !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  max-width: 34ch;
}

body.a2z-white .a2z-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #c5e4f8 !important;
  font-family: var(--a2z-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

body.a2z-white .a2z-hero .kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ba3f5;
  box-shadow: 0 0 0 3px rgba(59, 163, 245, 0.28);
}

/* Search card = signature booking desk */
body.a2z-white .a2z-search-card {
  position: relative;
  padding: 26px 24px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--a2z-shadow-hero-card);
  overflow: hidden;
}

body.a2z-white .a2z-search-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--a2z-primary), #3ba3f5 55%, var(--a2z-line));
}

.a2z-search-card__title {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.a2z-tabs {
  padding: 5px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eaf2f8, #f3f7fb);
  border: 1px solid var(--a2z-line-soft);
}

.a2z-tab {
  border-radius: 9px !important;
  border-bottom: none !important;
  min-height: 42px;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.a2z-tab.is-active,
body.a2z-white .a2z-tab.is-active {
  background: #fff;
  color: var(--a2z-ink);
  box-shadow: 0 1px 3px rgba(15, 36, 56, 0.08), 0 0 0 1px rgba(47, 122, 176, 0.12);
  border-bottom-color: transparent !important;
}

.a2z-input,
.a2z-select {
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  background: #fbfcfe;
}

.a2z-input:hover,
.a2z-select:hover {
  border-color: var(--a2z-border-strong);
  background: #fff;
}

body.a2z-white .a2z-input:focus,
body.a2z-white .a2z-select:focus {
  border-color: var(--a2z-primary);
  box-shadow: 0 0 0 3px rgba(0, 136, 240, 0.16);
  background: #fff;
}

/* Trust strip */
body.a2z-white .a2z-trust-strip,
body.a2z-white .a2z-trustbar {
  background: linear-gradient(180deg, #fff, #f5f9fc);
  border-color: var(--a2z-line-soft);
}

.a2z-trust-strip__list,
.a2z-trustbar__inner {
  gap: 12px 32px;
  padding: 18px 0;
}

.a2z-trust-strip__item,
.a2z-trustbar__item {
  font-size: 0.84rem;
  color: var(--a2z-text);
}

.a2z-trust-strip__icon,
.a2z-trustbar__icon {
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--a2z-primary-soft);
  color: var(--a2z-primary) !important;
}

/* Cards — lift + image life */
.a2z-service-card,
.a2z-offer-card,
.a2z-airport-card,
.a2z-why-card,
.a2z-how-card,
.a2z-parking-card,
.a2z-product-card,
.a2z-faq-item,
.a2z-review-card {
  transition: transform 0.25s var(--a2z-ease-out), box-shadow 0.25s var(--a2z-ease-out), border-color 0.2s ease;
}

body.a2z-php1 .a2z-service-card,
body.a2z-php1 .a2z-offer-card,
body.a2z-php1 .a2z-airport-card,
body.a2z-php1 .a2z-why-card,
body.a2z-php1 .a2z-parking-card,
body.a2z-php1 .a2z-product-card {
  border-color: rgba(215, 224, 232, 0.95);
  box-shadow: 0 1px 2px rgba(15, 36, 56, 0.04), 0 8px 24px rgba(15, 36, 56, 0.04);
}

body.a2z-white .a2z-service-card:hover,
body.a2z-white .a2z-offer-card:hover,
body.a2z-white .a2z-airport-card:hover,
body.a2z-white .a2z-why-card:hover,
body.a2z-white .a2z-parking-card:hover,
body.a2z-white .a2z-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 122, 176, 0.35);
  box-shadow: var(--a2z-shadow-lift);
}

.a2z-service-card {
  padding: 30px 26px;
  border-radius: 16px;
}

.a2z-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--a2z-primary-soft), #fff);
  color: var(--a2z-primary);
  box-shadow: inset 0 0 0 1px rgba(0, 136, 240, 0.12);
}

.a2z-service-card__icon svg {
  width: 26px;
  height: 26px;
}

.a2z-airport-card {
  border-radius: 14px;
}

.a2z-airport-card__thumb img {
  transition: transform 0.45s var(--a2z-ease-out);
}

.a2z-airport-card:hover .a2z-airport-card__thumb img {
  transform: scale(1.05);
}

.a2z-airport-card__code {
  font-family: var(--a2z-font-display);
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
  background: rgba(7, 30, 43, 0.72);
}

.a2z-airport-card__body {
  padding: 14px 16px 16px;
}

body.a2z-white .a2z-airport-card__actions a {
  padding: 4px 0;
  transition: color 0.15s ease, border-color 0.15s ease;
}

body.a2z-white .a2z-airport-card__actions a:hover {
  color: var(--a2z-primary);
  border-bottom-color: var(--a2z-primary);
}

.a2z-offer-card {
  border-radius: 16px;
  min-height: 196px;
  background:
    linear-gradient(180deg, #fff 0%, #fafcfe 100%);
}

.a2z-offer-card__kicker {
  font-family: var(--a2z-font-display);
}

body.a2z-white .a2z-hotels-feature {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(15, 36, 56, 0.06);
  background:
    linear-gradient(135deg, #fff 0%, #f7fbff 100%);
}

body.a2z-white .a2z-hotels-feature__img {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 36, 56, 0.1);
}

body.a2z-white .a2z-hotels-feature__img img {
  transition: transform 0.5s var(--a2z-ease-out);
}

body.a2z-white .a2z-hotels-feature:hover .a2z-hotels-feature__img img {
  transform: scale(1.03);
}

/* Why A2Z */
body.a2z-php1 .a2z-why-card {
  border-radius: 14px;
  padding: 22px;
}

.a2z-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--a2z-success-soft);
  color: var(--a2z-success);
}

.a2z-why-a2z__photo,
body.a2z-php1 .a2z-why-a2z__photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--a2z-shadow-lift);
}

/* How-it-works SEO steps */
body.a2z-php1 .a2z-how-seo-list li {
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--a2z-ease-out);
}

body.a2z-php1 .a2z-how-seo-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

body.a2z-php1 .a2z-scroll-story-seo__title {
  font-family: var(--a2z-font-display);
  letter-spacing: -0.03em;
}

/* FAQ */
.a2z-faq-item {
  border-radius: 14px;
}

.a2z-faq-item__trigger {
  letter-spacing: -0.015em;
  transition: background 0.15s ease;
}

.a2z-faq-item__trigger:hover {
  background: var(--a2z-surface-soft);
}

.a2z-faq-item.is-open {
  border-color: rgba(47, 122, 176, 0.35);
  box-shadow: 0 8px 24px rgba(15, 36, 56, 0.06);
}

/* Support / footer — brand purple → navy continuity (final override) */
body.a2z-white .a2z-support-band,
body.a2z-php1 .a2z-support-band {
  background:
    radial-gradient(900px 360px at 12% 0%, rgba(0, 136, 240, 0.28), transparent 55%),
    linear-gradient(155deg, #0f172a 0%, #4c1d95 48%, #2e1065 100%) !important;
}

.a2z-support-band__card {
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--a2z-ease-out);
}

.a2z-support-band__card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.a2z-footer,
footer.a2z-footer,
body.a2z-php1 .a2z-footer,
body.a2z-white .a2z-footer {
  background:
    radial-gradient(800px 300px at 85% 0%, rgba(0, 136, 240, 0.22), transparent 55%),
    linear-gradient(180deg, #4c1d95 0%, #0f172a 100%) !important;
  overflow: hidden;
}

.a2z-footer::after {
  color: rgba(255, 255, 255, 0.07);
}

.a2z-footer a {
  transition: color 0.15s ease;
}

/* Reviews */
.a2z-review-card {
  border-radius: 14px;
  border: 1px solid var(--a2z-border);
  background: #fff;
  box-shadow: 0 6px 20px rgba(15, 36, 56, 0.05);
}

/* Reveal motion — disabled dual system; .fl-reveal in a2z-first-light.css owns this */
.a2z-reveal {
  opacity: 1;
  transform: none;
}

/* Hero entrance (CSS-only, no content change) */
@keyframes a2z-hero-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

body.a2z-home .a2z-hero__grid > div:first-child,
body.a2z-home .a2z-search-card {
  animation: a2z-hero-in 0.7s var(--a2z-ease-out) both;
}

body.a2z-home .a2z-search-card {
  animation-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .a2z-reveal,
  .a2z-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  body.a2z-home .a2z-hero__grid > div:first-child,
  body.a2z-home .a2z-search-card {
    animation: none !important;
  }
  body.a2z-white .a2z-service-card:hover,
  body.a2z-white .a2z-offer-card:hover,
  body.a2z-white .a2z-airport-card:hover,
  body.a2z-white .a2z-why-card:hover,
  body.a2z-white .a2z-parking-card:hover,
  body.a2z-white .a2z-product-card:hover,
  .a2z-btn--primary:hover,
  .btn-gold:hover,
  .a2z-btn-book:hover {
    transform: none !important;
  }
}

@media (max-width: 639px) {
  body.a2z-white .a2z-hero {
    min-height: auto;
    padding: 36px 0 48px;
  }
  body.a2z-white .a2z-hero__headline {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem) !important;
    max-width: 14ch !important;
  }
  body.a2z-white .a2z-search-card {
    border-radius: 16px;
  }
  body.a2z-site.a2z-php1 {
    background-attachment: scroll;
  }
}

