/* ==========================================================================
   LEXULT WORLDWIDE — ULTRA-LUXURY VISTAJET-GRADE DESIGN SYSTEM
   Enhanced with GSAP + Lenis Animation Support
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Cinzel:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Ultra-Luxury Vista Obsidian Palette */
  --bg-dark: #05070B;
  --bg-card: #0E131F;
  --bg-card-hover: #161D2E;
  --bg-glass: rgba(14, 19, 31, 0.7);

  --gold-primary: #D4AF37;
  --gold-bright: #F5E6AD;
  --gold-dark: #997A15;
  --gold-burnished: #C5A059;
  --gold-gradient: linear-gradient(135deg, #F5E6AD 0%, #D4AF37 50%, #8C6D2D 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);

  --text-main: #FFFFFF;
  --text-muted: #A0AEC0;
  --text-silver: #E2E8F0;

  --border-glass: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-gold-bright: rgba(212, 175, 55, 0.6);

  --red-emergency: #E63946;
  --red-glow: rgba(230, 57, 70, 0.5);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Lenis Smooth Scroll Base ───────────────────────────────────────────── */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* ── Scroll Progress Bar ────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
}

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

html, body {
  width: 100%;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Luxury Typography Classes ──────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-serif { font-family: var(--font-serif); }

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ── Full-Width Section Padding ─────────────────────────────────────────── */
.section-padding {
  padding: 140px 0;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 116px;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.85) 0%, rgba(5, 7, 11, 0.2) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled {
  background: rgba(5, 7, 11, 0.96);
  height: 92px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--border-gold);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 100%;
  padding: 0 48px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.45) contrast(1.2) drop-shadow(0 0 16px rgba(212, 175, 55, 0.65));
  transition: var(--transition-smooth);
}

.site-header.scrolled .brand-logo-img {
  height: 64px;
}

.footer-logo-img {
  height: 150px;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 255, 255, 0.3);
}

.brand-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--gold-bright);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* ── Nav Links & Dropdowns ──────────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-silver);
  transition: var(--transition-smooth);
  padding: 32px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.dropdown-icon {
  width: 10px;
  height: 10px;
  transition: var(--transition-smooth);
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
  color: var(--gold-primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 260px;
  background: rgba(14, 19, 31, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 14px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), var(--gold-glow);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.1);
  padding-left: 28px;
}

/* ── Nav Buttons ────────────────────────────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-medevac-item {
  display: none;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gold-bright);
  transition: var(--transition-smooth);
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red-emergency);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px var(--red-glow);
  transition: var(--transition-smooth);
}

.btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--red-glow);
  filter: brightness(1.15);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-ring 1.6s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold-gradient);
  color: #05070B;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
  filter: brightness(1.15);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 50px;
  border: 1.5px solid var(--gold-primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold-bright);
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #05070B;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.65;
  filter: contrast(1.2) brightness(0.85);
}

.hero-video-iframe {
  width: 100vw;
  height: 100vh;
  min-width: 177.77vh;
  min-height: 56.25vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.65;
  filter: contrast(1.1) brightness(0.85);
  border: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 50%, rgba(5, 7, 11, 0.15) 0%, rgba(5, 7, 11, 0.8) 75%, rgba(5, 7, 11, 0.96) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: 30px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold-bright);
  color: var(--gold-bright);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-silver);
  margin: 0 auto 48px;
  max-width: 780px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  stroke: var(--gold-primary);
  animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

/* ── Video Switcher Bar ─────────────────────────────────────────────────── */
.video-switcher {
  position: absolute;
  bottom: 28px;
  right: 36px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 19, 31, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold-bright);
  border-radius: 40px;
  padding: 6px 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), var(--gold-glow);
}

.switcher-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 700;
  margin-right: 6px;
}

.switcher-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-silver);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.switcher-btn:hover, .switcher-btn.active {
  background: var(--gold-gradient);
  color: #05070B;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ==========================================================================
   GRIDS
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ==========================================================================
   GLASS CARDS (legacy)
   ========================================================================== */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.glass-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 28px;
  font-size: 1.6rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.card-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee-container {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(14, 19, 31, 0.8);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 22px 0;
}

.marquee-content {
  display: inline-flex;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--text-silver);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION 3 — SIGNATURE SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px 36px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold-primary);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.service-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.service-link:hover {
  color: var(--gold-bright);
  gap: 14px;
}

