/* ============================================================
   Eastern Aero — Main Stylesheet
   ============================================================ */


/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* — Exact colors pulled from the Eastern Aero logo — */
  --red:      #C0272D;
  --red-dark: #9e1f24;
  --navy:     #1d3461;
  --navy-mid: #254278;
  --gold:     #1d3461;
  --light:    #f4f6f9;
  --white:    #ffffff;
  --gray:     #6b7280;
  --gray-lt:  #e5e7eb;
  --text:     #1f2937;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 20v8M20 24h8' stroke='%231d3461' stroke-width='1.5' stroke-linecap='round' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.section-label {
  display: inline-block;
  background: rgba(196,57,60,.12);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.section-title { margin-bottom: .75rem; }
.section-subtitle { color: var(--gray); max-width: 640px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .85rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-lt);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: box-shadow var(--transition), padding var(--transition);
}
#navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--navy) 50%, var(--red) 50%);
}
#navbar.scrolled {
  padding: .6rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.04); }

.nav-logo-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1;
}
.nav-logo-text span { color: #f9a8a9; }   /* soft red tint on dark bg */

/* Footer logo text */
.footer-logo-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}
.footer-logo-text span { color: #f9a8a9; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .3rem;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 0 6rem;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide-video .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.75) 50%,
    rgba(13,27,42,0.60) 100%
  );
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  width: 100%;
}

/* Hero logo lockup (full SVG above headline) */
.hero-logo-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 2.2rem;
}
.hero-logo-svg {
  width: auto;
  height: 80px;
  max-width: 480px;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,0,0,.50));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(29,52,97,.12);
  border: 1px solid rgba(29,52,97,.3);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--gold); }

#hero h1 { color: var(--white); margin-bottom: 1.4rem; font-size: clamp(2.4rem, 5vw, 4rem); }
#hero h1 span { color: var(--red); }
#hero p { color: rgba(255,255,255,.78); font-size: 1.15rem; max-width: 560px; margin-bottom: 2.2rem; line-height: 1.75; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--red);
  padding-left: .75rem;
}

/* Hero right photo panel */
.hero-right {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 3rem;
}
.hero-right-img {
  position: absolute;
  top: 0; right: 0;
  width: 88%;
  height: 76%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-right-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-right-accent {
  position: absolute;
  bottom: 60px; left: 20px;
  width: 48%;
  height: 55%;
  border: 3px solid var(--red);
  border-radius: 16px;
  opacity: .45;
  z-index: 0;
}
.hero-right-sub {
  position: absolute;
  bottom: 0; left: 40px;
  width: 48%;
  height: 46%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  border: 2px solid rgba(255,255,255,.12);
  z-index: 2;
}
.hero-right-sub img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 2px solid rgba(255,255,255,.08);
}
.hero-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-main {
  width: 100%;
  height: 340px;
  top: 0; left: 0; right: 0;
}
.hero-img-sub {
  width: 56%;
  height: 200px;
  bottom: 0; right: 0;
  border: 3px solid rgba(255,255,255,.15);
}
.hero-cert-badge {
  position: absolute;
  bottom: 30px; left: -10px;
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .55rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  z-index: 2;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat .num { font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: .3rem; }
.hero-stat .label { font-size: .75rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .1em; }
.hero-stat .num { font-size: 1.9rem; font-weight: 800; color: var(--white); }
.hero-stat .num span { color: var(--white); }
.hero-stat .label { font-size: .78rem; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .08em; }

/* Hero visual — photo stack */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-photo-main {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  aspect-ratio: 4/3;
  background: var(--navy-mid);
}
.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hero-photo-main:hover img { transform: scale(1.04); }

.hero-photo-side {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 42%;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.15);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  aspect-ratio: 1;
  background: var(--navy-mid);
}
.hero-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge-float {
  position: absolute;
  background: var(--red);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .6rem 1.1rem;
  border-radius: 99px;
  box-shadow: 0 4px 16px rgba(196,57,60,.4);
  white-space: nowrap;
}
.hero-badge-float.top { top: -1rem; right: -1rem; }
.hero-badge-float.bottom { bottom: -1rem; left: -1rem; background: var(--navy); color: var(--white); }

