/* ──────────────────────────────────────────────────────────────────────────
   Aerfortel — Main stylesheet
   Aesthetic: Refined travel editorial. Deep navy + warm gold. DM Sans + Playfair.
   ────────────────────────────────────────────────────────────────────────── */

/* ── Design tokens ────────────────────────────────────────────────────────── */
:root {
  --navy:        #0d1f3c;
  --navy-mid:    #162d54;
  --navy-light:  #1e3a6a;
  --gold:        #c9a84c;
  --gold-light:  #e8c96d;
  --cream:       #faf8f4;
  --white:       #ffffff;
  --ink:         #1a1a2e;
  --ink-mid:     #3d4560;
  --ink-light:   #6b728e;
  --border:      #e4e6f0;
  --border-mid:  #c8cce0;
  --green:       #1a7a4a;
  --green-light: #e8f5ee;
  --blue-accent: #1a73e8;
  --shuttle-bg:  #e8f0fe;
  --shuttle-fg:  #1a73e8;
  --park-bg:     #e8f5ee;
  --park-fg:     #1a7a4a;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 100px;

  --shadow-sm:   0 1px 4px rgba(13,31,60,0.08);
  --shadow-md:   0 4px 16px rgba(13,31,60,0.10);
  --shadow-lg:   0 8px 32px rgba(13,31,60,0.13);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --container:   1200px;
  --gutter:      24px;
}

/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Container ────────────────────────────────────────────────────────────── */
.aero-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.aero-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.aero-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

/* Logo */
.aero-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.aero-logo__icon {
  font-size: 20px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.6));
}
.aero-logo__wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.aero-logo__wordmark span { color: var(--gold); }

/* Nav */
.aero-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.aero-nav__list a {
  color: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.aero-nav__list a:hover,
.aero-nav__list .current-menu-item a {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}

/* Mobile toggle */
.aero-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.aero-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.aero-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 100px;
  overflow: hidden;
}

/* Animated background orbs */
.aero-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.aero-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: aero-float 8s ease-in-out infinite alternate;
}
.aero-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  top: -150px;
  right: -100px;
}
.aero-hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #3a6fd8, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation-delay: -4s;
}
@keyframes aero-float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -20px) scale(1.05); }
}

.aero-hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.aero-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.aero-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.aero-hero__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: aero-pulse 2s infinite;
}
@keyframes aero-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.aero-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.aero-hero__title-accent {
  color: var(--gold);
  display: block;
}

.aero-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* Stats strip */
.aero-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.aero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aero-stat__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.aero-stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.aero-stat__sep {
  font-size: 24px;
  color: rgba(255,255,255,0.2);
}

.aero-filter-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* ── Search bar ────────────────────────────────────────────────────────────── */
.aero-search-wrap { position: relative; max-width: 640px; margin: 0 auto; }
.aero-search-inner {
  position: relative;
  display: flex;
  align-items: center;
}
.aero-search-icon-left {
  position: absolute;
  left: 20px;
  color: var(--ink-light);
  pointer-events: none;
  z-index: 1;
  display: flex;
}
.aero-search-field {
  width: 100%;
  padding: 16px 20px 16px 52px;
  font-family: var(--font-body);
  font-size: 16px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.10);
  color: var(--white);
  outline: none;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.aero-section .aero-search-field,
.aero-page .aero-search-field {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.aero-search-field::placeholder { color: rgba(255,255,255,0.45); }
.aero-section .aero-search-field::placeholder,
.aero-page .aero-search-field::placeholder { color: var(--ink-light); }
.aero-search-field:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}
.aero-section .aero-search-field:focus,
.aero-page .aero-search-field:focus {
  border-color: var(--blue-accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
}

.aero-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}

