@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand-navy: #002060;
  --brand-blue: #245f96;
  --brand-blue-soft: #edf4fa;
  --brand-red: #d94848;
  --ink: #17232d;
  --muted: #5f6c79;
  --line: #dde6ee;
  --surface: #ffffff;
  --surface-alt: #f6fafc;
  --shadow: 0 20px 48px rgba(12, 31, 47, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--surface);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
}

p {
  font-size: 15px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrapper {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.top-ribbon {
  height: 30px;
  background: linear-gradient(90deg, var(--brand-navy) 0%, rgba(0, 32, 96, 0.28) 100%);
}

.main-header {
  position: relative;
  z-index: 20;
  background: #fff;
}

.header-flex {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-left: 0;
  padding-right: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  flex: 0 0 auto;
}

.main-logo {
  width: 182px;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  transform: translateY(0);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.main-nav a::after {
  display: none;
}

.main-nav a:hover,
.main-nav a.is-current {
  color: var(--brand-blue);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--brand-navy);
  font-size: 22px;
  cursor: pointer;
}

.hero-slider {
  position: relative;
  min-height: 530px;
  height: calc(100vh - 146px);
  max-height: 640px;
  overflow: hidden;
  background: #020a12;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: opacity, transform;
  transition:
    opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slider .slide:first-child {
  background-position: 22% top;
  background-size: cover;
}

.hero-slider .slide:nth-child(2) {
  background-position: center 42%;
}

.hero-slider .slide:nth-child(3) {
  background-position: center 38%;
}

.hero-slider .slide:nth-child(4) {
  background-position: center 15%;
}
.hero-slider .slide:nth-child(5) {
  background-position: center 25%;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide.is-prev {
  opacity: 0;
  transform: scale(1.015);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(6, 20, 33, 0.8) 0%,
      rgba(6, 20, 33, 0.54) 34%,
      rgba(6, 20, 33, 0.14) 72%,
      rgba(6, 20, 33, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 32, 96, 0.18) 0%,
      rgba(0, 0, 0, 0.02) 30%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.hero-content {
  max-width: 620px;
  color: #fff;
  padding: 48px 0 92px;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.tag,
.section-kicker,
h1,
h2,
h3 {
  text-transform: uppercase;
}

.tag,
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.tag {
  color: #d7e4f3;
}

.section-kicker {
  color: var(--brand-blue);
}

.hero-content h1,
.page-hero-content h1 {
  font-size: clamp(34px, 3.9vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-content h1 {
  max-width: none;
}

.slide:nth-child(5) .hero-content h1 {
  max-width: none;
  font-size: clamp(34px, 3.75vw, 54px);
}

.page-hero-content h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  max-width: 13ch;
}

.hero-content p,
.page-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 39ch;
  line-height: 1.48;
}

.hero-slider .hero-content {
  max-width: none;
}

.hero-slider .hero-content h1 {
  max-width: none;
  font-size: 56px;
  line-height: 1.04;
  margin-bottom: 14px;
}

.hero-slider .slide:nth-child(5) .hero-content h1 {
  font-size: 54px;
}

.hero-slider .hero-content p {
  max-width: none;
  font-size: 15px;
  line-height: 1.42;
}

.hero-slider .hero-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-slider .hero-break {
  display: block;
}

.slider-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}

.slider-nav button:first-child {
  left: 28px;
}

.slider-nav button:last-child {
  right: 28px;
}

.slider-nav button:hover {
  background: #fff;
  color: var(--ink);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.08);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: #061522;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 21, 34, 0.86) 0%,
      rgba(6, 21, 34, 0.6) 44%,
      rgba(6, 21, 34, 0.2) 100%
    );
}

.page-hero.with-image {
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 88px 0;
  max-width: 760px;
}

.page-main {
  padding: 132px 0 156px;
}

.about-banner {
  height: 240px;
  background: url('images/02 - Hero - About Us.jpeg') center/cover no-repeat;
}

.about-page {
  padding: 0;
}

.about-page .about-line {
  display: inline-block;
  white-space: nowrap;
}

.about-page .about-break {
  display: block;
}

.about-intro {
  padding: 84px 0 112px;
}

.about-intro .section-kicker,
.about-section-heading .section-kicker {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.about-intro h1,
.about-section-heading h2 {
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.about-intro h1 {
  max-width: none;
  margin-bottom: 22px;
}

.about-intro p,
.about-section-heading p,
.about-story-copy p,
.commitment-item p {
  font-size: 15px;
  line-height: 1.55;
}

.about-intro p {
  max-width: none;
  color: var(--muted);
}

.about-intro-meta {
  margin-top: 16px;
  color: var(--brand-blue) !important;
  font-size: 14px !important;
  font-weight: 600;
}

.about-story {
  padding: 84px 0 156px;
  background: #fff;
}

.about-story .about-section-heading {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto 44px;
}

.about-story .about-section-heading h2 {
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.about-story-grid {
  max-width: 900px;
  margin: 0 auto;
  gap: 52px 70px;
}

.about-story .about-story-copy p {
  font-size: 15px;
  line-height: 1.5;
}

.about-section-heading {
  margin: 0 0 34px;
}

.about-section-heading-centered {
  text-align: center;
}

.about-section-heading p {
  max-width: none;
  margin: 0;
  color: var(--muted);
}

.about-story-grid,
.about-commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 56px;
}

.about-story-copy p {
  color: var(--muted);
}

.about-story-copy p + p,
.commitment-item p + p {
  margin-top: 28px;
}

.about-commitment {
  position: relative;
  padding: 136px 0 118px;
  background: #fff;
  overflow: hidden;
}

.about-commitment::before {
  content: '';
  position: absolute;
  inset: 112px 0 0;
  background: var(--surface-alt);
}

.about-commitment > .wrapper {
  position: relative;
  z-index: 1;
}

.about-commitment .about-section-heading {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-commitment .about-section-heading h2 {
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.commitment-item h3 {
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.commitment-item {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.commitment-item p {
  color: var(--muted);
  max-width: none;
}

.about-values {
  background: #fff;
}

.about-values-inner {
  padding: 88px 0 120px;
}

.about-values .about-section-heading {
  max-width: 560px;
  margin: 0 auto 10px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 90px;
  justify-items: center;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 18px;
}

.about-value-item {
  width: 100%;
  max-width: 232px;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-value-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 18px;
  color: #2d5fa4;
  border: 1px solid rgba(187, 199, 214, 0.65);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.about-value-icon svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value-icon .icon-fade {
  opacity: 0.15;
}

.about-value-item h3 {
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.about-value-item p {
  max-width: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.about-values .about-section-heading {
  text-align: center;
}

.about-values .about-section-heading h2 {
  margin-bottom: 0;
}

.about-commitment .about-section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.about-commitment-grid {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .about-page .about-line {
    display: inline;
    white-space: normal;
  }

  .about-page .about-break {
    display: none;
  }

  .about-intro h1,
  .about-section-heading h2 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .about-intro h1,
  .about-intro p,
  .about-story .about-section-heading h2,
  .about-commitment .about-section-heading h2,
  .about-values .about-section-heading h2,
  .about-story-copy p,
  .commitment-item p,
  .about-value-item p {
    max-width: none;
  }

  .about-story-grid,
  .about-commitment-grid {
    max-width: none;
    gap: 44px;
  }

  .about-values-grid {
    max-width: none;
    gap: 44px 48px;
  }
}

.subs-header-image,
.airports-header-image,
.contact-header-image {
  width: 100%;
  height: 240px;
}

.subs-header-image {
  background:
    linear-gradient(
      180deg,
      rgba(5, 18, 32, 0.36) 0%,
      rgba(5, 18, 32, 0.36) 100%
    ),
    url('images/03 - Hero - Subsidiaries.jpeg') center/cover no-repeat;
}

.contact-header-image {
  background:
    linear-gradient(
      180deg,
      rgba(5, 18, 32, 0.36) 0%,
      rgba(5, 18, 32, 0.36) 100%
    ),
    url('images/contact-us.jpg') center/cover no-repeat;
}

.subsidiaries-page {
  padding: 0;
}

.subsidiaries-page .subs-line {
  display: inline-block;
  white-space: nowrap;
}

.subsidiaries-page .subs-break {
  display: block;
}

.subs-intro {
  padding: 88px 0 116px;
  min-height: 62vh;
}

.subs-intro .section-kicker,
.subs-section-heading .section-kicker {
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.subs-intro h1,
.subs-section-heading h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.subs-intro h1 {
  max-width: none;
  margin-bottom: 14px;
}

.subs-intro p,
.subs-section-heading p,
.subs-company-item p {
  color: #666f78;
  font-size: 15px;
  line-height: 1.7;
}

.subs-intro p {
  max-width: none;
}

.inline-text-link {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  transition: color 0.2s ease;
}

.inline-text-link:hover {
  color: var(--brand-navy);
}

.inline-text-link:focus-visible {
  outline: 2px solid rgba(36, 95, 150, 0.28);
  outline-offset: 3px;
}

.subs-group-panel {
  position: relative;
  overflow: hidden;
  padding: 104px 0 56px;
  min-height: 0;
  background: var(--surface-alt);
}

.subs-group-section {
  margin-top: 64px;
}

.subs-companies-section {
  margin-top: 0;
}

.subs-section-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
}

.subs-section-heading-centered {
  text-align: center;
}

.subs-section-heading p {
  max-width: none;
  margin: 14px 0 0;
  color: #263746;
}

.subs-group-section .subs-section-heading-centered {
  max-width: none;
  margin: 0 auto;
}

.subs-group-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.05) saturate(0.6);
}

.subs-group-panel::before {
  content: none;
}

.subs-companies-section {
  background: var(--surface-alt);
}

.subs-companies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 44px;
  padding-top: 0;
  padding-bottom: 152px;
}

.subs-company-item {
  text-align: center;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease;
}

.subs-company-item:hover,
.subs-company-item:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(12, 31, 47, 0.1);
  border-color: rgba(36, 95, 150, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.subs-company-logo-wrap {
  height: 84px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subs-company-logo {
  max-width: 132px;
  max-height: 84px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.24s ease;
}

.subs-logo-cac {
  max-width: 182px;
  max-height: 100px;
}

.subs-logo-eac {
  max-width: 122px;
}

.subs-logo-nansc {
  max-width: 132px;
}

.subs-logo-airotel {
  max-width: 138px;
}

.subs-logo-avit {
  max-width: 126px;
  
}

.subs-logo-aerosport {
  max-width: 130px;

}

.subs-company-item h3 {
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 700;
  transition: color 0.24s ease;
}

.subs-company-item:hover .subs-company-logo,
.subs-company-item:focus-within .subs-company-logo {
  transform: scale(1.03);
}

.subs-company-item:hover h3,
.subs-company-item:focus-within h3 {
  color: var(--brand-navy);
}

.subs-company-item p {
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.5;
}

.airports-header-image {
  background: url('images/airport-header.jpeg') center 44% / cover no-repeat;
}

.reveal-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-enabled .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.airports-page {
  padding: 0 0 48px;
}

.airports-page .airports-line {
  display: inline-block;
  white-space: nowrap;
}

.airports-page .airports-break {
  display: block;
}

.airports-intro {
  padding: 88px 0 120px;
  min-height: 62vh;
}

.airports-intro .section-kicker {
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.airports-intro h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.airports-intro p {
  max-width: none;
  color: #666f78;
  font-size: 15px;
  line-height: 1.7;
}

.airports-section-band {
  height: 36px;
  background: linear-gradient(90deg, var(--brand-navy) 0%, rgba(0, 32, 96, 0.28) 100%);
}

.airports-map-section {
  margin-top: 72px;
}

.airports-map-shell {
  padding-top: 104px;
  padding-bottom: 92px;
  min-height: 70vh;
}

.airports-map-intro {
  margin-bottom: 30px;
}

.airports-map-intro-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-avit-link {
  overflow: visible;
}

.home-subsidiary-logos img.home-logo-avit {
  width: auto;
  max-width: 100%;
  max-height: 92px;
}

.home-main {
  background: #fff;
  padding-top: 0;
}

.home-about-showcase,
.home-band-panel {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.home-main .home-promo-line {
  display: inline-block;
  white-space: nowrap;
}

.home-main .home-promo-break {
  display: block;
}

.home-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #f1f1f1;
  padding: 44px 48px;
}

.home-stat {
  text-align: center;
}

.home-stat strong {
  display: block;
  color: #2666a7;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.home-stat span {
  color: #a5a5a5;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-about-card {
  max-width: 1240px;
  margin: 0 auto;
  padding: 112px 24px 116px;
  text-align: center;
}

.home-about-card .section-kicker,
.home-panel-copy .section-kicker {
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.home-about-card h2,
.home-panel-copy h2 {
  max-width: none;
  margin: 0 auto 16px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-about-card p {
  max-width: none;
  margin: 0 auto;
  color: #707070;
  font-size: 15px;
  line-height: 1.65;
}

.home-about-card .pdf-button {
  margin-top: 28px;
}

.home-band-panel {
  overflow: hidden;
  background: #fff;
}

.home-about-showcase + .home-band-panel {
  margin-top: 16px;
}

.home-band {
  height: 46px;
  background: linear-gradient(90deg, var(--brand-navy) 0%, rgba(0, 32, 96, 0.28) 100%);
}

.home-band-inner {
  display: grid;
  align-items: center;
  gap: 54px;
  padding: 84px 72px;
  background: #fff;
}

.home-subsidiaries-panel {
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 1fr);
}

.home-airports-panel {
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
  align-items: center;
}

.home-panel-copy {
  max-width: none;
}

.home-panel-copy h2 {
  margin-left: 0;
}

.home-panel-copy p {
  max-width: none;
  color: #717171;
  font-size: 15px;
  line-height: 1.7;
}

.home-panel-copy .pdf-button {
  margin-top: 28px;
}

.home-subsidiary-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 34px;
  align-items: center;
  justify-items: center;
  min-height: auto;
  max-width: none;
  margin: 0 auto;
}

.subsidiary-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  width: 170px;
  min-height: 92px;
  cursor: default;
}

.home-subsidiary-logos img {
  max-width: 100%;
  max-height: 92px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}

.subsidiary-logo-link {
  padding: 10px;
  border-radius: 14px;
  border: 2px solid transparent;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.subsidiary-logo-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.12);
  background: rgba(36, 95, 150, 0.05);
  border-color: rgba(0, 32, 96, 0.28);
}

.home-airports-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-airports-placeholder-box {
  width: min(100%, 620px);
  height: 520px;
  border-radius: 22px;
  background: transparent;
  overflow: hidden;
}

.home-airport-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
}

.page-section + .page-section {
  margin-top: 168px;
}

.section-intro {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-intro h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-intro p,
.info-card p,
.subs-company-item p {
  color: var(--muted);
  font-size: 15px;
}

.map-panel,
.contact-info-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.pdf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--brand-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(217, 72, 72, 0.2);
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.pdf-button:hover {
  background: #c93b3b;
  transform: translateY(-2px);
}

.contact-info-grid {
  display: grid;
  gap: 22px;
}

.info-card h3 {
  color: var(--brand-blue);
  font-size: 19px;
  margin-bottom: 10px;
}

.map-panel {
  padding: 18px;
}

.map-container {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 20px;
  overflow: visible;
}

.map-container svg {
  display: block;
  width: min(720px, 100%);
  height: auto;
}

.map-loading {
  color: var(--muted);
  font-weight: 700;
}

.map-region {
  fill: #dde5ee;
  stroke: #8da0b4;
  stroke-width: 0.6;
  cursor: pointer;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.map-region:focus {
  outline: none;
}

.map-region:hover,
.map-region.is-active {
  fill: #213141;
  stroke: #0b1825;
}

.map-pin {
  cursor: pointer;
}

.map-pin-icon {
  color: var(--brand-navy);
  font-size: 16px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.map-pin:hover .map-pin-icon,
.map-pin.is-active .map-pin-icon {
  color: #111827;
  transform: scale(1.18);
}

.map-tooltip {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  transform: translate(-50%, -125%);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.map-tooltip.is-visible {
  opacity: 1;
}

.contact-info-shell {
  padding: 72px;
  min-height: 62vh;
}

.contact-intro-only {
  margin: 0 auto;
  text-align: center;
}

.contact-intro-only h2 {
  margin-bottom: 40px;
}

.contact-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 24px;
  margin-bottom: 18px;
}

.main-footer {
  background: #dfe6ee;
  color: #40505f;
  text-align: center;
  padding: 30px 16px;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .contact-info-grid,
  .home-subsidiaries-panel,
  .home-airports-panel {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 52px;
  }

  .subs-companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 42px;
  }

  .home-panel-copy,
  .home-panel-copy h2 {
    max-width: none;
  }

  .home-subsidiary-logos {
    margin-top: 12px;
    max-width: 430px;
  }

  .home-main .home-promo-line {
    display: inline;
    white-space: normal;
  }

  .home-main .home-promo-break {
    display: none;
  }

  .subsidiaries-page .subs-line {
    display: inline;
    white-space: normal;
  }

  .subsidiaries-page .subs-break {
    display: none;
  }

  .airports-page .airports-line {
    display: inline;
    white-space: normal;
  }

  .airports-page .airports-break {
    display: none;
  }

}

@media (max-width: 900px) {
  .home-stats-strip {
    grid-template-columns: 1fr;
  }

  .about-story-grid,
  .about-commitment-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .subs-companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stat {
    padding: 10px 0;
  }

}

@media (max-width: 768px) {
  .wrapper {
    width: min(100% - 32px, 1240px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-flex {
    min-height: 88px;
    flex-wrap: wrap;
    padding: 10px 0 14px;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 16px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-logo {
    width: clamp(150px, 34vw, 176px);
  }

  .hero-slider {
    min-height: 74vh;
    height: auto;
    max-height: none;
  }

  .hero-slider .slide:first-child {
    background-position: 28% top;
    background-size: cover;
  }

  .hero-content,
  .page-hero-content {
    padding: 52px 0 88px;
  }

  .hero-content h1 {
    max-width: none;
  }

  .hero-slider .hero-content {
    max-width: 100%;
  }

  .hero-slider .hero-content h1 {
    font-size: clamp(36px, 5.4vw, 52px);
    line-height: 1.06;
  }

  .hero-slider .slide:nth-child(5) .hero-content h1 {
    font-size: clamp(35px, 5vw, 48px);
  }

  .hero-slider .hero-content p {
    max-width: 37ch;
    font-size: 15px;
    line-height: 1.46;
  }

  .hero-slider .hero-line {
    display: inline;
    white-space: normal;
  }

  .hero-slider .hero-break {
    display: none;
  }

  .slider-nav button {
    width: 42px;
    height: 42px;
  }

  .slider-nav button:first-child {
    left: 14px;
  }

  .slider-nav button:last-child {
    right: 14px;
  }

  .contact-info-shell {
    padding: 42px 28px;
  }

  .home-band-inner {
    padding: 60px 28px;
  }

  .about-banner,
  .subs-header-image,
  .airports-header-image,
  .contact-header-image {
    height: 200px;
  }

  .subs-intro {
    padding: 72px 0 96px;
    min-height: auto;
  }

  .airports-intro {
    padding: 72px 0 96px;
    min-height: auto;
  }

  .subs-group-panel {
    padding: 78px 0 104px;
    min-height: auto;
    border-left-width: 8px;
    border-right-width: 8px;
  }

  .subs-companies-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 76px;
    padding-bottom: 104px;
  }

  .airports-map-shell {
    padding-top: 78px;
    padding-bottom: 56px;
    min-height: auto;
  }

  .airports-map-section {
    margin-top: 56px;
  }

  .subs-group-section {
    margin-top: 52px;
  }

  .subs-companies-section {
    margin-top: 0;
  }

  .about-intro,
  .about-story,
  .about-commitment {
    padding: 76px 0 104px;
  }

  .about-story,
  .about-commitment {
    padding-top: 76px;
    min-height: auto;
  }

  .about-commitment {
    padding-top: 100px;
  }

  .about-commitment::before {
    inset: 84px 0 0;
  }

  .about-intro {
    min-height: auto;
  }

  .about-section-heading {
    margin-bottom: 28px;
  }

  .about-values-inner {
    padding: 76px 0 104px;
    min-height: auto;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 4px;
  }

  .about-value-item {
    max-width: none;
  }

  .home-about-card {
    padding: 104px 20px 120px;
  }

  .home-about-card p,
  .home-panel-copy p {
    font-size: 15px;
  }

  .home-airports-placeholder-box {
    height: 280px;
  }

  .subsidiary-logo-link {
    width: min(100%, 150px);
  }

}

@media (max-width: 560px) {
  .header-flex {
    padding-left: 0;
    padding-right: 0;
  }

  .main-logo {
    width: clamp(136px, 40vw, 162px);
  }

  .hero-slider {
    min-height: 72vh;
  }

  .hero-slider .slide:first-child {
    background-position: 34% top;
    background-size: cover;
  }

  .about-banner,
  .subs-header-image,
  .airports-header-image,
  .contact-header-image {
    height: 168px;
  }

  .subs-intro h1,
  .subs-section-heading h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .airports-intro h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .subs-intro p,
  .subs-section-heading p,
  .subs-company-item p {
    font-size: 15px;
  }

  .airports-intro p {
    font-size: 15px;
  }

  .about-intro h1,
  .about-section-heading h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .about-intro p,
  .about-section-heading p,
  .about-story-copy p,
  .commitment-item p,
  .about-value-item p {
    font-size: 15px;
  }

  .page-main {
    padding: 104px 0 116px;
  }

  .home-main {
    padding-top: 0;
  }

  .page-section + .page-section {
    margin-top: 120px;
  }

  .slider-dots {
    bottom: 16px;
  }

  .map-container {
    min-height: 300px;
  }

  .hero-content,
  .page-hero-content {
    padding: 38px 0 66px;
  }

  .hero-content p,
  .page-hero-content p {
    max-width: 32ch;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-slider .hero-content {
    max-width: 100%;
  }

  .hero-slider .hero-content h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.08;
  }

  .hero-slider .slide:nth-child(5) .hero-content h1 {
    font-size: clamp(32px, 8.6vw, 40px);
  }

  .hero-slider .hero-content p {
    max-width: 32ch;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-slider .hero-line {
    display: inline;
    white-space: normal;
  }

  .hero-slider .hero-break {
    display: none;
  }

  .slider-nav button {
    width: 38px;
    height: 38px;
  }

  .slider-nav button:first-child {
    left: 10px;
  }

  .slider-nav button:last-child {
    right: 10px;
  }

  .slider-dot {
    width: 9px;
    height: 9px;
  }

  .about-intro {
    padding: 68px 0 92px;
  }

  .subs-group-panel {
    padding: 68px 0 96px;
  }

  .home-about-card {
    padding: 88px 16px 104px;
  }

  .home-about-showcase + .home-band-panel {
    margin-top: 20px;
  }

  .home-airports-placeholder-box {
    height: 220px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-enabled .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