/* Decorative bg dots */
#hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,57,60,.15) 0%, transparent 70%);
  top: -150px; right: -150px;
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,.08) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust-bar {
  background: var(--navy);
  padding: .75rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  font-weight: 700;
}
.trust-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* ============================================================
   INVENTORY PREVIEW
   ============================================================ */
.inventory-preview {
  margin-top: 4rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.inv-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  gap: 1rem;
}
.inv-preview-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-top: .4rem;
  font-weight: 700;
}

.inv-view-all {
  font-size: .85rem;
  padding: .55rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-color: rgba(255,255,255,.3);
  white-space: nowrap;
}

.inv-table-wrap {
  overflow-x: auto;
}

.inv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.inv-table thead tr {
  background: rgba(255,255,255,.06);
}
.inv-table th {
  padding: .85rem 1.25rem;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.inv-table td {
  padding: .9rem 1.25rem;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}
.inv-table tbody tr:last-child td { border-bottom: none; }
.inv-table tbody tr:hover { background: rgba(255,255,255,.04); }
.inv-table td.pn {
  font-family: 'Courier New', monospace;
  font-size: .82rem;
  color: #7ec8f5;
  font-weight: 600;
}

.cond-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cond-badge.new     { background: rgba(22,163,74,.2);   color: #4ade80; border: 1px solid rgba(22,163,74,.3); }
.cond-badge.ns      { background: rgba(16,185,129,.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,.3); }
.cond-badge.oh      { background: rgba(59,130,246,.2);  color: #7ec8f5; border: 1px solid rgba(59,130,246,.3); }
.cond-badge.svc     { background: rgba(234,179,8,.15);  color: #fcd34d; border: 1px solid rgba(234,179,8,.25); }
.cond-badge.ar      { background: rgba(156,163,175,.1); color: #d1d5db; border: 1px solid rgba(156,163,175,.2); }
.cond-badge.rp      { background: rgba(139,92,246,.15); color: #c4b5fd; border: 1px solid rgba(139,92,246,.25); }
.cond-badge.fn      { background: rgba(14,165,233,.15); color: #7dd3fc; border: 1px solid rgba(14,165,233,.25); }

.status-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.status-badge.avail { background: rgba(22,163,74,.2);  color: #4ade80; border: 1px solid rgba(22,163,74,.3); }
.status-badge.ltd   { background: rgba(249,115,22,.2); color: #fb923c; border: 1px solid rgba(249,115,22,.3); }

.inv-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .5rem;
}
.inv-link {
  color: var(--red);
  font-weight: 600;
  font-size: .82rem;
  transition: color var(--transition);
}
.inv-link:hover { color: #ff8a8e; }

/* ── Flip Board (Airport Solari Style) ── */
.flip-board { width: 100%; }

.flip-board-head {
  display: grid;
  grid-template-columns: 200px 1fr 150px 70px 120px;
  background: rgba(255,255,255,.06);
  padding: 0 1.5rem;
}
.flip-hcell {
  padding: .85rem .5rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
}
.flip-hcenter { text-align: center; }

.flip-board-body { width: 100%; }

.flip-row {
  display: grid;
  grid-template-columns: 200px 1fr 150px 70px 120px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0 1.5rem;
  align-items: center;
  min-height: 54px;
}
.flip-row:last-child { border-bottom: none; }

.flip-cell {
  padding: .65rem .5rem;
  overflow: hidden;
}
.flip-inner {
  display: flex;
  align-items: center;
  transform-origin: center;
  will-change: transform, opacity;
}
.flip-center-cell { justify-content: center; }

.flip-cell.flipping .flip-inner {
  animation: solarFlip 0.48s cubic-bezier(.4,0,.2,1) both;
}

@keyframes solarFlip {
  0%   { transform: perspective(600px) rotateX(0deg);    opacity: 1;   }
  38%  { transform: perspective(600px) rotateX(-90deg);  opacity: 0;   }
  62%  { transform: perspective(600px) rotateX(90deg);   opacity: 0;   }
  100% { transform: perspective(600px) rotateX(0deg);    opacity: 1;   }
}

.flip-pn {
  font-family: 'Courier New', monospace;
  font-size: .83rem;
  color: #7ec8f5;
  font-weight: 700;
  letter-spacing: .03em;
}
.flip-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.flip-qty {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  width: 100%;
  text-align: center;
}


/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
#partners {
  background: var(--white);
  padding: 1.5rem 0 1.75rem;
  border-top: 1px solid var(--gray-lt);
  border-bottom: 1px solid var(--gray-lt);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.25rem;
}

.partners-track-wrap {
  position: relative;
  overflow: hidden;
}
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: partners-marquee 35s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }

@keyframes partners-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.75rem;
  flex-shrink: 0;
  position: relative;
}
.partner-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-lt);
}
.partner-item img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  opacity: 0.7;
  transform: scale(1);
  transition: opacity .6s cubic-bezier(.25,.46,.45,.94), transform .6s cubic-bezier(.25,.46,.45,.94);
}
.partner-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 20v8M20 24h8' stroke='%231d3461' stroke-width='1.5' stroke-linecap='round' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
#about .container { position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.about-main-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  filter: brightness(0.97) saturate(0.95);
}
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(13, 27, 66, 0.05);
  pointer-events: none;
  z-index: 1;
}
.about-photo-badge,
.about-photo-badge2 { z-index: 2; }
.about-photo-wrap.no-photo {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  height: 440px;
}

.about-photo-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .8rem;
  z-index: 2;
}
.about-photo-badge .icon {
  width: 44px; height: 44px;
  background: rgba(196,57,60,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.about-photo-badge .icon svg { width: 22px; height: 22px; fill: var(--red); }
.about-photo-badge .text .num { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.about-photo-badge .text .label { font-size: .75rem; color: var(--gray); }

.about-photo-badge2 {
  position: absolute;
  top: -1.25rem; left: -1.25rem;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: .85rem 1.25rem;
  box-shadow: 0 6px 20px rgba(196,57,60,.35);
  z-index: 2;
}
.about-photo-badge2 span { display: block; font-size: 1.1rem; font-weight: 800; }
.about-photo-badge2 small { font-size: .72rem; opacity: .85; }

.about-content .section-subtitle { margin-bottom: 2rem; }

.about-points { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .95rem;
  color: var(--text);
}
.about-points li .check {
  width: 22px; height: 22px;
  background: rgba(196,57,60,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.about-points li .check svg { width: 12px; height: 12px; fill: var(--red); }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 6rem 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 20v8M20 24h8' stroke='%231d3461' stroke-width='1.5' stroke-linecap='round' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
#services .container { position: relative; z-index: 1; }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid var(--gray-lt);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  border-color: var(--red);
}
.service-card:hover .service-icon { background: var(--red); }
.service-card:hover .service-icon svg { fill: var(--white); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(196,57,60,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-icon svg { width: 28px; height: 28px; fill: var(--red); transition: var(--transition); }

.service-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.service-card p { color: var(--gray); font-size: .9rem; line-height: 1.65; }

.service-card .card-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ============================================================
   NEWS & NOTICES
   ============================================================ */
#news {
  padding: 7rem 0;
  background: var(--light);
  position: relative;
}

.news-header {
  text-align: center;
  margin-bottom: 3rem;
}
.news-header .section-title { color: var(--text); }
.news-header .section-subtitle { color: var(--gray); margin: 0 auto; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 14px;
  padding: 1.6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.09);
  border-color: rgba(192,39,45,.25);
}

.news-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.news-tag {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 99px;
}

.news-date {
  font-size: .75rem;
  color: var(--gray);
  white-space: nowrap;
}

.news-card-img {
  margin: -1.6rem -1.6rem 1rem;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  height: 160px;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.04); }

.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.news-card-excerpt {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  padding-top: .5rem;
  border-top: 1px solid var(--gray-lt);
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .02em;
  transition: gap .2s;
}
.news-card:hover .news-read-more { gap: .6rem; }
.news-read-more svg { width: 14px; height: 14px; }

/* ── News Modal ── */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.news-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,18,35,.72);
  backdrop-filter: blur(4px);
}

.news-modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  animation: modalIn .28s cubic-bezier(.4,0,.2,1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.news-modal-close {
  position: sticky;
  top: 1.25rem;
  float: right;
  margin: 1.25rem 1.25rem 0 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-lt);
  background: var(--white);
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  z-index: 2;
}
.news-modal-close:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.news-modal-close svg { width: 16px; height: 16px; }

.news-modal-inner {
  padding: 1.5rem 2rem 2.5rem;
  clear: both;
}

.news-modal-meta {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}

.news-modal-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 99px;
}