/* ── Filter pills ──────────────────────────────────────────────────────────── */
.aero-filters,
.aero-filter-row .aero-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.aero-filter-pill {
  padding: 7px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: all 0.15s;
}
.aero-filter-pill:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.aero-filter-pill.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
/* Light context filters */
.aero-page .aero-filter-pill,
.aero-toolbar .aero-filter-pill {
  background: var(--white);
  border-color: var(--border);
  color: var(--ink-mid);
}
.aero-page .aero-filter-pill:hover,
.aero-toolbar .aero-filter-pill:hover { border-color: var(--navy); color: var(--navy); }
.aero-page .aero-filter-pill.is-active,
.aero-toolbar .aero-filter-pill.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
.aero-section { padding: 64px 0; }
.aero-section--airports { background: var(--white); }
.aero-section--countries { background: var(--cream); }
.aero-section--how { background: var(--navy); }

.aero-section-head { margin-bottom: 36px; }
.aero-section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.aero-section--how .aero-section-title { color: var(--white); }
.aero-section-sub { font-size: 15px; color: var(--ink-light); }
.aero-section--how .aero-section-sub { color: rgba(255,255,255,0.5); }

/* ── Airport chips ─────────────────────────────────────────────────────────── */
.aero-airport-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.aero-airport-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.aero-airport-chip:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.aero-airport-chip__iata {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  min-width: 44px;
  letter-spacing: 0.02em;
}
.aero-airport-chip__body { flex: 1; }
.aero-airport-chip__name { display: block; font-size: 14px; font-weight: 500; color: var(--ink); }
.aero-airport-chip__city { font-size: 12px; color: var(--ink-light); }
.aero-airport-chip__arrow { color: var(--ink-light); margin-left: auto; }

/* ── Country grid ──────────────────────────────────────────────────────────── */
.aero-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.aero-country-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.15s, box-shadow 0.15s;
  font-size: 14px;
}
.aero-country-card:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.aero-country-card__flag { font-size: 22px; line-height: 1; width: 32px; height: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aero-country-card__flag img.emoji { width: 32px !important; height: 24px !important; object-fit: contain; display: block; }
.aero-country-card__name { font-weight: 500; color: var(--ink); flex: 1; }
.aero-country-card__count { font-size: 11px; color: var(--ink-light); white-space: nowrap; }
.aero-country-card__arrow { color: var(--border-mid); flex-shrink: 0; }

/* ── How it works steps ────────────────────────────────────────────────────── */
.aero-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.aero-step { text-align: center; padding: 0 16px; }
.aero-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.aero-step__icon { font-size: 32px; margin-bottom: 12px; display: block; }
.aero-step__title { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.aero-step__desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── Hotel cards ───────────────────────────────────────────────────────────── */
.aero-hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.aero-hotel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.aero-hotel-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.aero-hotel-card__img-wrap { display: block; overflow: hidden; height: 190px; }
.aero-hotel-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.aero-hotel-card:hover .aero-hotel-card__img-wrap img { transform: scale(1.04); }
.aero-hotel-card__img-wrap--placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
}

.aero-hotel-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.aero-hotel-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; }
.aero-stars { color: var(--gold); letter-spacing: 1px; }
.aero-score { font-weight: 600; color: var(--green); }
.aero-dist { color: var(--ink-light); }
.aero-dist::before { content: '📍 '; }

.aero-hotel-card__title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.aero-hotel-card__title a { color: inherit; }
.aero-hotel-card__title a:hover { color: var(--navy); }
.aero-hotel-card__excerpt { font-size: 13px; color: var(--ink-light); line-height: 1.5; margin-bottom: 12px; flex: 1; }

/* ── Badges ────────────────────────────────────────────────────────────────── */
.aero-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.aero-badge { padding: 3px 10px; font-size: 11px; font-weight: 500; border-radius: var(--radius-pill); background: var(--border); color: var(--ink-mid); }
.aero-badge--park    { background: var(--park-bg);    color: var(--park-fg); }
.aero-badge--shuttle { background: var(--shuttle-bg); color: var(--shuttle-fg); }

