@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap");

:root {
  --navy: #0D1B3D;
  --navy-2: #132B49;
  --orange: #F15A24;
  --light: #F5F5F5;
  --soft: #F5F7FB;
  --line: #E5EAF2;
  --text: #1F2937;
  --muted: #667085;
  --white: #FFFFFF;
  --shadow: 0 18px 45px rgba(13, 27, 61, .14);
  --shadow-premium: 0 24px 70px rgba(13, 27, 61, .22);
  --radius: 22px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.65;
}

a {
  text-decoration: none;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .55rem 0;
}

.site-navbar {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(13, 27, 61, .05);
}

.brand-mark {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  gap: .75rem;
}

.brand-emblem {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  letter-spacing: -.04em;
  position: relative;
  width: 48px;
}

.brand-emblem::after {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  height: 6px;
  position: absolute;
  right: -4px;
  top: 16px;
  transform: rotate(-28deg);
  width: 26px;
}

.brand-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1;
}

.brand-name span {
  color: var(--orange);
}

.brand-tagline {
  color: var(--orange);
  display: block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .15em;
  margin-top: .25rem;
  text-transform: uppercase;
}

.nav-link {
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-link.active,
.nav-link:hover {
  color: var(--orange);
}

.btn-brand {
  --bs-btn-bg: var(--orange);
  --bs-btn-border-color: var(--orange);
  --bs-btn-color: var(--white);
  --bs-btn-hover-bg: #D94C1D;
  --bs-btn-hover-border-color: #D94C1D;
  --bs-btn-hover-color: var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(241, 90, 36, .22);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: .68rem 1.15rem;
  text-transform: uppercase;
}

.btn-outline-brand {
  --bs-btn-color: var(--navy);
  --bs-btn-border-color: var(--line);
  --bs-btn-bg: var(--white);
  --bs-btn-hover-bg: var(--navy);
  --bs-btn-hover-border-color: var(--navy);
  --bs-btn-hover-color: var(--white);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: .68rem 1.15rem;
  text-transform: uppercase;
}

.btn-outline-light-brand {
  --bs-btn-color: var(--white);
  --bs-btn-border-color: rgba(255, 255, 255, .52);
  --bs-btn-bg: rgba(13, 27, 61, .24);
  --bs-btn-hover-bg: var(--white);
  --bs-btn-hover-border-color: var(--white);
  --bs-btn-hover-color: var(--navy);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: .68rem 1.15rem;
  text-transform: uppercase;
}

.hero {
  background:
    linear-gradient(135deg, rgba(13, 27, 61, .95), rgba(13, 27, 61, .62)),
    url("../img/hero-aircraft.svg") center/cover no-repeat;
  color: var(--white);
  min-height: 620px;
  padding: 7.5rem 0 5rem;
  position: relative;
}

.home-hero {
  background:
    radial-gradient(circle at 70% 46%, rgba(241, 90, 36, .14), rgba(241, 90, 36, 0) 28%),
    linear-gradient(90deg, rgba(13, 27, 61, .98) 0%, rgba(13, 27, 61, .88) 36%, rgba(13, 27, 61, .42) 70%, rgba(13, 27, 61, .18) 100%),
    url("../img/hero-aircraft.svg") right center/cover no-repeat;
  min-height: 720px;
  overflow: hidden;
  padding: 8.5rem 0 10rem;
}

.home-hero::after {
  background:
    linear-gradient(180deg, rgba(13, 27, 61, 0), rgba(13, 27, 61, .42)),
    linear-gradient(90deg, rgba(241, 90, 36, .52), rgba(255, 255, 255, 0) 34%);
  bottom: 0;
  content: "";
  height: 38%;
  left: 0;
  position: absolute;
  right: 0;
}

.home-hero::before {
  background: linear-gradient(90deg, var(--orange), rgba(241, 90, 36, 0));
  content: "";
  height: 2px;
  left: max(1rem, calc((100vw - 1140px) / 2));
  opacity: .85;
  position: absolute;
  top: 17.5rem;
  width: min(300px, 42vw);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 690px;
}

.hero.page-hero {
  min-height: 360px;
  padding: 5.75rem 0 4rem;
}

.eyebrow {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero h1,
.hero h2 {
  color: var(--white);
}

.hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.75rem);
  max-width: 880px;
}

.home-hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  letter-spacing: .01em;
  max-width: 700px;
  text-shadow: 0 22px 54px rgba(0, 0, 0, .28);
}

.hero p {
  color: rgba(255, 255, 255, .86);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .01em;
  max-width: 720px;
}

