:root {
  --navy:   #0b1d35;
  --navy2:  #112848;
  --teal:   #00c4b3;
  --teal2:  #00e5d2;
  --sky:    #4da8d4;
  --white:  #f5f8fc;
  --muted:  #8fa3ba;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; background: var(--navy); color: var(--white); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: "Syne", sans-serif; line-height: 1.15; }
a { color: var(--teal); }
a:hover { color: var(--teal2); }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; height: 68px; background: rgba(11,29,53,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--teal), var(--sky)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.nav-logo span { font-family: "Syne", sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); letter-spacing: -.02em; }
.nav-logo span em { color: var(--teal); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: flex; align-items: center; gap: .3rem; padding: .4rem .85rem; font-size: .875rem; font-weight: 500; color: var(--muted); text-decoration: none; border-radius: 6px; transition: color .2s, background .2s; white-space: nowrap; }
.nav-links > li > a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-links > li > a.nav-active { color: var(--white); }
.nav-links > li > a .caret { font-size: .6rem; transition: transform .2s; }
.nav-links > li:hover > a .caret { transform: rotate(180deg); }
.nav-cta { background: var(--teal) !important; color: var(--navy) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--teal2) !important; }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 240px; max-height: 70vh; overflow-y: auto; background: #0f2540; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: .5rem; box-shadow: 0 20px 60px rgba(0,0,0,.5); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity .18s, transform .18s; z-index: 300;
  /* top padding bridges the visual gap so hover doesn't break when crossing it */
  margin-top: 0; padding-top: .75rem; }
.dropdown::-webkit-scrollbar { width: 4px; } .dropdown::-webkit-scrollbar-track { background: transparent; } .dropdown::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }
/* dd-open is toggled by JS (components.js) with a close-delay, preventing flicker across the gap */
.nav-links > li .dropdown.dd-open { opacity: 1; pointer-events: all; transform: translateY(0); }
/* Extend the li's hover area downward to fully bridge the gap visually */
.nav-links > li { position: relative; padding-bottom: 4px; }
.dropdown-section { padding: .25rem 0; }
.dropdown-section + .dropdown-section { border-top: 1px solid rgba(255,255,255,.06); margin-top: .25rem; padding-top: .5rem; }
.dropdown-header { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); padding: .25rem .75rem .4rem; }
.dropdown a { display: block; padding: .45rem .75rem; font-size: .82rem; color: var(--muted); text-decoration: none; border-radius: 6px; transition: background .15s, color .15s; }
.dropdown a:hover { background: rgba(0,196,179,.1); color: var(--white); }
.dropdown-wide { min-width: 600px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 .5rem; padding: 1rem; left: 50%; transform: translateX(-50%) translateY(-6px); }
.nav-links > li .dropdown-wide.dd-open { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: all; }
.dropdown-wide .dropdown-section { padding: 0; }
.dropdown-wide .dropdown-section + .dropdown-section { border-top: none; margin-top: 0; padding-top: 0; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.nav-mobile { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: #0b1d35; overflow-y: auto; z-index: 190; padding: 1rem; }
.nav-mobile.open { display: block; }
.nav-mobile-section { border-bottom: 1px solid var(--border); padding: .5rem 0; }
.nav-mobile-header { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); padding: .5rem 1rem .25rem; }
.nav-mobile a { display: block; padding: .5rem 1rem; font-size: .9rem; color: var(--muted); text-decoration: none; border-radius: 6px; }
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-mobile-header-link { display: block; padding: .5rem 1rem; font-size: .9rem; font-weight: 600; color: var(--white) !important; text-decoration: none; }

/* ── LAYOUT ── */
main { padding-top: 68px; }
section { padding: 5rem 2.5rem; }
.container { max-width: 1120px; margin: 0 auto; }
.section-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); margin-bottom: .75rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-weight: 300; font-size: 1.05rem; max-width: 560px; line-height: 1.7; margin-bottom: 3rem; }