/* ── CTA button ────────────────────────────────────────────────────────────── */
.aero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
  align-self: flex-start;
  margin-top: auto;
}
.aero-cta:hover { background: var(--navy-light); }

/* ── Page layout ───────────────────────────────────────────────────────────── */
.aero-page { padding: 36px 0 80px; min-height: 60vh; }
.aero-page-header { margin-bottom: 32px; }
.aero-page-flag { font-size: 48px; display: block; margin-bottom: 12px; }
.aero-page-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.aero-page-intro { font-size: 17px; color: var(--ink-mid); max-width: 640px; line-height: 1.65; }

/* ── Breadcrumb ────────────────────────────────────────────────────────────── */
.aerfortel-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--ink-light);
}
.aerfortel-breadcrumb a { color: var(--blue-accent); }
.aerfortel-breadcrumb a:hover { text-decoration: underline; }
.aerfortel-breadcrumb__sep { color: var(--border-mid); }

/* ── Toolbar ────────────────────────────────────────────────────────────────── */
.aero-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.aero-distance-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
}
.aero-select {
  padding: 7px 32px 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b728e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* ── Airport page specifics ────────────────────────────────────────────────── */
.aero-airport-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.aero-airport-header__left { display: flex; align-items: flex-start; gap: 20px; }

.aero-iata-badge {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  line-height: 1;
}
.aero-airport-location { font-size: 15px; color: var(--ink-light); margin-top: 6px; }
.aero-icao { font-size: 13px; background: var(--border); padding: 2px 8px; border-radius: 4px; }

.aero-airport-facts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.aero-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.aero-fact__val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.aero-fact__label { font-size: 11px; color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

.aero-airport-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.aero-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.aero-info-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.aero-info-card p  { font-size: 14px; color: var(--ink-mid); line-height: 1.65; }

/* ── City: airport selector ────────────────────────────────────────────────── */
.aero-airport-selector { display: flex; flex-direction: column; gap: 12px; max-width: 640px; }
.aero-airport-select-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.aero-airport-select-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.aero-airport-select-card__iata {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  min-width: 60px;
}
.aero-airport-select-card__body { flex: 1; }
.aero-airport-select-card__body strong { display: block; font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.aero-airport-select-card__body span  { font-size: 13px; color: var(--ink-light); }

/* ── Country: city list ────────────────────────────────────────────────────── */
.aero-city-list { margin-top: 32px; }
.aero-city-group { margin-bottom: 48px; }
.aero-city-group__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.aero-city-group__name a { color: inherit; }
.aero-city-group__name a:hover { color: var(--blue-accent); }
.aero-city-group__count { font-family: var(--font-body); font-size: 13px; color: var(--ink-light); font-weight: 400; }

.aero-airport-list { display: flex; flex-direction: column; gap: 8px; }
.aero-airport-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.aero-airport-row:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.aero-airport-row__iata { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--navy); min-width: 46px; }
.aero-airport-row__name { display: block; font-size: 15px; font-weight: 500; color: var(--ink); }
.aero-airport-row__meta { font-size: 12px; color: var(--ink-light); margin-top: 2px; display: block; }
.aero-arrow { color: var(--border-mid); margin-left: auto; flex-shrink: 0; }

/* ── Hotel page ────────────────────────────────────────────────────────────── */
.aero-hotel-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.aero-hotel-header { margin-bottom: 28px; }
.aero-stars--lg { font-size: 20px; color: var(--gold); letter-spacing: 2px; display: block; margin-bottom: 8px; }
.aero-hotel-header__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; align-items: center; }

.aero-score-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.aero-dist-badge, .aero-near-badge {
  font-size: 14px;
  color: var(--ink-mid);
}
.aero-near-badge a { color: var(--blue-accent); }

.aero-hotel-hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.aero-hotel-hero__img { width: 100%; height: 340px; object-fit: cover; }
.aero-hotel-desc { font-size: 15px; line-height: 1.75; color: var(--ink-mid); margin-bottom: 40px; }

/* Services */
.aero-services h2 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 16px; }
.aero-service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 40px; }
.aero-service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.aero-service-card--park    { background: var(--park-bg);    border-color: rgba(26,122,74,0.2); }
.aero-service-card--shuttle { background: var(--shuttle-bg); border-color: rgba(26,115,232,0.2); }
.aero-service-card__icon { font-size: 28px; margin-bottom: 10px; }
.aero-service-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.aero-service-card p  { font-size: 13px; color: var(--ink-mid); line-height: 1.55; }

