/**
 * Aerodrom Tuzla landing — usklađeno s index.html (hero, sekcije, tema)
 * Učitava se nakon tailwind.css i responsive.css
 */

:root {
  --title-section-desktop: clamp(1.6rem, 4vw, 2.4rem);
  --title-section-mobile: clamp(1.3rem, 5vw, 1.85rem);
  --title-section-max-width: 22ch;
  --title-section-weight: 700;
  --text-lead-desktop: clamp(1rem, 2vw, 1.25rem);
  --text-lead-mobile: clamp(0.9rem, 3vw, 1.1rem);
  --text-lead-max-width: 50ch;
  --kicker-size: 0.75rem;
  --kicker-spacing: 0.1em;
  --kicker-color: #f59e0b;
  --kicker-color-light: #d97706;
  --section-padding-desktop: 4rem;
  --section-padding-mobile: 2.5rem;
  --content-gap-desktop: 1.5rem;
  --content-gap-mobile: 1rem;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body.landing-page {
  background:
    radial-gradient(circle at top, rgba(59, 130, 246, 0.12), transparent 38%),
    linear-gradient(180deg, var(--public-bg-soft) 0%, var(--public-bg) 100%);
  color: var(--public-text);
}

.landing-page * {
  box-sizing: border-box;
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-page main {
  position: relative;
  z-index: 1;
}

.landing-page section {
  position: relative;
  padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
  .landing-page section {
    padding: var(--section-padding-desktop) 0;
  }
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.85rem 1.25rem;
  background: #f59e0b;
  color: #0f172a;
  font-weight: 700;
  border-radius: 0.75rem;
}

.fixed-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.48) 0%, rgba(15, 23, 42, 0.28) 36%, rgba(15, 23, 42, 0.62) 100%);
}

html[data-theme="light"] .overlay {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.76) 0%, rgba(248, 250, 252, 0.48) 35%, rgba(241, 245, 249, 0.82) 100%);
}

/* Usklađeno s index.html: izbjegavati hidden+visible overflow par na mainu; horizontalno i dalje body. */
.scroll-container {
  overflow: visible;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

/* Hero: breadcrumb ispod headera — dodatni prostor */
#home {
  padding-top: calc(var(--header-h-mobile) + 2.5rem);
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  scroll-margin-top: calc(var(--header-h-mobile) + 0.75rem);
  overflow: visible;
}

#kako-radi {
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  #kako-radi {
    padding-top: 2.25rem;
  }
}

#kako-radi,
#faq,
#o-aerodromu {
  scroll-margin-top: calc(var(--header-h-mobile) + 0.75rem);
}

@media (min-width: 1024px) {
  #home {
    padding-top: calc(var(--header-h-desktop) + 2.25rem);
  }
}

.hero-shell {
  width: 100%;
  max-width: var(--container-max, 1280px);
  min-width: 0;
  margin: 0 auto;
  overflow: visible;
}

.hero-layout {
  display: grid;
  gap: clamp(0.9rem, 0.55rem + 1.4vmin, 1.75rem);
  grid-template-columns: 1fr;
}

.hero-copy,
.hero-booking-card {
  min-width: 0;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 1.15rem;
  padding: 1.35rem;
}

.hero-copy::before,
.hero-booking-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-copy::before {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.hero-booking-card::before {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14), 0 12px 24px rgba(0, 0, 0, 0.06);
}