/* ── HOMEPAGE HERO ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 120px 2.5rem 5rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,196,179,.08) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 20% 80%, rgba(77,168,212,.07) 0%, transparent 55%), linear-gradient(160deg, #0b1d35 0%, #0d2240 50%, #071525 100%); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,196,179,.04) 50%, transparent 70%); animation: aurora 8s ease-in-out infinite alternate; }
@keyframes aurora { from { opacity: .5; } to { opacity: 1; } }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent); }
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-tag { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .9rem; border: 1px solid rgba(0,196,179,.3); border-radius: 999px; font-size: .75rem; font-weight: 500; color: var(--teal); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.5rem; animation: fadeUp .6s ease both; }
.hero-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }
h1.hero-title { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; letter-spacing: -.03em; color: var(--white); margin-bottom: 1.25rem; animation: fadeUp .6s .1s ease both; }
h1.hero-title .accent { color: var(--teal); }
.hero-sub { font-size: 1.15rem; font-weight: 300; color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; animation: fadeUp .6s .2s ease both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.7rem; border-radius: 8px; font-size: .95rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s; border: none; font-family: "DM Sans", sans-serif; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: var(--navy); box-shadow: 0 4px 24px rgba(0,196,179,.3); }
.btn-primary:hover { background: var(--teal2); box-shadow: 0 8px 32px rgba(0,196,179,.4); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.btn-outline:hover { background: rgba(255,255,255,.07); }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border); animation: fadeUp .6s .4s ease both; }
.hero-stat-num { font-family: "Syne", sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--white); letter-spacing: -.04em; }
.hero-stat-num span { color: var(--teal); }
.hero-stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── COUNTRIES STRIP ── */
.countries-strip { background: rgba(255,255,255,.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 2.5rem; }
.countries-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.countries-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-right: .5rem; }
.country-chip { display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .85rem; border: 1px solid var(--border); border-radius: 999px; font-size: .8rem; font-weight: 500; color: var(--muted); text-decoration: none; cursor: pointer; transition: border-color .2s, color .2s, background .2s; }
.country-chip:hover, .country-chip.active { border-color: var(--teal); color: var(--teal); background: rgba(0,196,179,.06); }

/* ── AIRPORT SEARCH ── */
.finder-box { background: linear-gradient(135deg, rgba(0,196,179,.07), rgba(77,168,212,.05)); border: 1px solid rgba(0,196,179,.15); border-radius: 20px; padding: 3rem; }
.finder-box h2 { font-family: "Syne", sans-serif; font-size: 1.8rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .5rem; }
.finder-box p { color: var(--muted); font-size: .95rem; margin-bottom: 1.75rem; }
.finder-form { display: flex; gap: .75rem; flex-wrap: wrap; }
.finder-input { flex: 1; min-width: 220px; padding: .75rem 1.25rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; color: var(--white); font-family: "DM Sans", sans-serif; font-size: .95rem; outline: none; transition: border-color .2s; }
.finder-input::placeholder { color: var(--muted); }
.finder-input:focus { border-color: var(--teal); background: rgba(255,255,255,.09); }
#search-results { margin-top: 1.25rem; display: none; }
#search-results.visible { display: block; }
.search-count { font-size: .78rem; color: var(--muted); margin-bottom: .75rem; }
.search-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .75rem; }
.search-result-item { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1.1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; text-decoration: none; color: var(--white); transition: border-color .2s, background .2s; }
.search-result-item:hover { border-color: rgba(0,196,179,.4); background: rgba(0,196,179,.08); color: var(--white); }
.search-result-iata { font-family: "Syne", sans-serif; font-weight: 700; font-size: 1rem; color: var(--teal); min-width: 44px; }
.search-result-name { font-size: .85rem; flex: 1; padding: 0 .75rem; }
.search-result-country { font-size: .75rem; color: var(--muted); }
.search-no-results { color: var(--muted); font-size: .9rem; padding: .5rem 0; }

