/* ═══════════════════════════════════════════════
airport-1.css — Hero
   ═══════════════════════════════════════════════ */

:root {
  --green-hero:  #0d3d22;
  --green-dark:  #145228;
  --white:       #ffffff;
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

/* ── SECTION WRAPPER ───────────────────────────── */
.airport-1 {
  width: 100%;
  padding: 80px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
}

/* ── CARD ──────────────────────────────────────── */
.airport-1__card {
  position: relative;
  width: 100%;
  max-width: 1160px;
  border-radius: 300px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 80px 52px;
  background: var(--green-hero);
}

/* Clip hanya untuk bg image + overlay */
.airport-1__clip {
  position: absolute;
  inset: 0;
  border-radius: 300px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.airport-1__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
}

.airport-1__clip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,82,40,0.1) 0%,
    rgba(20,82,40,0.5) 100%
  );
}

/* ── CONTENT ───────────────────────────────────── */
.airport-1__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  animation: fadeUp 0.65s ease both;
}

.airport-1__title {
  font-family: 'Poppins', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-top: 25px;
  margin-bottom: 25px;
  max-width: 900px;
  letter-spacing: -0.01em;
}

.airport-1__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* ── BUTTONS ───────────────────────────────────── */
.airport-1__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  max-width: 860px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.65s 0.15s ease both;
}

.airport-1__btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  border: 2.5px solid var(--white);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.airport-1__btn--primary {
  background: var(--white);
  color: var(--green-dark);
  min-width: 270px;
}

.airport-1__btn--secondary {
  background: transparent;
  color: var(--white);
  min-width: 270px;
}

.airport-1__btn:active {
  transform: translateY(0);
}

/* ── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
@keyframes floatY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-14px); }
}

/* ══════════════════════════════════════════════
     SECTION airport-02 
     ══════════════════════════════════════════════ */
 
/* ── SECTION ───────────────────────────────────── */
.airport02 {
  width: 100%;
  background: #ffffff;
  padding: 80px 40px 160px;
}
 
.airport02__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
 
/* ════════════════════════════════════════════════
   KIRI — heading + desc
   ════════════════════════════════════════════════ */
.airport02__left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
 
.airport02__left.visible { opacity: 1; transform: translateX(0); }
 
.airport02__title {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 24px;
}
 
.airport02__desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.875rem, 1.1vw, 0.95rem);
  font-weight: 400;
  color: #444;
  line-height: 1.80;
  text-align: justify;          /* justified seperti di desain */
  hyphens: auto;
}
 
/* ════════════════════════════════════════════════
   KANAN — 2×2 stat grid
   ════════════════════════════════════════════════ */
.airport02__right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease 0.12s, transform 0.6s ease 0.12s;
}
 
.airport02__right.visible { opacity: 1; transform: translateX(0); }
 
.airport02__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
 
/* ── STAT CARD ─────────────────────────────────── */
.airport02__stat {
  background: #eef4ef;
  border-radius: 8px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
 
.airport02__stat:hover {
  box-shadow: 0 6px 24px rgba(26, 77, 46, 0.12);
  transform: translateY(-3px);
}
 
/* Number / value */
.airport02__stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a5c2a;
  line-height: 1;
  letter-spacing: -0.02em;
}
 
/* Label */
.airport02__stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.3;
}
 
/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
 
@media (max-width: 1024px) {
  .airport02 { padding: 56px 28px 64px; }
  .airport02__inner { gap: 48px; }
  .airport02__stat { padding: 28px 22px 24px; }
}
 
@media (max-width: 740px) {
  .airport02 { padding: 44px 20px 52px; }
  .airport02__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .airport02__left  { transform: translateY(20px); }
  .airport02__right { transform: translateY(20px); transition-delay: 0.08s; }
  .airport02__desc  { text-align: left; hyphens: none; }
}
 
@media (max-width: 480px) {
  .airport02 { padding: 32px 14px 40px; }
  .airport02__inner { gap: 28px; }
  .airport02__stat { padding: 22px 18px 20px; border-radius: 6px; }
  .airport02__stat-number { font-size: 1.8rem; }
  .airport02__stat-label  { font-size: 0.78rem; }
}

/* ═══════════════════════════════════════════════
   CARGO 3 — BORN IN THE CLOUD
   ═══════════════════════════════════════════════ */
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.cargo3{
    display:grid;
    grid-template-columns:54% 48%;
    min-height:740px;
    width:100%;
    overflow:hidden;
}

/* ─────────────────────────
   IMAGE SIDE
───────────────────────── */
.cargo3__video{
    position:relative;
    overflow:hidden;
    width:100%;
    min-height:740px;
    background:#000;
}