.hero-panel {
  background: rgba(255, 255, 255, .96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
  padding: 1.35rem;
}

.hero-panel h3 {
  font-size: 1.1rem;
}

.hero-list {
  display: grid;
  gap: .9rem;
  margin: 0;
  padding: 0;
}

.hero-list li {
  align-items: start;
  display: grid;
  gap: .75rem;
  grid-template-columns: 32px 1fr;
  list-style: none;
}

.check-dot {
  align-items: center;
  background: rgba(241, 90, 36, .12);
  border-radius: 50%;
  color: var(--orange);
  display: inline-flex;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.enquiry-shell {
  margin-top: -6.5rem;
  position: relative;
  z-index: 3;
}

.enquiry-panel {
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.enquiry-title {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0)),
    var(--navy);
  color: var(--white);
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.enquiry-title h2 {
  color: var(--white);
}

.enquiry-title p {
  color: rgba(255, 255, 255, .76);
  font-size: .95rem;
}

.enquiry-grid {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: 1.2fr 1.3fr 1fr auto;
}

.enquiry-field {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 118px;
  padding: 1.1rem 1.3rem;
}

.enquiry-field span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: .45rem;
  text-transform: uppercase;
}

.enquiry-field strong {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.35;
}

.enquiry-button {
  align-self: center;
  margin: 1.25rem;
  white-space: nowrap;
}

.feature-rail {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 1.8rem;
}

.feature-item {
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: .45rem;
  min-height: 150px;
  padding: 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-item:hover {
  box-shadow: 0 18px 38px rgba(13, 27, 61, .1);
  transform: translateY(-2px);
}

.feature-item:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.feature-item:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.feature-icon {
  align-items: center;
  border: 1px solid rgba(241, 90, 36, .36);
  border-radius: 999px;
  color: var(--orange);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.feature-item strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
}

.feature-item span:last-child {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.section {
  padding: 6rem 0;
}

.section-soft {
  background: var(--soft);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-head {
  margin-bottom: 2.4rem;
  max-width: 760px;
}

.section-head p,
.lead-muted {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.section-navy .lead-muted {
  color: rgba(255, 255, 255, .74);
}

.card-air {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13, 27, 61, .07);
  height: 100%;
  padding: 1.45rem;
}

.icon-box {
  align-items: center;
  background: rgba(241, 90, 36, .11);
  border-radius: 16px;
  color: var(--orange);
  display: inline-flex;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 48px;
}

.icon-box.mini {
  background: var(--orange);
  color: var(--white);
  flex: 0 0 auto;
  height: 44px;
  margin-bottom: 0;
  width: 44px;
}

.service-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(13, 27, 61, .18);
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  min-height: 300px;
  overflow: hidden;
  padding: 1.45rem;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card::before {
  background:
    linear-gradient(180deg, rgba(13, 27, 61, .18), rgba(13, 27, 61, .96)),
    var(--card-image) center/cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
  transition: transform .32s ease;
}

.service-card::after {
  background: linear-gradient(90deg, var(--orange), rgba(241, 90, 36, 0));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.service-card:hover {
  box-shadow: 0 28px 62px rgba(13, 27, 61, .26);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scale(1.04);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: .75rem;
}

.service-card p {
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  font-weight: 500;
}

.service-card a {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 999px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  padding: .6rem .9rem;
  text-transform: uppercase;
}

.service-card a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.service-card-passenger {
  --card-image: url("../img/about-aviation.svg");
}

.service-card-charter {
  --card-image: url("../img/hero-aircraft.svg");
}

.service-card-cargo {
  --card-image: url("../img/cargo-logistics.svg");
}

.service-card-support {
  --card-image: url("../img/destination-network.svg");
}

.image-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-card img,
.gallery-item img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-card img {
  aspect-ratio: 4 / 3;
}

.stat-strip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: -4.5rem;
  padding: 1.4rem;
  position: relative;
  z-index: 2;
}

.stat-strip-dark {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
  margin-top: 0;
}

.stat {
  border-right: 1px solid var(--line);
  padding: 1rem;
}

.stat-strip-dark .stat {
  border-color: rgba(255, 255, 255, .18);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--navy);
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
}

.stat-strip-dark .stat strong {
  color: var(--white);
}

.stat span {
  color: var(--muted);
}

.stat-strip-dark .stat span {
  color: rgba(255, 255, 255, .74);
}

.route-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  font-weight: 800;
  margin: .25rem;
  padding: .55rem .9rem;
}

.schedule-table th {
  background: var(--navy);
  color: var(--white);
  white-space: nowrap;
}

.schedule-table td,
.schedule-table th {
  padding: 1rem;
  vertical-align: middle;
}

.note-box {
  background: rgba(241, 90, 36, .09);
  border-left: 5px solid var(--orange);
  border-radius: 14px;
  padding: 1.2rem;
}

.gallery-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13, 27, 61, .07);
  overflow: hidden;
}

.gallery-item img {
  aspect-ratio: 16 / 11;
}

.gallery-caption {
  padding: 1rem 1.1rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.form-control,
.form-select {
  border-color: #DDE5EE;
  border-radius: 14px;
  padding: .85rem 1rem;
}

.form-label {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer {
  background: #08142E;
  color: rgba(255, 255, 255, .78);
  padding: 4rem 0 1.5rem;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer a {
  color: rgba(255, 255, 255, .78);
}

.footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
}

@media (max-width: 991.98px) {
  .topbar .container {
    gap: .35rem;
  }

  .hero {
    min-height: auto;
    padding: 5.5rem 0 4rem;
  }

  .home-hero {
    padding: 6rem 0 8rem;
  }

  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-field {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
  }

  .enquiry-button {
    justify-self: start;
  }

  .feature-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item,
  .feature-item:first-child,
  .feature-item:last-child {
    border-radius: 0;
  }

  .stat {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .stat:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .home-hero {
    padding-top: 4.75rem;
  }

  .home-hero h1 {
    font-size: 3rem;
  }

  .enquiry-title {
    align-items: flex-start;
  }

  .feature-rail {
    grid-template-columns: 1fr;
  }
}
