:root {
  --navy: #071625;
  --navy-2: #0c253d;
  --blue: #174c73;
  --gold: #d6aa55;
  --gold-light: #f2d693;
  --ice: #eef5f8;
  --white: #fff;
  --text: #243647;
  --muted: #6e7f8e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
section, header { scroll-margin-top: 78px; }
a { text-decoration: none; }

#mainNavbar {
  padding: 16px 0;
  transition: .3s ease;
  background: linear-gradient(to bottom, rgba(4,16,28,.88), transparent);
}
#mainNavbar.scrolled {
  padding: 9px 0;
  background: rgba(7,22,37,.96);
  box-shadow: 0 8px 30px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}
.navbar-brand {
  color: white;
  letter-spacing: .12em;
  font-size: .95rem;
}
.brand-icon {
  width: 38px; height: 38px; border: 1px solid rgba(214,170,85,.7);
  display: grid; place-items: center; transform: rotate(-6deg);
}
.navbar-brand strong { color: var(--gold-light); }
.nav-link { color: rgba(255,255,255,.82) !important; font-size: .84rem; font-weight: 600; margin: 0 .45rem; }
.nav-link:hover { color: var(--gold-light) !important; }

.btn { border-radius: 2px; font-weight: 700; letter-spacing: .03em; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #102234; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: #102234; transform: translateY(-1px); }
.btn-outline-light:hover { color: var(--navy); }

.hero {
  min-height: 100vh;
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4,17,30,.88) 0%, rgba(5,25,43,.58) 48%, rgba(6,29,47,.2) 100%),
    url("../assets/images/hero.svg") center/cover no-repeat;
}
.hero::before {
  content: ""; 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: 72px 72px;
}
.hero-content { position: relative; z-index: 2; }
.eyebrow, .section-label {
  font-size: .76rem; font-weight: 800; letter-spacing: .2em; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 45px; height: 1px; background: var(--gold); }
.hero h1 {
  max-width: 840px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.035em;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero .lead { max-width: 740px; margin-top: 26px; color: rgba(255,255,255,.82); line-height: 1.8; font-size: 1.05rem; }
.hero .btn-lg { padding: .9rem 1.35rem; font-size: .93rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 48px; }
.hero-badges > div { display: flex; align-items: center; gap: 12px; }
.hero-badges i { color: var(--gold-light); font-size: 1.15rem; }
.hero-badges span { display: grid; }
.hero-badges strong { font-size: .8rem; letter-spacing: .03em; }
.hero-badges small { color: rgba(255,255,255,.55); font-size: .68rem; }
.scroll-indicator {
  position: absolute; bottom: 25px; left: 50%; z-index: 3; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 5px; color: rgba(255,255,255,.72);
  font-size: .58rem; letter-spacing: .24em;
  animation: float 2s ease-in-out infinite;
}
@keyframes float { 50% { transform: translate(-50%, 7px); } }

.section-pad { padding: 105px 0; }
.bg-light { background: var(--ice) !important; }
.section-title {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.07;
  margin-bottom: 24px;
}
.section-copy { color: var(--muted); line-height: 1.85; }
.feature-list { margin-top: 32px; display: grid; gap: 18px; }
.feature-list article { display: flex; gap: 18px; align-items: flex-start; }
.feature-list article > span {
  flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center;
  color: var(--gold); background: var(--navy); border-radius: 50%;
}
.feature-list h3 { font-size: .95rem; font-weight: 800; margin: 3px 0 5px; color: var(--navy); }
.feature-list p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.6; }

.pilot-card { position: relative; margin: 0 auto; max-width: 580px; filter: drop-shadow(0 28px 40px rgba(9,29,46,.18)); }
.pilot-card-photo {
  min-height: 490px;
  background: url("../assets/images/experience.svg") center/cover no-repeat;
  clip-path: polygon(8% 0, 100% 0, 100% 90%, 92% 100%, 0 100%, 0 10%);
}
.pilot-card-caption {
  position: absolute; left: 8%; right: -3%; bottom: 25px;
  min-height: 95px; padding: 20px 24px;
  display: flex; align-items: center; gap: 18px;
  background: rgba(7,22,37,.94); color: white;
}
.pilot-card-caption .wing-line { width: 45px; height: 1px; background: var(--gold); }
.pilot-card-caption div { display: grid; flex: 1; }
.pilot-card-caption small { color: var(--gold-light); letter-spacing: .16em; font-size: .6rem; }
.pilot-card-caption strong { margin-top: 5px; font-family: "Playfair Display", serif; font-size: 1.45rem; }
.pilot-card-caption > i { color: var(--gold); font-size: 1.45rem; }