.cargo3__video iframe{
    position:absolute;
    top:50%;
    left:50%;

    width:300%;
    height:100%;

    transform:translate(-50%, -50%);

    border:0;
    pointer-events:none;
}

.cargo3__video::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.15),
            rgba(0,0,0,.35)
        );

    pointer-events:none;
}

/* ─────────────────────────
   GREEN PANEL
───────────────────────── */
.cargo3__panel{
    position:relative;
    background:#12452f;

    display:flex;
    flex-direction:column;
    justify-content:center;

    gap:32px;

    padding:90px 0px 90px 250px;

    clip-path:polygon(
        20% 0,
        100% 0,
        100% 100%,
        0 100%
    );

    margin-left:-200px;

    z-index:2;

    opacity:0;
    transform:translateX(40px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.cargo3__panel.visible{
    opacity:1;
    transform:translateX(0);
}

/* ─────────────────────────
   TITLE
───────────────────────── */
.cargo3__title{
    font-family:'Poppins',sans-serif;
    font-size: 48px;
    font-weight:700;
    line-height:1.2;
    color:#fff;
    max-width:600px;
}

/* ─────────────────────────
   DESCRIPTION
───────────────────────── */
.cargo3__desc{
    max-width:560px;

    font-family:'Poppins',sans-serif;
    font-size: 16px;
    line-height:1.8;
    text-align:justify;

    color:rgba(255,255,255,.82);
}

/* ═══════════════════════════════════════════════
   TABLET
   ═══════════════════════════════════════════════ */

@media (max-width:1024px){

    .cargo3{
        min-height:650px;
    }

    .cargo3__panel{
        padding:70px 60px 70px 120px;
    }

    .cargo3__title{
        font-size:2.4rem;
    }
}

/* ═══════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════ */

@media (max-width:740px){

    .cargo3{
        grid-template-columns:1fr;
        grid-template-rows:280px auto;
    }

    .cargo3__panel{
        margin-left:0;

        clip-path:none;

        padding:50px 36px 60px;

        transform:translateY(30px);
    }

    .cargo3__panel.visible{
        transform:translateY(0);
    }

    .cargo3__title{
        font-size:2rem;
    }

    .cargo3__desc{
        font-size:.95rem;
    }
}

@media (max-width:480px){

    .cargo3{
        grid-template-rows:220px auto;
    }

    .cargo3__panel{
        padding:40px 24px 50px;
        gap:24px;
    }

    .cargo3__title{
        font-size:1.7rem;
    }

    .cargo3__desc{
        font-size:.88rem;
        line-height:1.7;
    }
}

/* ══════════════════════════════════════════════
     SECTION airport-04 
     ══════════════════════════════════════════════ */
 
/* ── SECTION ───────────────────────────────────── */
.airport04 {
  width: 100%;
  background: #ffffff;
  padding: 160px 40px 80px;
}
 
.airport04__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
/* ── SHARED CARD ───────────────────────────────── */
.airport04__card {
  background: #eef4ef;
  border: 1.5px solid #1a5c2a;
  border-radius: 8px;
  padding: 32px 32px 60px;    /* tall bottom padding = card tinggi sesuai desain */
  display: flex;
  flex-direction: column;
 
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.28s ease;
}
 
.airport04__card.visible { opacity: 1; transform: translateY(0); }
 
.airport04__card:hover {
  box-shadow: 0 8px 28px rgba(26, 92, 42, 0.14);
  transform: translateY(-3px);
}
.airport04__card.visible:hover { transform: translateY(-3px); }
 
/* ── CARD TITLE ────────────────────────────────── */
.airport04__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 12px;
}
 
/* ── CARD DESC ─────────────────────────────────── */
.airport04__card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #444;
  line-height: 1.70;
}
 
/* ══════════════════════════════════════════════
   ROW 1: text kiri | FIDS kanan
   ══════════════════════════════════════════════ */
.airport04__row1 {
  display: grid;
  grid-template-columns: 92fr 45fr;
  gap: 20px;
  align-items: stretch;
}
 
/* ── LEFT TEXT ─────────────────────────────────── */
.airport04__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
 
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.airport04__text.visible { opacity: 1; transform: translateX(0); }
 
.airport04__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}
 
.airport04__desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.875rem, 1.1vw, 0.95rem);
  font-weight: 400;
  color: #444;
  line-height: 1.75;
  text-align: justify;
}
 
/* ══════════════════════════════════════════════
   ROW 2: BRS | AOC | KIOSK
   ══════════════════════════════════════════════ */
.airport04__row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
 
/* stagger cards */
.airport04__card:nth-child(1) { transition-delay: 0.00s; }
.airport04__card:nth-child(2) { transition-delay: 0.08s; }
.airport04__card:nth-child(3) { transition-delay: 0.16s; }
 
/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
 