html[data-theme="dark"] .hero-copy::before {
  background: rgba(15, 23, 42, 0.62);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 48px rgba(2, 8, 23, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html[data-theme="dark"] .hero-booking-card::before {
  background: rgba(15, 23, 42, 0.62);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 12px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-copy {
  display: grid;
  gap: clamp(0.88rem, 0.55rem + 1.1vw, 1.2rem);
  overflow: visible;
  padding-top: 1.35rem;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
  padding-bottom: clamp(1.55rem, 1.28rem + 0.55vw, 2.15rem);
}

#hero-reviews {
  overflow: visible;
  min-width: 0;
}

.hero-proof-placeholder {
  overflow: visible;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-chip,
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.hero-chip i,
.hero-trust-item i {
  color: #f59e0b;
}

html[data-theme="dark"] .hero-chip,
html[data-theme="dark"] .hero-trust-item {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  box-shadow: none;
}

.hero-eyebrow {
  font-size: var(--kicker-size);
  text-transform: uppercase;
  letter-spacing: var(--kicker-spacing);
  color: var(--kicker-color);
  font-weight: 700;
}

html[data-theme="light"] .hero-eyebrow {
  color: var(--kicker-color-light);
}

html[data-theme="dark"] .hero-eyebrow {
  color: #fbbf24;
  text-shadow: 0 1px 2px rgba(2, 6, 23, 0.55);
}

@media (max-width: 768px) {
  .hero-eyebrow {
    font-size: 0.7rem;
  }
}

.hero-headline {
  color: var(--public-title);
  letter-spacing: -0.04em;
  text-wrap: balance;
  font-size: var(--title-section-desktop);
  line-height: 1.15;
  max-width: var(--title-section-max-width);
  font-weight: var(--title-section-weight);
}

.hero-headline .hero-headline-accent {
  color: #fbbf24;
  font-weight: 800;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: var(--title-section-mobile);
    line-height: 1.2;
  }
}

.hero-subtext {
  color: var(--public-text-muted);
  font-size: var(--text-lead-desktop);
  max-width: var(--text-lead-max-width);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-subtext {
    font-size: var(--text-lead-mobile);
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-trust-strip {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr;
}

.hero-primary-btn,
.hero-secondary-btn {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.2rem;
  border-radius: 1rem;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-primary-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(234, 88, 12, 0.28);
}

.hero-secondary-btn {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

html[data-theme="dark"] .hero-secondary-btn {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-primary-btn:hover,
.hero-secondary-btn:hover {
  transform: translateY(-2px);
}

.hero-booking-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: start;
}

.airport-service-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--public-border);
}

.airport-service-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.airport-service-icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.airport-service-title {
  color: var(--public-title);
  font-weight: 700;
  font-size: 0.92rem;
}

.airport-service-desc {
  color: var(--public-text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  margin-top: 0.15rem;
}

.card-eyebrow {
  font-size: var(--kicker-size);
  text-transform: uppercase;
  letter-spacing: var(--kicker-spacing);
  color: var(--kicker-color);
  font-weight: 700;
}

html[data-theme="light"] .card-eyebrow {
  color: var(--kicker-color-light);
}

html[data-theme="dark"] .card-eyebrow {
  color: #fbbf24;
}

.card-title {
  font-size: 1.35rem;
  line-height: 1.15;
  color: var(--public-title);
  font-weight: 700;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(21rem, 0.75fr);
    grid-template-rows: auto;
    align-items: start;
    gap: clamp(0.85rem, 0.5rem + 1.1vw, 1.2rem);
  }

  .hero-copy {
    padding-top: 1.4rem;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    padding-bottom: clamp(1.68rem, 1.42rem + 0.6vw, 2.2rem);
    gap: clamp(0.88rem, 0.6rem + 0.9vw, 1.05rem);
    align-self: start;
    height: fit-content;
    min-height: min-content;
  }

  .hero-booking-card {
    padding: 1.35rem;
    height: fit-content;
  }

  .hero-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 1280px) {
  .hero-trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Sekcije ispod heroa */
.content-section {
  z-index: 1;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.section-shell {
  display: grid;
  gap: var(--content-gap-mobile);
  max-width: min(90vw, 1200px);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-shell {
    gap: var(--content-gap-desktop);
  }
}

.section-header {
  display: grid;
  gap: 0.7rem;
  max-width: 44rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--public-border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

html[data-theme="dark"] .section-header {
  background: rgba(8, 15, 29, 0.58);
  box-shadow: 0 12px 26px rgba(2, 8, 23, 0.26);
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header--center .section-title {
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  font-size: var(--kicker-size);
  text-transform: uppercase;
  letter-spacing: var(--kicker-spacing);
  color: var(--kicker-color);
  font-weight: 700;
}

html[data-theme="light"] .section-kicker {
  color: var(--kicker-color-light);
}

html[data-theme="dark"] .section-kicker {
  color: #fbbf24;
  text-shadow: 0 1px 2px rgba(2, 6, 23, 0.55);
}

.section-title {
  font-size: var(--title-section-desktop);
  line-height: 1.15;
  max-width: var(--title-section-max-width);
  font-weight: var(--title-section-weight);
  color: var(--public-title);
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--title-section-mobile);
    line-height: 1.2;
  }
}

.section-text {
  color: var(--public-text-muted);
  font-size: var(--text-lead-desktop);
  line-height: 1.65;
  max-width: var(--text-lead-max-width);
}

@media (max-width: 768px) {
  .section-text {
    font-size: var(--text-lead-mobile);
  }
}

/* Kartice: preuzimanje / vraćanje */
.airport-step-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .airport-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.airport-step-card {
  min-width: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  border-radius: 1.15rem;
  padding: 1.35rem;
}

html[data-theme="dark"] .airport-step-card {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(2, 8, 23, 0.28);
}

.airport-step-card--pickup {
  border-color: rgba(16, 185, 129, 0.25);
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}

html[data-theme="dark"] .airport-step-card--pickup {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.35) 0%, rgba(15, 23, 42, 0.92) 100%);
  border-color: rgba(52, 211, 153, 0.2);
}

.airport-step-card--return {
  border-color: rgba(59, 130, 246, 0.3);
}

.airport-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.airport-step-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.airport-step-icon--green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.airport-step-icon--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.airport-step-card h3 {
  color: var(--public-title);
  font-size: 1.05rem;
  font-weight: 700;
}

.airport-step-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--public-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cta-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.5rem;
  border-radius: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(234, 88, 12, 0.28);
  transition: transform 0.2s ease;
}

.cta-btn-solid:hover {
  transform: translateY(-2px);
}

/* FAQ panel */
.airport-faq-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  border-radius: 1.15rem;
  padding: 1.35rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

html[data-theme="dark"] .airport-faq-panel {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(2, 8, 23, 0.28);
}

.airport-faq-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.35rem;
}

@media (min-width: 768px) {
  .airport-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }
}