.news-modal-date {
  font-size: .8rem;
  color: var(--gray);
}

.news-modal-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.news-modal-cover {
  width: calc(100% + 4rem);
  margin: -1.5rem -2rem 1.75rem;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.news-modal-body {
  font-size: .95rem;
  color: #374151;
  line-height: 1.8;
}
.news-modal-body p { margin-bottom: 1rem; }

.news-modal-footer-note {
  margin-top: 1.5rem;
  padding: .85rem 1rem;
  background: var(--light);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  font-size: .84rem;
  color: var(--gray);
  font-style: italic;
}

/* ── Share bar ── */
.news-share-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.news-share-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  flex-shrink: 0;
}

.news-share-btns {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.news-share-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: transform .18s, box-shadow .18s, background .18s, color .18s, border-color .18s;
}
.news-share-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.news-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.1); }

/* Platform colours on hover */
.news-share-fb:hover  { background: #1877f2; color: #fff; border-color: #1877f2; }
.news-share-li:hover  { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.news-share-ig:hover  {
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color: #fff; border-color: transparent;
}
.news-share-copy:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.news-modal-body ul { margin: .5rem 0 1rem 1.2rem; }
.news-modal-body li { margin-bottom: .4rem; }
.news-modal-body a { color: var(--red); text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-modal-inner { padding: 1rem 1.25rem 2rem; }
  .news-modal-title { font-size: 1.2rem; }
}

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
#gallery {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 20v8M20 24h8' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
#gallery .container { position: relative; z-index: 1; }

.gallery-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.gallery-header .section-title { color: var(--white); }
.gallery-header .section-label { background: rgba(192,39,45,.18); color: #ff8a8e; }
.gallery-header .section-subtitle { color: rgba(255,255,255,.55); margin: 0 auto; }
.gallery-header .watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: rgba(255,255,255,.04);
  white-space: nowrap;
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Gallery mosaic — 7 cells, auto-cycling */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 210px 210px 210px;
  grid-template-areas:
    "a a b b"
    "a a c d"
    "e f f g";
  gap: 10px;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #0d1b2a;
  perspective: 900px;
  cursor: zoom-in;
}
.gallery-cell.cell-a { grid-area: a; }
.gallery-cell.cell-b { grid-area: b; }
.gallery-cell.cell-c { grid-area: c; }
.gallery-cell.cell-d { grid-area: d; }
.gallery-cell.cell-e { grid-area: e; }
.gallery-cell.cell-f { grid-area: f; }
.gallery-cell.cell-g { grid-area: g; }

.gallery-cell img,
.gallery-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle zoom-in on hover (pauses cycling feel) */
.gallery-cell:hover .cell-media {
  transform: scale(1.04) !important;
  transition: transform .4s ease !important;
}

/* Progress bar at bottom of each cell */
.gallery-cell-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: rgba(192,39,45,.85);
  width: 0%;
  transition: none;
  z-index: 10;
  border-radius: 0 2px 0 0;
}

/* ============================================================
   FLEET SUPPORT
   ============================================================ */
#fleet {
  padding: 7rem 0;
  background: linear-gradient(160deg, #0d1b2a 0%, #1a2e45 60%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}
#fleet::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(192,39,45,.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#fleet::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 20v8M20 24h8' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
#fleet .container { position: relative; z-index: 1; }
.fleet-header { text-align: center; margin-bottom: 3.5rem; }
.fleet-header .section-label { background: rgba(192,39,45,.18); color: #ff8a8e; }
.fleet-header .section-title { color: var(--white); }
.fleet-header .section-subtitle { margin: 0 auto; color: rgba(255,255,255,.55); }

/* Fleet slider */
/* ── Fleet Stats Bar ── */
.fleet-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 3rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 1.25rem 2.5rem;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}
.fleet-stat {
  text-align: center;
  padding: 0 2.5rem;
}
.fleet-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.fleet-stat-num span { color: var(--red); }
.fleet-stat-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.38);
  margin-top: .35rem;
}
.fleet-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ── Slider layout ── */
.fleet-slider-wrap {
  position: relative;
  overflow: visible;
}