@media (max-width: 1024px) {
  .airport04 { padding: 56px 28px 64px; }
  .airport04__card { padding: 26px 26px 50px; }
  .airport04__text { padding-right: 8px; }
}
 
@media (max-width: 740px) {
  .airport04 { padding: 44px 20px 52px; }
 
  .airport04__row1 { grid-template-columns: 1fr; }
  .airport04__row2 { grid-template-columns: 1fr; gap: 14px; }
 
  .airport04__text {
    transform: translateY(20px);
    padding-right: 0;
  }
 
  .airport04__card { padding: 24px 22px 40px; }
}
 
@media (max-width: 480px) {
  .airport04 { padding: 32px 14px 40px; }
  .airport04__title { font-size: 1.3rem; }
  .airport04__card { padding: 20px 18px 36px; border-radius: 6px; }
  .airport04__card-title { font-size: 1rem; }
  .airport04__card-desc  { font-size: 0.84rem; }
}

/* ═══════════════════════════════════════════════
   airport-2.css
   Row 1: FIDS (wide) | BRS (narrow)
   Row 2: AOC full-width (text+stats left | video right)
   Breakpoints: 1024 | 740 | 480
   ═══════════════════════════════════════════════ */

/* ── SECTION ───────────────────────────────────── */
.airport2 {
  width: 100%;
  background: #ffffff;
  padding: 72px 40px 80px;
}

.airport2__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── SHARED CARD ───────────────────────────────── */
.airport2__card {
  background: #f0f5f1;
  border: 1.5px solid #ccd8cc;
  border-radius: 8px;
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.airport2__card.visible { opacity: 1; transform: translateY(0); }

/* ── ICON ──────────────────────────────────────── */
.airport2__icon {
  width: 28px;
  height: 28px;
  color: #1a5c2a;
  margin-bottom: 14px;
}

.airport2__icon svg { width: 100%; height: 100%; }

/* ── TITLE ─────────────────────────────────────── */
.airport2__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #1a5c2a;
  line-height: 1.25;
  margin-bottom: 6px;
}

/* ── SUBTITLE / DESC ───────────────────────────── */
.airport2__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── DIVIDER ───────────────────────────────────── */
.airport2__divider {
  height: 1px;
  background: #ccd8cc;
  margin: 0 0 16px;
}

/* ════════════════════════════════════════════════
   ROW 1: FIDS (66%) | BRS (34%)
   ════════════════════════════════════════════════ */
.airport2__row1 {
  display: grid;
  grid-template-columns: 66fr 34fr;
  gap: 20px;
}

/* ── FIDS card ─────────────────────────────────── */
.airport2__fids {
  position: relative;
}

/* Top-right airplane icon */
.airport2__fids-icon {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 28px;
  height: 28px;
  color: #1a5c2a;
}

.airport2__fids-icon svg { width: 100%; height: 100%; }

/* Flight table */
.airport2__flight-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.airport2__flight-table thead tr {
  border-bottom: 1px solid #ccd8cc;
}

.airport2__flight-table thead th {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  padding: 0 0 10px;
  text-align: left;
}

.airport2__flight-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.airport2__flight-table tbody tr:last-child { border-bottom: none; }

.airport2__flight-table tbody td {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a5c2a;
  padding: 14px 0;
}

/* Status col — colored */
.airport2__flight-table tbody td:last-child {
  text-align: right;
  font-weight: 600;
}

/* FIDS footer */
.airport2__fids-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 12px;
}

.airport2__fids-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
}

.airport2__config-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease;
}

.airport2__config-link:hover { color: #1a5c2a; }

/* ── BRS card ──────────────────────────────────── */
.airport2__brs {
  display: flex;
  flex-direction: column;
}

/* Metric pill rows */
.airport2__metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.airport2__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a4d2e;
  border-radius: 4px;
  padding: 11px 16px;
  gap: 12px;
}

.airport2__metric-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}

.airport2__metric-value {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.airport2__brs-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #444;
  line-height: 1.65;
  margin-top: auto;
}

/* ════════════════════════════════════════════════
   ROW 2: AOC — text+stats kiri | video kanan
   ════════════════════════════════════════════════ */
.airport2__row2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.airport2__aoc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* left body */
.airport2__aoc-left {
  display: flex;
  flex-direction: column;
  padding-right: 48px;
}

/* stat mini-cards */
.airport2__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.airport2__stat {
  background: #ffffff;
  border: 1px solid #ccd8cc;
  border-radius: 4px;
  padding: 16px 18px;
}

.airport2__stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 4px;
}

.airport2__stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #555;
  line-height: 1.3;
}

/* explore button */
.airport2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: #1a4d2e;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.25s ease, transform 0.2s ease;
}