.gallery-section {
  position: relative;
  background: radial-gradient(circle at 15% 20%, #174d73 0%, #0b263f 38%, #061421 100%);
  color: white;
}
.gallery-section::before {
  content: ""; position: absolute; inset: 0; opacity: .08;
  background-image: repeating-linear-gradient(135deg, transparent 0 38px, #fff 39px 40px);
}
.gallery-section .container { position: relative; }
.section-label.light { color: var(--gold-light); }
.section-heading { max-width: 760px; margin: 0 auto 45px; }
.section-heading p { color: rgba(255,255,255,.62); }
.flight-carousel { max-width: 1100px; margin: auto; box-shadow: 0 35px 70px rgba(0,0,0,.28); }
.flight-carousel img { height: 610px; object-fit: cover; }
.flight-carousel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.carousel-caption {
  left: 0; right: auto; bottom: 0; width: min(560px, 92%);
  text-align: left; padding: 24px 30px; display: flex; align-items: center; gap: 18px;
  background: rgba(7,22,37,.9); backdrop-filter: blur(8px);
}
.carousel-caption > span { font-family: "Playfair Display"; font-size: 2.5rem; color: var(--gold); }
.carousel-caption div { display: grid; }
.carousel-caption strong { font-family: "Playfair Display"; font-size: 1.45rem; }
.carousel-caption small { color: rgba(255,255,255,.68); }
.carousel-control-prev, .carousel-control-next { width: 9%; }
.carousel-indicators { justify-content: flex-end; margin-right: 3%; margin-left: 55%; }

.video-section { background: #fff; }
.video-frame {
  position: relative; background: var(--navy); padding: 13px;
  box-shadow: 0 28px 55px rgba(10,31,49,.18);
}
.video-frame video { display: block; width: 100%; aspect-ratio: 16/9; background: #02070c; object-fit: cover; }
.frame-corner { position: absolute; width: 42px; height: 42px; pointer-events: none; }
.top-left { left: -7px; top: -7px; border-left: 2px solid var(--gold); border-top: 2px solid var(--gold); }
.bottom-right { right: -7px; bottom: -7px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.video-note { margin-top: 25px; font-size: .78rem; color: var(--muted); }
.video-note i { color: var(--gold); margin-right: 7px; }
.video-note code { color: var(--blue); background: var(--ice); padding: 3px 6px; }

.quote-strip { padding: 55px 0; background: var(--gold); color: var(--navy); text-align: center; }
.quote-strip i { opacity: .4; font-size: 1.7rem; }
.quote-strip p { font-family: "Playfair Display"; font-size: clamp(1.6rem, 3vw, 2.6rem); margin: 12px auto; max-width: 900px; }
.quote-strip span { font-size: .65rem; font-weight: 800; letter-spacing: .2em; }

.contact-section {
  background: linear-gradient(rgba(5,20,34,.94), rgba(5,20,34,.94)), url("../assets/images/contact.svg") center/cover fixed;
}
.contact-panel { border: 1px solid rgba(214,170,85,.35); padding: clamp(30px, 5vw, 70px); color: white; background: rgba(10,35,57,.63); backdrop-filter: blur(7px); }
.contact-panel p { color: rgba(255,255,255,.68); line-height: 1.8; }
.contact-phone { border-left: 2px solid var(--gold); padding-left: 18px; display: grid; margin-top: 32px; }
.contact-phone small { color: var(--gold-light); font-size: .62rem; letter-spacing: .2em; }
.contact-phone strong { font-size: 1.35rem; margin-top: 4px; }

.contact-grid { display: grid; gap: 13px; }
.contact-option {
  position: relative; display: grid; grid-template-columns: 62px 1fr 20px; gap: 18px; align-items: center;
  color: white; padding: 19px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.055);
  transition: .25s ease;
}
.contact-option:hover { color: white; border-color: var(--gold); background: rgba(214,170,85,.12); transform: translateX(5px); }
.contact-option > span { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-size: 1.55rem; background: var(--gold); color: var(--navy); }
.contact-option div { display: grid; }
.contact-option small { color: var(--gold-light); font-size: .56rem; letter-spacing: .17em; }
.contact-option strong { font-family: "Playfair Display"; font-size: 1.38rem; }
.contact-option p { font-size: .72rem; margin: 1px 0 0; }
.contact-option > i { color: rgba(255,255,255,.4); font-size: .75rem; }
.desktop-hint { font-size: .68rem; margin: 14px 0 0; }

footer { text-align: center; padding: 55px 0; background: #030d16; color: rgba(255,255,255,.6); }
.footer-brand { color: white; display: flex; align-items: center; justify-content: center; gap: 10px; letter-spacing: .14em; font-size: .86rem; }
.footer-brand i, .footer-brand strong { color: var(--gold); }
footer p { font-size: .75rem; margin: 12px 0; }
.footer-rule { height: 1px; max-width: 200px; margin: 20px auto; background: linear-gradient(90deg, transparent, rgba(214,170,85,.7), transparent); }
footer small { font-size: .66rem; }

.floating-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 10;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.75rem; color: white; background: #25d366;
  box-shadow: 0 12px 28px rgba(0,0,0,.26); transition: .25s ease;
}
.floating-whatsapp:hover { color: white; transform: translateY(-4px) scale(1.04); }

@media (max-width: 991px) {
  #mainNavbar { background: rgba(7,22,37,.96); }
  .navbar-collapse { padding: 15px 0; }
  .hero-badges { gap: 18px; }
  .flight-carousel img { height: 470px; }
  .pilot-card-photo { min-height: 420px; }
}
@media (max-width: 576px) {
  .section-pad { padding: 78px 0; }
  .hero h1 { font-size: 3.2rem; }
  .hero .lead { font-size: .92rem; }
  .hero-badges { display: grid; }
  .flight-carousel img { height: 370px; }
  .carousel-caption { padding: 14px 16px; gap: 10px; }
  .carousel-caption > span { font-size: 1.8rem; }
  .carousel-caption strong { font-size: 1.1rem; }
  .carousel-caption small { font-size: .65rem; }
  .pilot-card-photo { min-height: 350px; }
  .pilot-card-caption { right: 0; left: 4%; }
  .contact-option { grid-template-columns: 50px 1fr 15px; padding: 14px; gap: 13px; }
  .contact-option > span { width: 48px; height: 48px; font-size: 1.2rem; }
}