/* ── INNER HERO ── */
.inner-hero { padding: 4rem 2.5rem 3rem; background: linear-gradient(160deg, #0b1d35, #0d2240 60%, #071525); border-bottom: 1px solid var(--border); }
.inner-hero-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); margin-bottom: .75rem; }
.inner-hero-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: .75rem; }
.inner-hero-sub { color: var(--muted); font-size: 1rem; max-width: 600px; line-height: 1.7; }

/* ── CONTENT BODY ── */
.content-section { padding: 3.5rem 2.5rem; }
.content-body { max-width: 860px; }
.content-body h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 .75rem; letter-spacing: -.02em; color: var(--white); }
.content-body h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: var(--white); }
.content-body p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; font-size: .95rem; }
.content-body ul { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; padding-left: 1.5rem; font-size: .95rem; }
.content-body li { margin-bottom: .4rem; }
.content-body a { color: var(--teal); }
.content-body strong { color: var(--white); font-weight: 600; }

/* ── AIRPORT PAGE ── */
.airport-header { padding: 4rem 2.5rem 3rem; background: linear-gradient(160deg, #0b1d35, #0d2240 60%, #071525); border-bottom: 1px solid var(--border); }
.airport-iata { font-family: "Syne", sans-serif; font-size: 4rem; font-weight: 800; color: var(--teal); letter-spacing: -.04em; line-height: 1; margin-bottom: .25rem; }
.airport-name { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: .5rem; }
.airport-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.level-badge { display: inline-flex; align-items: center; padding: .3rem .8rem; border-radius: 999px; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; border: 1px solid; }
.level-1 { color: var(--muted); border-color: rgba(143,163,186,.3); background: rgba(143,163,186,.08); }
.level-2 { color: var(--sky); border-color: rgba(77,168,212,.3); background: rgba(77,168,212,.08); }
.level-3 { color: var(--teal); border-color: rgba(0,196,179,.3); background: rgba(0,196,179,.08); }
.airport-icao { font-size: .85rem; color: var(--muted); }
.airport-country { font-size: .85rem; color: var(--muted); }
.airport-body { padding: 3rem 2.5rem; }
.airport-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1000px; }
@media (max-width: 700px) { .airport-grid { grid-template-columns: 1fr; } }
.airport-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; }
.airport-card h3 { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 1rem; }
.contact-row { display: flex; flex-direction: column; gap: .5rem; }
.contact-item-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.contact-item-val { font-size: .9rem; color: var(--white); }
.contact-item-val a { color: var(--teal); text-decoration: none; word-break: break-all; }
.doc-links { display: flex; flex-direction: column; gap: .6rem; }
.doc-link { display: flex; align-items: center; gap: .75rem; padding: .75rem 1rem; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 8px; text-decoration: none; color: var(--white); transition: border-color .2s, background .2s; font-size: .875rem; }
.doc-link:hover { border-color: rgba(0,196,179,.3); background: rgba(0,196,179,.06); color: var(--white); }
.doc-icon { font-size: 1rem; flex-shrink: 0; }
.doc-link span:nth-child(2) { flex: 1; }
.doc-arrow { font-size: .75rem; color: var(--teal); }
.airport-notes { margin-top: 1.5rem; padding: 1.25rem 1.5rem; background: rgba(0,196,179,.06); border: 1px solid rgba(0,196,179,.15); border-radius: 10px; font-size: .875rem; color: var(--muted); line-height: 1.7; max-width: 1000px; }
.airport-notes a { color: var(--teal); }
.homepage-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.5rem; padding: .65rem 1.3rem; background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; font-size: .875rem; color: var(--white); text-decoration: none; transition: border-color .2s; }
.homepage-link:hover { border-color: rgba(0,196,179,.3); color: var(--white); }
.airport-breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; }
.airport-breadcrumb a { color: var(--muted); text-decoration: none; }
.airport-breadcrumb a:hover { color: var(--teal); }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.service-card { background: var(--card-bg); padding: 2.25rem 2rem; position: relative; overflow: hidden; transition: background .3s; }
.service-card:hover { background: rgba(255,255,255,.07); }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--sky)); opacity: 0; transition: opacity .3s; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 44px; height: 44px; background: rgba(0,196,179,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.service-level { display: inline-block; margin-top: 1rem; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); padding: .2rem .6rem; border: 1px solid rgba(0,196,179,.3); border-radius: 4px; }