.fleet-viewport {
  overflow: visible;
  border-radius: 20px;
}

.fleet-track {
  display: flex;
  gap: 1.25rem;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* Arrow buttons — inline with dots at bottom */
.fleet-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(13,27,66,.75);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, box-shadow .25s, transform .2s;
  flex-shrink: 0;
}
.slider-btn svg { width: 20px; height: 20px; fill: rgba(255,255,255,.85); transition: fill .2s; }
.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(192,39,45,.5);
  transform: scale(1.1);
}
.slider-btn:hover svg { fill: #fff; }
.slider-btn:disabled { opacity: .2; cursor: not-allowed; }
.slider-btn:disabled:hover {
  background: rgba(13,27,66,.75);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
  transform: scale(1);
}
.slider-btn:disabled:hover svg { fill: rgba(255,255,255,.85); }

/* Dot navigation */
.fleet-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .45rem;
}
.fleet-dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.18);
  border: none;
  cursor: pointer;
  transition: width .3s ease, background .3s ease, box-shadow .3s ease;
  padding: 0;
}
.fleet-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(192,39,45,.7);
}

/* ── Fleet Cards ── */
.fleet-card-img {
  background: linear-gradient(180deg, #0c1e32 0%, #091625 100%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  flex: 0 0 var(--card-w, 280px);
  width: var(--card-w, 280px);
  position: relative;
}

/* Engine cards — red glow on hover */
.fleet-card-img:has(.engine):hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 32px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(192,39,45,.5), 0 0 60px rgba(192,39,45,.18);
  border-color: rgba(192,39,45,.5);
  z-index: 5;
}
/* Airframe cards — blue glow */
.fleet-card-img:has(.airframe):hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 32px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(100,160,255,.45), 0 0 60px rgba(100,160,255,.15);
  border-color: rgba(100,160,255,.45);
  z-index: 5;
}
/* Regional cards — teal glow */
.fleet-card-img:has(.regional):hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 32px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(56,189,248,.45), 0 0 60px rgba(56,189,248,.15);
  border-color: rgba(56,189,248,.45);
  z-index: 5;
}