.airport-faq-block h3 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--public-title);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.airport-faq-block h3 i {
  color: #f59e0b;
}

.airport-faq-q {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--public-title);
  margin-bottom: 0.2rem;
}

.airport-faq-a {
  font-size: 0.75rem;
  color: var(--public-text-muted);
  line-height: 1.55;
  margin-bottom: 0.65rem;
}

/* SEO članak */
.seo-content-section .airport-seo-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  border-radius: 1.15rem;
  padding: 1.75rem 1.35rem;
  max-width: 900px;
  margin: 0 auto;
}

html[data-theme="dark"] .airport-seo-panel {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
}

.seo-article h2 {
  color: var(--public-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.seo-article h3 {
  color: var(--public-title);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.seo-article p,
.seo-article li {
  color: var(--public-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.seo-article ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

/* === Vase brige, nasi odgovori (Build 502) === */
.airport-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.airport-trust-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-left: 3px solid #1D9E75;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.airport-trust-card:hover {
  transform: translateY(-2px);
  border-left-color: #2BC093;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.airport-trust-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(29, 158, 117, 0.15);
  color: #2BC093;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.airport-trust-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: var(--public-title);
  line-height: 1.35;
}
.airport-trust-card__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--public-text-muted);
  margin: 0;
}
.airport-trust-card__desc strong {
  color: var(--public-title);
}
[data-theme="light"] .airport-trust-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.12);
  border-left-color: #1D9E75;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
}

/* Tamna tema + fixed-bg: čitljivost naslova i opisa na slici aerodroma */
html:not([data-theme="light"]) .landing-page .airport-trust-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(17, 24, 39, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: #1d9e75;
  box-shadow: 0 20px 54px rgba(2, 8, 23, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html:not([data-theme="light"]) .landing-page .airport-trust-card__title,
html:not([data-theme="light"]) .landing-page .airport-trust-card__desc strong {
  color: #ffffff;
}

html:not([data-theme="light"]) .landing-page .airport-trust-card__desc {
  color: rgba(226, 232, 240, 0.94);
}

html:not([data-theme="light"]) .landing-page .airport-trust-card:hover {
  border-left-color: #2bc093;
  box-shadow: 0 24px 62px rgba(2, 8, 23, 0.64), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
  .airport-trust-card {
    padding: 1.15rem;
  }
}

/* Fleksibilnost — reupotreba step kartice sa lakom prilagodbom */
.airport-step-grid--flex {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.airport-step-grid--flex .airport-step-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--public-text-muted);
  margin: 0.5rem 0 0;
}
.airport-step-grid--flex .airport-step-card p strong {
  color: var(--public-title);
}

/* === Kljucne cinjenice fact box (Build 503 — AI-friendly) === */
.airport-key-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem 1.25rem;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg, rgba(255, 255, 255, 0.04));
  border: 1px solid var(--card-border, rgba(255, 255, 255, 0.08));
  border-left: 3px solid #1D9E75;
  border-radius: 12px;
}
.airport-key-facts > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.airport-key-facts dt {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2BC093;
  margin: 0;
}
.airport-key-facts dd {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--public-text-muted);
  margin: 0;
}
[data-theme="light"] .airport-key-facts {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.1);
  border-left-color: #1D9E75;
}

html:not([data-theme="light"]) .landing-page .airport-key-facts {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
  border-left-color: #1d9e75;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(2, 8, 23, 0.35);
}