/* Amenities */
.aero-amenities h2 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 16px; }
.aero-amenity-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.aero-amenity-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-mid); }
.aero-amenity-tick { color: var(--green); font-weight: 600; flex-shrink: 0; }

/* Booking sidebar */
.aero-hotel-sidebar { position: sticky; top: 84px; }
.aero-booking-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.aero-booking-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 18px; }
.aero-booking-times { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.aero-booking-times__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-light); margin-bottom: 3px; }
.aero-booking-times__val   { font-size: 16px; font-weight: 600; color: var(--navy); }
.aero-booking-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.aero-book-btn--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
  margin-bottom: 16px;
}
.aero-book-btn--primary:hover { background: var(--navy-light); }
.aero-booking-card__airport { font-size: 13px; color: var(--ink-light); text-align: center; }
.aero-booking-card__airport a { color: var(--blue-accent); }

/* Maps */
.aero-map-wrap, .aero-hotel-map-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-top: 20px; }
.aero-map { height: 360px; width: 100%; }
.aero-hotel-map { height: 220px; width: 100%; }

/* SEO text */
.aero-seo-text {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.8;
  max-width: 720px;
}

/* Empty state */
.aero-empty-state, .aero-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--ink-light);
  font-size: 15px;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.aero-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 32px; margin-top: 80px; }
.aero-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.aero-logo--light .aero-logo__wordmark { color: var(--white); }
.aero-footer__tagline { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 10px; line-height: 1.6; }
.aero-footer__nav h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.aero-footer__nav ul { display: flex; flex-direction: column; gap: 8px; }
.aero-footer__nav a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.aero-footer__nav a:hover { color: var(--white); }
.aero-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .aero-hotel-layout { grid-template-columns: 1fr; }
  .aero-hotel-sidebar { position: static; }
  .aero-airport-header { flex-direction: column; }
  .aero-footer__grid { grid-template-columns: 1fr 1fr; }
  .aero-steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .aero-header__inner { height: 56px; }
  .aero-nav { display: none; }
  .aero-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: var(--navy); padding: 16px; z-index: 99; }
  .aero-nav-toggle { display: flex; }
  .aero-hero { padding: 50px 0 70px; }
  .aero-hero__stats { flex-wrap: wrap; gap: 20px; }
  .aero-country-grid { grid-template-columns: repeat(2, 1fr); }
  .aero-airport-chips { grid-template-columns: 1fr; }
  .aero-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .aero-hotel-grid { grid-template-columns: 1fr; }
  .aero-service-cards { grid-template-columns: 1fr; }
  .aero-amenity-list { grid-template-columns: 1fr 1fr; }
  .aero-toolbar { flex-direction: column; align-items: flex-start; }
  var(--gutter): 16px;
}


/* ── Breadcrumb ────────────────────────────────────────────────────────────── */
.aero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.aero-breadcrumb a { color: var(--ink-light); text-decoration: none; }
.aero-breadcrumb a:hover { color: var(--navy); }

/* ── Airport card (used on country/city archive pages) ─────────────────────── */
.aero-airport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.aero-airport-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.aero-airport-card:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.aero-airport-card__iata {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
}
.aero-airport-card__name { font-size: 13px; font-weight: 500; color: var(--ink); }
.aero-airport-card__count { font-size: 11px; color: var(--ink-light); }