/* Image area */
.fleet-img-wrap {
  position: relative;
  height: 360px;
  background: linear-gradient(145deg, #0c2240 0%, #071828 100%);
  overflow: hidden;
}

/* Bottom gradient blending image into card body */
.fleet-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(9,22,37,1) 0%,
    rgba(9,22,37,.55) 35%,
    rgba(9,22,37,.1) 65%,
    transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.fleet-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .55s ease, transform .65s ease;
}
.fleet-photo.loaded { opacity: 1; }
.fleet-card-img:hover .fleet-photo { transform: scale(1.12); }

/* Placeholder — blueprint style */
.fleet-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background:
    linear-gradient(145deg, #0c2240 0%, #071828 100%);
  transition: opacity .4s ease;
  z-index: 0;
}
.fleet-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100,160,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,160,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.fleet-img-placeholder svg {
  width: 56px; height: 56px;
  fill: none;
  stroke: rgba(100,160,255,.3);
  stroke-width: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(100,160,255,.2));
}
.fleet-photo.loaded ~ .fleet-img-placeholder { opacity: 0; pointer-events: none; }

/* Card body */
.fleet-card-body {
  padding: 1.4rem 1.75rem 1.9rem;
  background: linear-gradient(180deg, rgba(9,22,37,1) 0%, rgba(7,16,27,1) 100%);
  position: relative;
}