.airport2__btn:hover { background: #0f3d1a; transform: translateY(-2px); }

/* right: video/screenshot */
.airport2__aoc-right {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 260px;
  background: #0d1f2d;
}

.airport2__video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.85;
}

/* play button overlay */
.airport2__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.airport2__play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.2s ease;
}

.airport2__play:hover .airport2__play-btn {
  background: rgba(255,255,255,0.28);
  transform: scale(1.08);
}

.airport2__play-btn svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
  margin-left: 3px; /* optical center for triangle */
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .airport2 { padding: 56px 28px 64px; }
  .airport2__card { padding: 28px 28px 32px; }
  .airport2__fids-icon { top: 28px; right: 28px; }
  .airport2__aoc-left { padding-right: 32px; }
}

@media (max-width: 740px) {
  .airport2 { padding: 44px 20px 52px; }

  .airport2__row1 { grid-template-columns: 1fr; }

  .airport2__aoc {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .airport2__aoc-left { padding-right: 0; }

  .airport2__aoc-right { min-height: 220px; }
}

@media (max-width: 480px) {
  .airport2 { padding: 32px 14px 40px; }
  .airport2__card { padding: 22px 18px 26px; }
  .airport2__stats { grid-template-columns: 1fr 1fr; }
  .airport2__stat-number { font-size: 1.3rem; }
  .airport2__aoc-right { min-height: 180px; }
  .airport2__flight-table tbody td { font-size: 0.75rem; padding: 11px 0; }
}

/* ═══════════════════════════════════════════════
   airport-3.css — Testimonial Section
   ═══════════════════════════════════════════════ */

/* ── SECTION ─────────────────────────────────── */
.airport-3 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;

  background-image: url('/assets/airport/detail-4-bg.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #2a3540;
}

.airport-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 38, 0.62);
  pointer-events: none;
  z-index: 0;
}

/* ── MODAL CARD ──────────────────────────────── */
.airport-3__modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  background: rgba(220, 228, 236, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 6px;
  padding: 52px 56px 56px;

  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.airport-3__modal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── GLOBE ICON ──────────────────────────────── */
.airport-3__globe {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.80);
}

.airport-3__globe svg {
  width: 22px;
  height: 22px;
}

/* ── BODY ────────────────────────────────────── */
.airport-3__body {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 40px;
}

/* ── DIVIDER ─────────────────────────────────── */
.airport-3__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
  align-self: stretch;
}

/* ── COLUMN ──────────────────────────────────── */
.airport-3__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── LANG LABEL ──────────────────────────────── */
.airport-3__lang {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.60);
}

/* ── QUOTE ───────────────────────────────────── */
.airport-3__quote {
  font-size: clamp(0.90rem, 1.1vw, 1.02rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.80;
}

/* ── ATTRIBUTION ─────────────────────────────── */
.airport-3__attr {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 740px) {
  .airport-3 { background-attachment: scroll; padding: 48px 16px; }
  .airport-3__modal { padding: 40px 32px 44px; }
  .airport-3__body { grid-template-columns: 1fr; }
  .airport-3__divider {
    width: 100%;
    height: 1px;
    margin: 32px 0;
    align-self: auto;
  }
}

@media (max-width: 480px) {
  .airport-3__modal { padding: 32px 24px 36px; }
  .airport-3__quote { font-size: 0.88rem; }
}

/* ══════════════════════════════════════════════
     SECTION Airport-4 — Centered CTA
══════════════════════════════════════════════ */ 

.airport-4 {
  width: 100%;
  background: #ffffff;
  padding: 80px 40px 200px;
}
 
.airport-4__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
 
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
 
.airport-4__inner.visible {
  opacity: 1;
  transform: translateY(0);
}
 
.airport-4__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #1a5c2a;
  line-height: 1.2;
  margin-bottom: 16px;
}
 
.airport-4__desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.7;
  margin-top: 30px;
}
 
.airport-4__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
 
.airport-4__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  min-width: 300px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  margin-top: 10px;
}
 
.airport-4__btn--primary {
  background: #1a5c2a;
  color: #ffffff;
  border: 2px solid #1a5c2a;
}
 
.airport-4__btn--primary:hover {
  background: #0f3d1a;
  border-color: #0f3d1a;
  transform: translateY(-2px);
}
 
/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .airport-4 { padding: 80px 28px 200px; }
}
 
@media (max-width: 740px) {
  .airport-4 { padding: 60px 20px 120px; }
  .airport-4__btn { min-width: 200px; padding: 16px 24px; }
}
 
@media (max-width: 480px) {
  .airport-4 { 
    padding: 60px 15px 90px; 
  }
  .airport-4__title { font-size: 1.5rem; }
  .airport-4__actions { flex-direction: column; width: 100%; }
  .airport-4__btn { width: 100%; min-width: unset; padding: 15px 20px; font-size: 0.88rem; }
}