/* ── HOW IT WORKS ── */
.hiw-section { background: rgba(255,255,255,.02); }
.hiw-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; position: relative; }
.hiw-steps::before { content: ""; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: .3; }
.hiw-step { text-align: center; }
.hiw-num { width: 56px; height: 56px; border-radius: 50%; border: 2px solid rgba(0,196,179,.35); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-family: "Syne", sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--teal); background: rgba(0,196,179,.06); }
.hiw-step h4 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.hiw-step p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── CALENDAR ── */
.cal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.cal-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: border-color .25s, background .25s; }
.cal-card:hover { border-color: rgba(0,196,179,.2); background: rgba(255,255,255,.05); }
.cal-date { flex-shrink: 0; width: 52px; height: 52px; background: rgba(0,196,179,.1); border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cal-date .day { font-family: "Syne", sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--teal); line-height: 1; }
.cal-date .mon { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.cal-card h4 { font-size: .9rem; font-weight: 600; margin-bottom: .25rem; }
.cal-card p { font-size: .8rem; color: var(--muted); }
.cal-tag { display: inline-block; margin-top: .5rem; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; padding: .15rem .55rem; border-radius: 4px; background: rgba(0,196,179,.12); color: var(--teal); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.faq-item { background: rgba(255,255,255,.03); padding: 2rem; transition: background .2s; }
.faq-item:hover { background: rgba(255,255,255,.06); }
.faq-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .6rem; }
.faq-item p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.25rem; }
.news-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; cursor: pointer; transition: border-color .25s, transform .25s; position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.news-card:hover { border-color: rgba(0,196,179,.25); transform: translateY(-3px); }
.news-card-featured { background: linear-gradient(135deg, rgba(0,196,179,.1), rgba(77,168,212,.06)); border-color: rgba(0,196,179,.2); }
.news-tag { display: inline-block; margin-bottom: 1rem; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: .2rem .6rem; border-radius: 4px; background: rgba(0,196,179,.12); color: var(--teal); }
.news-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; line-height: 1.3; color: var(--white); }
.news-card-featured h3 { font-size: 1.3rem; }
.news-card p { font-size: .82rem; color: var(--muted); line-height: 1.65; }
.news-card time { display: block; margin-top: 1rem; font-size: .75rem; color: var(--muted); }
.news-arrow { position: absolute; bottom: 1.75rem; right: 1.75rem; color: var(--teal); opacity: 0; transition: opacity .2s; }
.news-card:hover .news-arrow { opacity: 1; }

/* ── LINKS ── */
.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.link-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; text-decoration: none; color: var(--white); transition: border-color .2s, background .2s; }
.link-card:hover { border-color: rgba(0,196,179,.25); background: rgba(255,255,255,.05); color: var(--white); }
.link-card span { font-size: .9rem; font-weight: 500; }
.link-card .link-icon { color: var(--teal); }
.links-country-section { margin-bottom: 2.5rem; }
.links-country-section h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  /* flex column so coord-link can be pinned to the bottom */
  display: flex;
  flex-direction: column;
  color: var(--white);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.contact-card:hover { border-color: rgba(0,196,179,.25); background: rgba(255,255,255,.04); color: var(--white); }