/* Thin top accent line per badge type */
.fleet-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 1.4rem; right: 1.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
}

.fleet-badge {
  display: inline-flex;
  align-items: center;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .28rem .8rem;
  border-radius: 99px;
  margin-bottom: .7rem;
  backdrop-filter: blur(6px);
}
.fleet-badge.engine   { background: rgba(192,39,45,.18);  color: #ffacaf; border: 1px solid rgba(192,39,45,.35); }
.fleet-badge.airframe { background: rgba(60,120,220,.18); color: #93c5fd; border: 1px solid rgba(60,120,220,.35); }
.fleet-badge.regional { background: rgba(14,165,233,.15); color: #7dd3fc; border: 1px solid rgba(14,165,233,.32); }

.fleet-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -.01em;
}
.fleet-card-body p {
  font-size: .92rem;
  color: rgba(255,255,255,.48);
  line-height: 1.65;
}

/* ============================================================
   WHY US
   ============================================================ */
#why-us {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 20v8M20 24h8' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.why-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.why-header .section-title { color: var(--white); }
.why-header .section-label { background: rgba(192,39,45,.18); color: #ff8a8e; }
.why-header .section-subtitle { color: rgba(255,255,255,.55); margin: 0 auto; }
.why-header .watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: rgba(255,255,255,.04);
  white-space: nowrap;
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 2.2rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(192,39,45,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3), 0 0 0 1px rgba(192,39,45,.2);
}
.why-icon {
  width: 54px; height: 54px;
  background: rgba(192,39,45,.15);
  border: 1px solid rgba(192,39,45,.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}
.why-icon svg { width: 26px; height: 26px; fill: #ff8a8e; }
.why-card h3 { color: var(--white); margin-bottom: .6rem; font-size: 1.1rem; }
.why-card p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.65; }

/* --- Affiliations card --- */
.why-card-affiliations {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.affil-badges {
  display: flex;
  align-items: stretch;
  gap: .85rem;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 1.4rem;
}
.affil-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .35rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  flex: 1 1 0;
  min-width: 90px;
  transition: var(--transition);
}
.affil-badge:not(.affil-badge-soon):hover {
  background: rgba(192,39,45,.12);
  border-color: rgba(192,39,45,.4);
  transform: translateY(-3px);
}
.affil-badge-seal {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
}
.affil-seal-logo {
  width: 64px;
  height: 64px;
}
.affil-seal-empty { opacity: .45; }
.affil-badge-name {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.affil-soon-text { color: rgba(255,255,255,.22) !important; }
.affil-badge-desc {
  font-size: .62rem;
  color: rgba(255,255,255,.38);
  line-height: 1.35;
}
.affil-badge-soon {
  border-style: dashed;
  border-color: rgba(255,255,255,.1);
  cursor: default;
}

@media (max-width: 768px) {
  .why-card-affiliations { grid-column: span 1; }
  .affil-badges { flex-wrap: wrap; }
  .affil-badge { flex: 1 1 calc(50% - .85rem); }
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 6rem 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 20v8M20 24h8' stroke='%231d3461' stroke-width='1.5' stroke-linecap='round' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
#contact .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info .section-subtitle { margin-bottom: 2.5rem; }

/* ── Contact Channels — clean, minimal ── */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--gray-lt);
}

.cc-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-lt);
}

.cc-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(192,39,45,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .05rem;
  color: var(--red);
}
.cc-row-icon svg { width: 17px; height: 17px; }
.cc-row-icon-wa { background: rgba(37,211,102,.09); color: #25d366; }

.cc-row-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .45rem;
}

.cc-row-entries {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.cc-row-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.cc-row-link:hover { color: var(--red); }

.cc-row-note {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray);
}

.cc-row-link-wa {
  color: var(--red);
  font-weight: 600;
}
.cc-row-link-wa:hover { color: #25d366; }

.contact-offices {
  margin-top: 2.5rem;
}
.contact-offices h4 { font-size: .85rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }

/* --- Office flip cards --- */
.office-cards {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.office-card {
  flex: 1 1 calc(33% - .5rem);
  min-width: 120px;
  height: 148px;
  perspective: 900px;
  cursor: default;
}
.office-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.office-card:hover .office-card-inner {
  transform: rotateY(180deg);
}
.office-card-front,
.office-card-back {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .9rem .75rem;
  text-align: center;
}
.office-card-front {
  background: #fff;
  border: 1.5px solid #e5e9f2;
  box-shadow: 0 2px 12px rgba(29,52,97,.07);
}
.office-card-back {
  background: var(--navy);
  border: 1.5px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 20px rgba(29,52,97,.18);
  transform: rotateY(180deg);
}

/* Front elements */
.office-flag {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: .3rem;
}
.office-live-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  margin-bottom: .35rem;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  60%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.office-city {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.office-state {
  font-size: .68rem;
  color: var(--gray);
  margin-bottom: .4rem;
}
.office-clock {
  font-size: .95rem;
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  letter-spacing: .03em;
  font-family: 'Courier New', monospace;
}
.office-tz-label {
  font-size: .6rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .1rem;
}
.office-hint {
  font-size: .58rem;
  color: #bcc4d0;
  margin-top: .45rem;
  letter-spacing: .04em;
}

/* Back elements */
.office-back-flag { font-size: 1.6rem; margin-bottom: .25rem; }
.office-back-city {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.office-back-addr {
  font-size: .65rem;
  color: rgba(255,255,255,.55);
  margin: .2rem 0 .55rem;
  line-height: 1.35;
}
.office-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  color: var(--red);
  text-decoration: none;
  border: 1px solid var(--red);
  padding: .3rem .8rem;
  border-radius: 20px;
  transition: background .2s, color .2s;
  max-width: 100%;
}
.office-directions:hover {
  background: var(--red);
  color: #fff;
}

/* Social links */
.contact-social { margin-top: 2rem; }
.contact-social h4 {
  font-size: .78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .85rem;
}
.social-links {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 8px;
  border: 1.5px solid var(--gray-lt);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 600;
  background: var(--white);
  transition: var(--transition);
}
.social-btn svg { flex-shrink: 0; }
.social-btn:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  height: 100%;
  box-sizing: border-box;
}
.contact-form-wrap h3 { margin-bottom: 1.75rem; color: var(--navy); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: .9rem; }
.form-note { text-align: center; font-size: .8rem; color: var(--gray); margin-top: .75rem; }

/* Cloudflare Turnstile */
.turnstile-wrap {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}
.cf-turnstile {
  border-radius: 8px;
  overflow: hidden;
}
.turnstile-note {
  font-size: .8rem;
  color: var(--red);
  font-weight: 600;
  margin: 0;
  padding: .4rem .6rem;
  background: rgba(192,39,45,.06);
  border-radius: 6px;
  border: 1px solid rgba(192,39,45,.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 20v8M20 24h8' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
#footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.2rem; font-weight: 700; }
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p { margin-top: 1rem; font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 8px;
  padding: 6px 12px;
}

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-emails { display: flex; flex-direction: column; gap: .65rem; }
.footer-email-item { font-size: .83rem; }
.footer-email-item .tag { color: rgba(255,255,255,.4); font-size: .75rem; display: block; }
.footer-email-item a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.footer-email-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  #hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 180px 180px 180px;
    grid-template-areas:
      "a a"
      "b c"
      "d e"
      "f g";
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #about, #services, #gallery, #fleet, #why-us, #contact { padding: 4rem 0; }
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 160px 160px 160px 160px;
    grid-template-areas:
      "a a"
      "b c"
      "d e"
      "f g";
  }
  .about-main-photo { height: 320px; }
  /* contact channels responsive — handled by flex column by default */
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  /* contact channels responsive — handled by flex column by default */
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px 140px;
    grid-template-areas:
      "a a"
      "b c"
      "d e"
      "f g";
  }
}