.service-link span {
  transition: transform 0.3s ease;
}

.service-link:hover span {
  transform: translateX(4px);
}

/* ==========================================================================
   SECTION 4 — SPLIT SHOWCASE
   ========================================================================== */
.split-section {
  padding: 100px 0;
  overflow: hidden;
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}

.split-section.reverse .split-inner {
  direction: rtl;
}

.split-section.reverse .split-inner > * {
  direction: ltr;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.image-reveal-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.image-reveal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 2;
  transform-origin: right;
}

.parallax-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.split-content {
  padding: 20px 0;
}

.split-content .section-tag {
  text-align: left;
}

.split-content .section-title {
  text-align: left;
  font-size: 2.6rem;
}

.split-content .section-desc {
  text-align: left;
  margin-bottom: 32px;
}

.split-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-silver);
  font-weight: 500;
}

.feature-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}


/* ==========================================================================
   SECTION 5 — HORIZONTAL FLEET GALLERY
   ========================================================================== */
.fleet-gallery-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #080C16 50%, var(--bg-dark) 100%);
}

.fleet-gallery-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.fleet-gallery-track {
  display: flex;
  gap: 36px;
  padding: 0 60px 100px;
  width: max-content;
}

.fleet-card {
  width: 420px;
  min-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  will-change: transform;
}

.fleet-card:hover {
  border-color: var(--border-gold-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.fleet-card-img {
  height: 260px;
  overflow: hidden;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.08);
}

.fleet-card-body {
  padding: 32px;
}

.fleet-card-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.fleet-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.fleet-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ==========================================================================
   SECTION 6 — STATS COUNTER
   ========================================================================== */
.stats-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(14, 19, 31, 0.6) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-glass);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 7 — TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #080C16 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-silver);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: #05070B;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ==========================================================================
   SECTION 9 — AIR AMBULANCE CTA
   ========================================================================== */
.ambulance-cta-section {
  position: relative;
  padding: 120px 0;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ambulance-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ambulance-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: contrast(1.1) brightness(0.95);
}

.ambulance-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(5, 7, 11, 0.45) 0%, rgba(5, 7, 11, 0.75) 100%);
  z-index: 1;
}

.ambulance-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  padding: 20px 40px;
}

.ambulance-cta-content .section-title,
.ambulance-cta-content .section-tag,
.ambulance-cta-content .section-desc,
.ambulance-cta-content .amb-stat {
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
}

.ambulance-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.amb-stat {
  text-align: center;
}

.amb-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red-emergency);
  margin-bottom: 4px;
}

.amb-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ==========================================================================
   SECTION 10 — NEWS GRID
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: block;
}

.news-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.news-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card-img img {
  transform: scale(1.08);
}

.news-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 14px;
  background: rgba(5, 7, 11, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
}

.news-card-body {
  padding: 28px 32px 32px;
}

.news-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.news-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-body h3 {
  color: var(--gold-bright);
}

.news-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 11 — FINAL CTA
   ========================================================================== */
.final-cta-section {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #080C16 50%, var(--bg-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-corner-logo {
  position: absolute;
  bottom: -20px;
  right: 4%;
  width: 340px;
  max-width: 36vw;
  opacity: 0.12;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.25));
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

@media (max-width: 768px) {
  .cta-corner-logo {
    width: 200px;
    right: -20px;
    bottom: -10px;
    opacity: 0.08;
  }
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 11, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-bright);
  border-radius: 28px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), var(--gold-glow);
}

.modal-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover { color: var(--gold-primary); }

.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 10px; font-weight: 700; }
.form-input, .form-select, .form-textarea, .form-control,
.modal-content input, .modal-content textarea, .modal-content select {
  width: 100%;
  background: rgba(5, 7, 11, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  box-sizing: border-box;
  transition: var(--transition-smooth);
}
.form-input:focus, .form-select:focus, .form-textarea:focus, .form-control:focus,
.modal-content input:focus, .modal-content textarea:focus, .modal-content select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.modal-content .grid-2 {
  gap: 20px;
}

select.form-select, select.form-input, select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 48px;
  cursor: pointer;
}