.contact-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .25rem; color: var(--white); }
.contact-card .coord-abbr { font-size: .75rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.contact-detail { margin-bottom: .9rem; }
.contact-detail .label { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .2rem; }
.contact-detail .val { font-size: .9rem; color: var(--white); }
.contact-detail .val a { color: var(--teal); text-decoration: none; }
.contact-detail .val a:hover { color: var(--teal2); }
/* pin the "View coordinator details →" link to the bottom of every card */
.coord-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: auto; padding-top: 1rem; font-size: .8rem; color: var(--teal); text-decoration: none; }
.coord-link:hover { color: var(--teal2); }

/* ── COORDINATOR PAGE ── */
.coord-header { background: linear-gradient(135deg, rgba(0,196,179,.08), rgba(77,168,212,.05)); border-bottom: 1px solid var(--border); }
.coord-staff { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.staff-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; }
.staff-name { font-weight: 600; font-size: .95rem; margin-bottom: .2rem; }
.staff-role { font-size: .8rem; color: var(--muted); margin-bottom: .5rem; }
.staff-contact a { font-size: .8rem; color: var(--teal); text-decoration: none; display: block; }
.airports-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.airports-table th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: .6rem 1rem; border-bottom: 1px solid var(--border); }
.airports-table td { padding: .75rem 1rem; border-bottom: 1px solid rgba(255,255,255,.04); font-size: .875rem; }
.airports-table tr:hover td { background: rgba(255,255,255,.03); }
.airports-table a { color: var(--white); text-decoration: none; }
.airports-table a:hover { color: var(--teal); }
.airports-table .iata { font-family: "Syne", sans-serif; font-weight: 700; color: var(--teal); }

/* ── NAC CHARTS ── */
.nac-chart-group { margin-bottom: 2.5rem; }
.nac-chart-group h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--white); padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.nac-day-buttons { display: flex; flex-wrap: wrap; gap: .5rem; }
.nac-day-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1rem; background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; color: var(--muted); text-decoration: none; font-size: .82rem; transition: border-color .2s, color .2s, background .2s; }
.nac-day-btn:hover { border-color: rgba(0,196,179,.3); color: var(--white); background: rgba(0,196,179,.06); }
.nac-day-btn .day-label { font-family: "Syne", sans-serif; font-weight: 700; color: var(--teal); }

/* ── CONTACT BAND ── */
.contact-band { background: linear-gradient(135deg, var(--navy2), rgba(11,29,53,.9)); border: 1px solid var(--border); border-radius: 20px; padding: 3.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.contact-band h2 { font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; }
.contact-band p { color: var(--muted); font-size: .95rem; max-width: 420px; margin-top: .5rem; }
.contact-items { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.ci-label { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .25rem; }
.ci-val a { color: var(--teal); text-decoration: none; font-size: .9rem; }
.ci-val a:hover { color: var(--teal2); }

/* ── AIRPORTS LIST PAGE ── */
.airports-country-section { margin-bottom: 3rem; }
.airports-country-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.airports-country-flag { font-size: 1.5rem; }
.airports-country-name { font-size: 1.1rem; font-weight: 700; }
.airports-country-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .75rem; }
.airport-list-card { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.2rem; background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; text-decoration: none; color: var(--white); transition: border-color .2s, background .2s; }
.airport-list-card:hover { border-color: rgba(0,196,179,.3); background: rgba(0,196,179,.05); color: var(--white); }
.alc-iata { font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--teal); min-width: 44px; }
.alc-name { font-size: .85rem; flex: 1; }
.alc-level { font-size: .7rem; color: var(--muted); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
footer p { font-size: .8rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .8rem; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 3.5rem 1.5rem; }
  nav { padding: 0 1.5rem; }
  .news-grid { grid-template-columns: 1fr; }
  .hiw-steps::before { display: none; }
  .contact-band { flex-direction: column; }
  .faq-grid { grid-template-columns: 1fr; }
  .dropdown-wide { min-width: unset; grid-template-columns: 1fr; left: 0; transform: none !important; }
  .hero { padding: 100px 1.5rem 4rem; }
  .inner-hero, .airport-header, .airport-body { padding-left: 1.5rem; padding-right: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