select.form-select option, select.form-input option, select.form-control option {
  background-color: #0b0e14;
  color: #ffffff;
  padding: 12px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #030407;
  border-top: 1px solid var(--border-glass);
  padding: 100px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 80px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-bright);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
}

.footer-links li { margin-bottom: 14px; }
.footer-links a { color: var(--text-muted); font-size: 0.92rem; transition: var(--transition-smooth); }
.footer-links a:hover { color: var(--gold-primary); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE (Laptops, Tablets & Mobile)
   ========================================================================== */

/* Laptop Screens (1201px to 1440px): Ultra-compact header spacing so all 9 links + logo + Medevac fit perfectly */
@media (max-width: 1440px) {
  .nav-wrapper { padding: 0 28px; }
  .nav-links { gap: 16px; }
  .nav-link { font-size: 0.76rem; letter-spacing: 0.08em; padding: 24px 0; }
  .brand-logo-img { height: 68px; }
  .brand-title { font-size: 1.25rem; }
  .brand-subtitle { font-size: 0.58rem; letter-spacing: 0.22em; }
  .btn-emergency { padding: 10px 18px; font-size: 0.76rem; }
}

/* Tablet & Compact Laptop Screens (<= 1200px): Switch header to mobile/tablet drawer menu */
@media (max-width: 1200px) {
  .nav-wrapper { padding: 0 24px; }
  .site-header .nav-actions .btn-emergency { display: none; }
  .mobile-medevac-item {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-medevac-item .btn-emergency {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.85rem;
  }
  .mobile-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 84px);
    background: rgba(5, 7, 11, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    overflow-y: auto;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    background: rgba(14, 19, 31, 0.6);
    border: none;
    box-shadow: none;
    display: none;
  }
  .nav-item.active .dropdown-menu { display: block; }
  .hero-title { font-size: 3.5rem; }
  .grid-3, .grid-4, .services-grid, .testimonials-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .video-switcher { bottom: 16px; right: 16px; flex-wrap: wrap; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .split-inner { gap: 48px; }
  .fleet-card { width: 360px; min-width: 360px; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .services-grid, .testimonials-grid, .news-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.75rem; }
  .section-title { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .video-switcher { display: none; }
  .split-inner { grid-template-columns: 1fr; gap: 40px; }
  .parallax-img { height: 300px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 2.8rem; }
  .stat-item::after { display: none; }
  .stat-item { padding: 20px 10px; }
  .ambulance-stats { gap: 30px; flex-wrap: wrap; }
  .fleet-card { width: 320px; min-width: 320px; }
  .container { padding: 0 20px; }
  .section-padding { padding: 80px 0; }
  .brand-logo-img { height: 68px; }
  .footer-logo-img { height: 120px; }
}

@media (max-width: 480px) {
  .btn-emergency { padding: 8px 14px; font-size: 0.72rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-lead { font-size: 1rem; }
  .section-title { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.2rem; }
  .ambulance-stats { flex-direction: column; gap: 20px; }
  .fleet-card { width: 280px; min-width: 280px; }
}

/* ==========================================================================
   LEXULT LUXURY VIDEO PRELOADER (lexult-loader.mp4)
   ========================================================================== */
.new-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: #0c0c0e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}



.preloader-video-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, filter 0.8s ease;
}

.preloader-video {
  max-width: 580px;
  max-height: 88vh;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  border: none;
  outline: none;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 98%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 98%);
}

@media (max-width: 768px) {
  .preloader-video {
    max-width: 90vw;
    max-height: 75vh;
  }
}

/* Active Entrance Animation State */
.new-preloader.active .preloader-video-wrapper {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Exit Fadeout State */
.new-preloader.fadeout {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.new-preloader.fadeout .preloader-video-wrapper {
  transform: scale(1.08);
  opacity: 0;
  filter: blur(6px);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease, filter 0.8s ease;
}
