/* ==========================================================================
   CDA FLIGHT ACADEMY - DESIGN SYSTEM & STYLESHEET
   Aviation & Aerospace Premium Aesthetic (FAA Part 141)
   Color Palette: Deep Navy, Aviation Royal Blue, Amber Gold & Crisp White
   No Emojis - Pure SVG Vectors & High Performance CSS
   Full Mobile & Desktop Optimization
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette - Deep Navy, Aeronautical Royal Blue & Amber Gold */
  --color-navy-950: #040a14;
  --color-navy-900: #07152b;
  --color-navy-850: #0a1f3d;
  --color-navy-800: #0d284f;
  --color-navy-700: #133a6f;
  --color-navy-600: #1e4f94;
  
  /* Primary Aviation Blue */
  --color-primary: #1d63d8;
  --color-primary-hover: #154eb2;
  --color-primary-light: #eff6ff;
  --color-primary-glow: rgba(29, 99, 216, 0.35);
  
  /* Accent Golden Amber / Yellow (Badges, Hero CTA, Stars) */
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-accent-light: #fef3c7;
  --color-accent-dark: #b45309;
  --color-accent-glow: rgba(245, 158, 11, 0.35);

  /* WhatsApp / Success Green */
  --color-whatsapp: #22c55e;
  --color-whatsapp-hover: #16a34a;
  --color-whatsapp-glow: rgba(34, 197, 94, 0.35);
  
  /* Neutral Slate Palette */
  --color-cyan: #0ea5e9;
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;

  --color-white: #ffffff;
  --color-text-main: #0a192f;
  --color-text-muted: #475569;
  --color-text-light: #f8fafc;
  --color-text-dim: #94a3b8;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows & Elevations */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(7, 21, 43, 0.08), 0 2px 6px -1px rgba(7, 21, 43, 0.06);
  --shadow-lg: 0 12px 24px -4px rgba(7, 21, 43, 0.12), 0 4px 8px -2px rgba(7, 21, 43, 0.06);
  --shadow-xl: 0 24px 38px -6px rgba(7, 21, 43, 0.16), 0 10px 16px -4px rgba(7, 21, 43, 0.08);
  --shadow-aviation: 0 16px 36px -8px rgba(7, 21, 43, 0.15);
  --shadow-glow: 0 0 25px rgba(29, 99, 216, 0.28);
  --shadow-gold-glow: 0 0 25px rgba(245, 158, 11, 0.35);

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-slate-50);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TOP BANNER & AVIATION WEATHER STATUS BAR (Aeronautical Sleek Navy)
   ========================================================================== */
.top-bar {
  background-color: var(--color-navy-950);
  color: var(--color-slate-300);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.4rem 0;
  position: relative;
  z-index: 910;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

.badge-part141-mini {
  background-color: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.725rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* ==========================================================================
   AVIATION WEATHER LIVE TICKER STRIP (Clean Continuous Flowing Line)
   ========================================================================== */
.aviation-weather-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(3, 8, 20, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 40px;
  display: flex;
  align-items: center;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.weather-strip-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.weather-strip-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  will-change: transform;
  animation: weatherStripScroll 35s linear infinite;
  user-select: none;
}

.weather-strip-track:hover {
  animation-play-state: paused;
}

@keyframes weatherStripScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.wx-stream-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #e2e8f0;
}

.wx-stream-item.is-home .wx-code {
  color: #fbbf24;
}

.wx-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  flex-shrink: 0;
}

.wx-code {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.wx-stream-item .wx-icon {
  display: inline-flex;
  align-items: center;
}

.wx-stream-item .wx-icon-svg {
  width: 14px;
  height: 14px;
  display: block;
}

.wx-stream-item .wx-temp {
  font-weight: 600;
  color: #cbd5e1;
}

.wx-stream-item .wx-vfr-badge {
  color: #4ade80;
  font-size: 0.675rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.wx-sep-dot {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .aviation-weather-strip {
    height: 38px;
  }
  .wx-stream-item {
    font-size: 0.75rem;
    gap: 0.35rem;
  }
}

/* ==========================================================================
   NAVIGATION BAR (Crisp White & Sticky Glassmorphic)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 25px rgba(7, 21, 43, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  transition: height var(--transition-normal);
}

.main-header.scrolled .navbar {
  height: 82px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-normal), transform var(--transition-fast);
}

.main-header.scrolled .brand-logo-img {
  height: 56px;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--color-navy-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-slate-500);
  font-weight: 600;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.15rem;
  margin: 0 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.65rem;
  color: var(--color-slate-700);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-link:hover, .nav-item:hover > .nav-link {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.nav-item:hover > .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  box-shadow: 0 20px 40px rgba(7, 21, 43, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 950;
  list-style: none;
}

.dropdown-menu.wide {
  width: 320px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-slate-700);
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.dropdown-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.dropdown-info {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy-900);
}

.dropdown-desc {
  font-size: 0.75rem;
  color: var(--color-slate-500);
  line-height: 1.3;
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-actions .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Header Actions Element Ordering & 28-Year Anniversary Seal */
.header-actions .lang-dropdown-wrapper {
  order: 1;
}

.header-actions .btn-primary {
  order: 2;
}

.nav-seal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  order: 3;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), filter var(--transition-fast);
  margin-left: 0.25rem;
}

.nav-seal-badge:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 14px rgba(245, 158, 11, 0.45));
}

.nav-seal-img {
  height: 58px;
  width: 58px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  transition: height var(--transition-normal), width var(--transition-normal), transform var(--transition-fast);
}

.main-header.scrolled .nav-seal-img {
  height: 48px;
  width: 48px;
}

.header-actions .mobile-toggle {
  order: 4;
}

/* ==========================================================================
   BUTTONS SYSTEM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* Primary Aviation Blue Button */
.btn-primary {
  background: linear-gradient(135deg, #1d63d8 0%, #154eb2 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px var(--color-primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d63d8 100%);
  box-shadow: 0 6px 20px rgba(29, 99, 216, 0.5);
  transform: translateY(-2px);
  color: var(--color-white);
}

/* Accent Amber Gold Button (Main Hero CTA) */
.btn-accent, .btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0a192f;
  font-weight: 700;
  box-shadow: 0 4px 14px var(--color-accent-glow);
}

.btn-accent:hover, .btn-gold:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
  transform: translateY(-2px);
  color: #0a192f;
}

/* WhatsApp Green Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: 0 4px 14px var(--color-whatsapp-glow);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
  transform: translateY(-2px);
  color: var(--color-white);
}

/* Dark Aeronautical Button */
.btn-dark {
  background: var(--color-navy-900);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-dark:hover {
  background: var(--color-navy-800);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy-900);
  border-color: var(--color-slate-300);
}

.btn-outline:hover {
  background: var(--color-slate-100);
  border-color: var(--color-navy-900);
}

.btn-pill {
  border-radius: var(--radius-full);
}

.btn-lg {
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   LANGUAGE SELECTOR (Header & Mobile Drawer)
   ========================================================================== */
.lang-dropdown-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-toggle-btn {
  background: var(--color-slate-100);
  color: var(--color-slate-800);
  border: 1px solid var(--color-slate-200);
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.lang-toggle-btn:hover {
  background: var(--color-slate-200);
  border-color: var(--color-slate-300);
  color: var(--color-navy-900);
}

.lang-flag-col {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-current-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2.5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.lang-chevron {
  width: 14px;
  height: 14px;
  color: var(--color-slate-500);
  transition: transform var(--transition-fast);
}

.lang-dropdown-wrapper.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 175px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(7, 21, 43, 0.16);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.lang-dropdown-wrapper.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-slate-700);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

.lang-option-btn:hover {
  background: var(--color-slate-100);
  color: var(--color-navy-900);
}

.lang-option-btn.active {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
}

.lang-opt-name {
  flex: 1;
}

.lang-opt-region {
  font-size: 0.6875rem;
  color: var(--color-slate-400);
  background: var(--color-slate-100);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-weight: 700;
}

.lang-option-btn.active .lang-opt-region {
  background: rgba(29, 99, 216, 0.12);
  color: var(--color-primary);
}

.lang-check-icon {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  display: none;
}

.lang-option-btn.active .lang-check-icon {
  display: block;
}

/* Mobile Drawer Language Selector */
.mobile-drawer-lang-selector {
  margin-bottom: 1.25rem;
  padding: 0.75rem 0.85rem;
  background: var(--color-slate-100);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-slate-200);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-lang-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-slate-500);
}

.drawer-lang-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.drawer-lang-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.4rem;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-slate-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.drawer-lang-pill:hover {
  background: var(--color-slate-50);
  border-color: var(--color-slate-300);
}

.drawer-lang-pill.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px var(--color-primary-glow);
}

/* Mobile Hamburger Toggle Button */
.mobile-toggle {
  display: none;
  background: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  color: var(--color-navy-900);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover, .mobile-toggle:active {
  background: var(--color-slate-200);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100%;
  background: var(--color-navy-950);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 1.5rem 2rem;
  z-index: 1100;
  transition: right var(--transition-smooth), visibility var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav-drawer.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mobile-drawer-brand img {
  height: 34px;
  width: auto;
}

.mobile-drawer-brand span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: var(--color-white);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.mobile-drawer-close svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  color: var(--color-slate-200);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

.mobile-nav-link.has-submenu svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.mobile-nav-item.open > .mobile-nav-link.has-submenu svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 2px solid var(--color-primary);
  margin: 0.25rem 0 0.5rem 0.85rem;
}

.mobile-nav-item.open > .mobile-submenu {
  display: flex;
}

.mobile-sub-link {
  color: var(--color-slate-300);
  font-size: 0.875rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  display: block;
  transition: all var(--transition-fast);
}

.mobile-sub-link:hover {
  color: #93c5fd;
  background: rgba(29, 99, 216, 0.15);
}

.mobile-drawer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-quick-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
}

.mobile-quick-contact svg {
  width: 16px;
  height: 16px;
}

/* Weather live elements helpers */
.wx-temp {
  color: #e2e8f0;
  font-weight: 600;
}

.wx-dot-vfr {
  width: 5px;
  height: 5px;
  background-color: #22c55e;
  border-radius: 50%;
  margin-left: 2px;
}

.wx-vfr {
  color: #4ade80;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   HERO SECTION (Cinematic Aeronautical Deep Navy & Golden Accents)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-navy-950);
  color: var(--color-white);
  overflow: hidden;
  padding: 6rem 0 6.5rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-desktop {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.3);
  transform-origin: center center;
  filter: brightness(0.72) contrast(1.05);
}

.hero-bg-mobile {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: brightness(0.85) contrast(1.05);
}

@media (max-width: 768px) {
  .hero-bg-desktop {
    display: none !important;
  }
  .hero-bg-mobile {
    display: block !important;
    object-position: center top !important;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 45%, rgba(13, 40, 79, 0.22) 0%, rgba(4, 10, 20, 0.4) 55%, rgba(2, 6, 12, 0.6) 100%),
    linear-gradient(180deg, rgba(4, 10, 20, 0.1) 0%, rgba(4, 10, 20, 0.3) 60%, rgba(3, 8, 20, 0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5.2vw, 4.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #ffffff 20%, #bfdbfe 60%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.68;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  max-width: 720px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 0;
}

/* Wave Divider on Hero Base */
.hero-wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 4;
}

.hero-wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 48px;
}

/* ==========================================================================
   AUTHORITY & TRUST STATS GRID (High-Conversion Metrics)
   ========================================================================== */
.authority-grid-section {
  background: linear-gradient(180deg, #020712 0%, #040d1e 100%);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  padding: 1.5rem 0 1.75rem;
  position: relative;
  z-index: 20;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.authority-card {
  background: rgba(7, 21, 43, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: break-word;
}

.authority-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.authority-card:hover {
  background: rgba(13, 34, 69, 0.8);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 12px rgba(56, 189, 248, 0.12);
}

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

.auth-card-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.auth-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-card-icon svg {
  width: 15px;
  height: 15px;
  color: #38bdf8;
}

.authority-card:first-child .auth-card-icon svg {
  color: #fbbf24;
}

.authority-card:first-child .auth-card-icon {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.3);
}

.auth-card-stat {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.authority-card:first-child .auth-card-stat {
  background: linear-gradient(135deg, #ffffff 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-card-label {
  font-size: 0.775rem;
  font-weight: 700;
  color: #cbd5e1;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.auth-card-sub {
  font-size: 0.6875rem;
  color: #94a3b8;
  line-height: 1.3;
  font-weight: 400;
}

/* Tablet & Medium screens */
@media (max-width: 1100px) {
  .authority-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

/* Mobile Screens */
@media (max-width: 680px) {
  .authority-grid-section {
    padding: 1rem 0 1.25rem;
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }

  .authority-card {
    padding: 0.65rem 0.7rem;
    border-radius: 10px;
  }

  .auth-card-top {
    gap: 0.4rem;
    margin-bottom: 0.2rem;
  }

  .auth-card-icon {
    width: 24px;
    height: 24px;
  }

  .auth-card-icon svg {
    width: 13px;
    height: 13px;
  }

  .auth-card-stat {
    font-size: 0.9rem;
  }

  .auth-card-label {
    font-size: 0.725rem;
  }

  .auth-card-sub {
    font-size: 0.625rem;
    line-height: 1.25;
  }
}

@media (max-width: 360px) {
  .authority-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }
  .authority-card {
    padding: 0.55rem 0.6rem;
  }
  .auth-card-stat {
    font-size: 0.825rem;
  }
}

/* Hero Stats Bar */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: rgba(10, 31, 61, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item:last-child {
  border-right: none;
}

.hero-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(29, 99, 216, 0.2);
  border: 1px solid rgba(29, 99, 216, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}

.hero-stat-icon svg {
  width: 20px;
  height: 20px;
}

.hero-stat-info {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--color-slate-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   SECTION HEADERS & COMMON LAYOUTS
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

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

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-badge-blue {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid rgba(29, 99, 216, 0.2);
}

.section-badge-dark {
  background-color: rgba(29, 99, 216, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.3);
}

.section-badge-amber {
  background-color: var(--color-accent-light);
  color: var(--color-accent-dark);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.section-tag-sub {
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--color-navy-900);
}

.section-dark .section-title, .section-navy .section-title {
  color: var(--color-white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-slate-600);
  line-height: 1.6;
}

.section-dark .section-desc, .section-navy .section-desc {
  color: var(--color-slate-300);
}

/* ==========================================================================
   INTERACTIVE CAREER PATHWAY (ゼロからエアラインパイロットへ)
   ========================================================================== */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  margin-top: 2rem;
}

.pathway-step-card {
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.pathway-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-aviation);
  border-color: var(--color-primary);
}

.pathway-step-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-primary-light);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pathway-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.pathway-step-card:hover .pathway-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.pathway-icon svg {
  width: 22px;
  height: 22px;
}

.pathway-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-navy-900);
}

.pathway-card-desc {
  font-size: 0.8125rem;
  color: var(--color-slate-500);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.pathway-meta {
  border-top: 1px solid var(--color-slate-100);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--color-slate-600);
}

.pathway-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pathway-meta-item svg {
  width: 12px;
  height: 12px;
  color: var(--color-primary);
}

/* ==========================================================================
   PROGRAMS GRID & FILTER (Aviation Executive Redesign)
   ========================================================================== */
.programs-section {
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 50%, #f1f5f9 100%);
  position: relative;
}

.programs-filter-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  overflow: hidden;
}

.programs-filter-bar {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 5px;
  border-radius: var(--radius-full);
  gap: 4px;
  box-shadow: 0 4px 16px rgba(7, 21, 43, 0.06);
  max-width: 100%;
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--color-slate-600);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  background: var(--color-slate-100);
  color: var(--color-navy-900);
}

.filter-btn.active {
  background: var(--color-navy-900);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(7, 21, 43, 0.25);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
  align-items: stretch;
}

.program-card {
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px -2px rgba(7, 21, 43, 0.05);
  position: relative;
  overflow: hidden;
  padding: 2rem;
  height: 100%;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #60a5fa);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px -8px rgba(7, 21, 43, 0.12), 0 0 0 1px #93c5fd;
  border-color: #93c5fd;
}

.program-card:hover::before {
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}

.program-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.program-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid rgba(29, 99, 216, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.program-tag-badge.badge-gold {
  background: #fef3c7;
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.35);
}

.program-tag-badge.badge-navy {
  background: #0f172a;
  color: #f8fafc;
  border-color: #0f172a;
}

.program-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-900);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.program-card:hover .program-icon-wrap {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 16px rgba(29, 99, 216, 0.3);
}

.program-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.program-card-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.program-fleet-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.785rem;
  font-weight: 600;
  color: var(--color-primary);
  background: #eff6ff;
  border: 1px solid rgba(29, 99, 216, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.9rem;
  width: fit-content;
}

.program-fleet-tag svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.program-summary {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

.program-features-list {
  list-style: none;
  margin-bottom: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.program-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #334155;
  font-weight: 500;
}

.program-features-list li svg {
  width: 15px;
  height: 15px;
  color: var(--color-whatsapp);
  flex-shrink: 0;
}

.program-hours-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem;
  margin-top: auto;
  margin-bottom: 1.5rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.hours-item {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0.35rem;
  position: relative;
}

.hours-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e2e8f0;
}

.hours-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #07152b;
  line-height: 1.1;
}

.hours-lbl {
  font-size: 0.675rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}

.program-card-footer {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.program-duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-full);
}

.program-duration-badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.program-card-footer .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1d63d8 0%, #154eb2 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(29, 99, 216, 0.25);
  transition: all 0.25s ease;
}

.program-card-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(29, 99, 216, 0.38);
}

.program-card-footer .btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.program-card-footer .btn-primary:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   FLEET & SIMULATORS
   ========================================================================== */
.fleet-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.fleet-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-slate-300);
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fleet-filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(147, 197, 253, 0.4);
  transform: translateY(-2px);
}

.fleet-filter-btn.active {
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-800));
  color: var(--color-white);
  border-color: var(--color-blue-400);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.fleet-filter-count {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  opacity: 0.9;
}

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

.fleet-card {
  background: var(--color-navy-850);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(147, 197, 253, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.fleet-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #0d1527;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.fleet-tail-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 17, 34, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(147, 197, 253, 0.4);
  color: #93c5fd;
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.fleet-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-type-badge {
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  display: block;
}

.fleet-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.fleet-desc {
  font-size: 0.875rem;
  color: var(--color-slate-300);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.fleet-specs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  margin-top: auto;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-slate-400);
  font-weight: 600;
}

.spec-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

/* ==========================================================================
   INTERNATIONAL STUDENTS & VISA (M-1 / TSA)
   ========================================================================== */
.international-card-wrapper {
  background: linear-gradient(135deg, #072658 0%, #104491 50%, #0a3070 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: var(--color-white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.international-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.international-content {
  display: flex;
  flex-direction: column;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.step-card {
  display: flex;
  gap: 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.step-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 0.35rem;
}

.step-body p {
  font-size: 0.825rem;
  color: var(--color-slate-600);
  line-height: 1.45;
}

.international-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ==========================================================================
   VIDEO TOUR SHOWCASE (Clean Floating Cinema Frame)
   ========================================================================== */
.video-showcase-section {
  background: linear-gradient(180deg, #020712 0%, #061226 50%, #020712 100%);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.video-showcase-wrapper {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Ambient Backglow behind video */
.video-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.28) 0%, rgba(56, 189, 248, 0.12) 45%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 1;
}

/* Elegant Floating Frame */
.video-embed-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 
    0 25px 60px -15px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-embed-frame:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 
    0 30px 70px -15px rgba(0, 0, 0, 0.95),
    0 0 50px rgba(56, 189, 248, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.video-embed-frame video,
.video-embed-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  object-fit: cover;
  background: #000;
}

@media (max-width: 768px) {
  .video-showcase-section {
    padding: 3rem 0 3.5rem;
  }

  .video-showcase-wrapper {
    padding: 0 0.5rem;
  }

  .video-embed-frame {
    border-radius: 14px;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.8);
  }

  .video-ambient-glow {
    filter: blur(28px);
    opacity: 0.7;
  }
}

/* ==========================================================================
   REDBIRD LD FLIGHT SIMULATOR - CINEMATIC SHOWCASE & FEATURES
   ========================================================================== */
.simulator-section {
  background: linear-gradient(180deg, #030816 0%, #081735 50%, #030816 100%);
  padding: 5.5rem 0 6rem;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Ambient Backglow */
.sim-ambient-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.25) 0%, rgba(56, 189, 248, 0.1) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.simulator-section .container {
  position: relative;
  z-index: 2;
}

.sim-main-title {
  color: #ffffff;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.sim-main-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Master Cinema Frame Showcase */
.sim-cinema-showcase {
  max-width: 1040px;
  margin: 3rem auto 3.5rem;
  position: relative;
}

.sim-cinema-frame {
  width: 100%;
  background: #000000;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 25px 70px -15px rgba(0, 0, 0, 0.95),
    0 0 50px rgba(37, 99, 235, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.sim-cinema-frame:hover {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 
    0 30px 85px -15px rgba(0, 0, 0, 1),
    0 0 65px rgba(56, 189, 248, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.sim-cinema-topbar {
  background: rgba(8, 20, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sim-cinema-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #38bdf8;
}

.sim-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: simDotPulse 2s infinite;
}

@keyframes simDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.sim-cinema-tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sim-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.04em;
}

.sim-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-featured-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3 Sleek Feature Cards Grid */
.sim-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto 3.5rem;
}

.sim-feature-card {
  background: linear-gradient(160deg, rgba(12, 28, 56, 0.75) 0%, rgba(6, 16, 36, 0.88) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 18px;
  padding: 2.25rem 1.85rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.sim-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.5);
  background: linear-gradient(160deg, rgba(16, 36, 72, 0.88) 0%, rgba(8, 22, 48, 0.95) 100%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.15);
}

.sim-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35) 0%, rgba(56, 189, 248, 0.15) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  margin-bottom: 1.25rem;
}

.sim-card-icon svg {
  width: 24px;
  height: 24px;
}

.sim-card-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #38bdf8;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.sim-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.sim-card-desc {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Action Buttons Row */
.sim-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-whatsapp-sim {
  background: rgba(34, 197, 94, 0.14);
  color: #4ade80 !important;
  border: 1px solid rgba(34, 197, 94, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.btn-whatsapp-sim:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: rgba(74, 222, 128, 0.8);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.35);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .sim-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .simulator-section {
    padding: 4rem 0 4.5rem;
  }
  
  .sim-main-title {
    font-size: 1.85rem;
  }
  
  .sim-cinema-frame {
    border-radius: 14px;
  }
  
  .sim-cinema-topbar {
    padding: 0.75rem 1rem;
  }
  
  .sim-feature-card {
    padding: 1.75rem 1.4rem;
  }
  
  .sim-bottom-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .sim-bottom-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   CAMPUS & FLORIDA LIFESTYLE SECTION
   ========================================================================== */
.campus-lifestyle-section {
  background-color: #f8fafc;
  padding: 5rem 0 5.5rem;
  position: relative;
}

.campus-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .campus-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .campus-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.campus-gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #0f172a;
  aspect-ratio: 16 / 10;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.campus-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  border-color: #93c5fd;
}

.campus-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.campus-gallery-card:hover img {
  transform: scale(1.06);
}

.campus-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.25rem 0.85rem;
  background: linear-gradient(to top, rgba(7, 15, 30, 0.85) 0%, rgba(7, 15, 30, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  transition: background 0.3s ease;
}

.campus-gallery-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.campus-gallery-tag {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Florida Location & City Highlights Row */
.florida-highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.florida-highlight-card {
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.florida-highlight-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.fl-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(29, 99, 216, 0.08);
  border: 1px solid rgba(29, 99, 216, 0.18);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fl-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.fl-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fl-highlight-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy-900);
  font-family: var(--font-heading);
}

.fl-highlight-text span {
  font-size: 0.775rem;
  color: var(--color-slate-600);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .campus-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .florida-highlights-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

@media (max-width: 640px) {
  .campus-lifestyle-section {
    padding: 3.5rem 0 4rem;
  }
  .campus-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .florida-highlight-card {
    padding: 1rem;
  }
}

/* ==========================================================================
   ADMISSIONS & FORM
   ========================================================================== */
.admissions-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.admissions-info {
  background: var(--color-navy-900);
  color: var(--color-white);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.admissions-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.admissions-info p {
  color: var(--color-slate-300);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(29, 99, 216, 0.2);
  border: 1px solid rgba(29, 99, 216, 0.35);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-text strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-slate-400);
  letter-spacing: 0.04em;
}

.contact-text span, .contact-text a {
  font-size: 0.925rem;
  color: var(--color-white);
  font-weight: 500;
}

.hiring-callout {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.hiring-callout h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.25rem;
}

.hiring-callout p {
  font-size: 0.775rem;
  color: var(--color-slate-200);
  margin-bottom: 0;
}

/* Form */
.admissions-form-box {
  padding: 3.5rem;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--color-slate-500);
  margin-bottom: 2rem;
}

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

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-slate-700);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-slate-300);
  border-radius: var(--radius-md);
  background: var(--color-slate-50);
  font-size: 0.925rem;
  color: var(--color-slate-900);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(29, 99, 216, 0.18);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* ==========================================================================
   CALL TO ACTION BANNER (Blue Card with Gold & Green Buttons)
   ========================================================================== */
.cta-banner-card {
  background: linear-gradient(135deg, #092c6b 0%, #1550a6 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-xl);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15), transparent 40%);
  pointer-events: none;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.cta-banner-desc {
  font-size: 1.05rem;
  color: var(--color-slate-200);
  max-width: 620px;
  margin: 0 auto 2rem auto;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   FLOATING ACTION BUTTON (Blue Chat / WhatsApp)
   ========================================================================== */
.floating-contact-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 850;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(29, 99, 216, 0.45);
  transition: all var(--transition-normal);
}

.floating-contact-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(29, 99, 216, 0.6);
  color: var(--color-white);
}

.floating-contact-btn svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   MODAL FOR PROGRAM DETAILS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: all var(--transition-smooth);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-slate-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-slate-600);
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--color-slate-200);
  color: var(--color-navy-900);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
}

.modal-body {
  padding: 2.5rem;
}

.modal-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.modal-actions-row {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER (Aeronautical Deep Navy)
   ========================================================================== */
.footer {
  background-color: var(--color-navy-950);
  color: var(--color-slate-400);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 2rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-slate-400);
  line-height: 1.6;
  max-width: 320px;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.footer-brand-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.footer-brand-logo:hover .footer-brand-logo-img {
  transform: scale(1.04);
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-slate-400);
  transition: color var(--transition-fast);
}

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

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

/* ==========================================================================
   SCROLL-REVEAL & ADVANCED MOTION ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.55s; }

/* 3D Card Tilt & Interactive Spotlight */
.tilt-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(29, 99, 216, 0.12),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 6;
}

.tilt-card:hover::after {
  opacity: 1;
}

/* Glowing Border Effect */
.glow-card {
  position: relative;
  transition: all var(--transition-normal);
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(29, 99, 216, 0.5), rgba(255, 255, 255, 0.08), rgba(245, 158, 11, 0.45));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

/* Button Shimmer Sweep Effect */
.btn-primary, .btn-accent, .btn-gold, .btn-whatsapp {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-primary::after, .btn-accent::after, .btn-gold::after, .btn-whatsapp::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  transition: none;
}

.btn-primary:hover::after, .btn-accent:hover::after, .btn-gold:hover::after, .btn-whatsapp:hover::after {
  left: 150%;
  transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Radar Pulse Beacon (Aviation Style) */
.beacon-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
  position: relative;
  margin-right: 0.5rem;
}

.beacon-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: rgba(245, 158, 11, 0.5);
  animation: radarPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes radarPing {
  0% { transform: scale(0.8); opacity: 0.9; }
  80%, 100% { transform: scale(2.4); opacity: 0; }
}

/* Floating Slow Effect */
.float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Icon Hover Lift Effect */
.pathway-step-card:hover .pathway-icon,
.step-card:hover .step-badge,
.hero-stat-item:hover .hero-stat-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(29, 99, 216, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   HOURS CALCULATOR COMPONENT
   ========================================================================== */
.calc-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-aviation);
}

.calc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.calc-results-grid {
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.calc-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calc-stat-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-navy-900);
  line-height: 1.1;
}

.calc-val-primary { color: var(--color-primary); }
.calc-val-accent { color: var(--color-accent); }
.calc-val-muted { color: var(--color-slate-700); }

.calc-stat-lbl {
  font-size: 0.75rem;
  color: var(--color-slate-500);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.25rem;
}

.calc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.calc-disclaimer {
  font-size: 0.8125rem;
  color: var(--color-slate-500);
  flex: 1 1 280px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & MOBILE OPTIMIZATION
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-title { font-size: 2.75rem; }
  .pathway-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .campus-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .admissions-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .international-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .international-card-wrapper { padding: 2.5rem 1.5rem; }
}

@media (max-width: 992px) {
  .top-bar { display: none; }
  .nav-menu { display: none; }
  .header-actions .btn-secondary, .header-actions .btn-lang { display: none; }
  .mobile-toggle { display: flex; }
  
  .navbar {
    height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  
  .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    min-width: 0;
  }
  
  .brand-logo-img { height: 52px; }
  .brand-title {
    font-size: 1.15rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .brand-subtitle { font-size: 0.65rem; }

  /* Mobile Order: 1. 28-Year Seal, 2. Language Flag, 3. Mobile Hamburger */
  .nav-seal-badge {
    order: 1 !important;
  }

  .nav-seal-img {
    height: 44px;
    width: 44px;
  }

  /* Mobile Language Selector: Flag on Top, Code Below, Chevron on Side */
  .lang-dropdown-wrapper {
    order: 2 !important;
    flex-shrink: 0;
  }

  .mobile-toggle {
    order: 3 !important;
  }

  .lang-toggle-btn {
    padding: 0.25rem 0.45rem !important;
    width: auto !important;
    height: auto !important;
    min-width: unset !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.15);
    box-shadow: none;
    gap: 0.35rem !important;
  }

  .main-header.scrolled .lang-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .lang-flag-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    line-height: 1 !important;
  }

  .lang-current-flag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1;
  }

  .lang-current-flag svg {
    width: 18px !important;
    height: 13px !important;
    border-radius: 2px;
    display: block;
  }

  .lang-current-code {
    display: block !important;
    font-size: 0.625rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.04em;
    color: inherit;
    text-transform: uppercase;
  }

  .lang-chevron {
    display: block !important;
    width: 12px !important;
    height: 12px !important;
    color: inherit;
    opacity: 0.75;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
  }
  
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    justify-content: center;
    padding: 5rem 0;
  }
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .float-badge-box { position: static; margin-top: 1rem; max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .section-title { font-size: 1.85rem; }
  .section-desc { font-size: 0.95rem; }
  
  .pathway-grid { grid-template-columns: 1fr; gap: 1rem; }
  .programs-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .fleet-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .campus-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; gap: 1rem; }
  .campus-item-lg, .campus-item-wide { grid-column: span 1; grid-row: span 1; }
  
  .hero-stats-grid { grid-template-columns: 1fr; padding: 1.25rem; }
  .hero-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0;
  }
  .hero-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-stat-item:first-child { padding-top: 0; }
  
  .credentials-ribbon-inner { justify-content: center; gap: 1rem; }
  
  .calc-card { padding: 1.75rem 1.25rem; }
  .calc-form-row { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
  .calc-results-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.25rem; }
  .calc-cta-btn { width: 100%; }
  
  .admissions-info, .admissions-form-box { padding: 2rem 1.25rem; }
  .admissions-info h3 { font-size: 1.65rem; }
  .form-title { font-size: 1.45rem; }
  .form-grid { grid-template-columns: 1fr; gap: 1rem; }
  .form-group-full { grid-column: span 1; }
  
  .form-input, .form-select, .form-textarea {
    font-size: 16px;
    padding: 0.85rem 1rem;
  }
  
  .modal-card {
    max-width: 95%;
    max-height: 88vh;
    border-radius: var(--radius-lg);
  }
  .modal-body { padding: 1.5rem 1.25rem; }
  
  .footer { padding: 3.5rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  
  .hero-badge.reveal {
    opacity: 1;
    transform: none;
  }

  .floating-contact-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 540px) {
  .header-actions .btn-primary {
    display: none;
  }
}

@media (max-width: 480px) {
  .container, .container-wide {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
  
  .navbar {
    height: 66px;
    gap: 0.35rem;
  }
  
  .brand-logo {
    gap: 0.45rem;
  }

  .brand-logo-img { height: 44px; }
  .brand-title {
    font-size: 0.95rem;
    letter-spacing: -0.01em;
  }
  .brand-subtitle { display: none; }

  .footer-brand-logo-img {
    height: 54px;
  }
  .footer-brand-title {
    font-size: 1.1rem;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .nav-seal-img {
    height: 36px;
    width: 36px;
  }

  .lang-toggle-btn {
    padding: 0.2rem 0.35rem !important;
    gap: 0.25rem !important;
    border-radius: 6px !important;
  }

  .lang-current-flag svg {
    width: 16px !important;
    height: 11px !important;
  }

  .lang-current-code {
    font-size: 0.58rem !important;
  }

  .lang-chevron {
    width: 10px !important;
    height: 10px !important;
  }

  .mobile-toggle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-section {
    padding: 4.5rem 0 3rem;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-badge {
    font-size: 0.6875rem;
    padding: 0.35rem 0.75rem;
    letter-spacing: 0.02em;
    line-height: 1.35;
    margin-top: 0;
    margin-bottom: 1rem;
    white-space: normal;
    max-width: 100%;
  }
  .hero-title { font-size: 1.95rem; line-height: 1.15; margin-bottom: 1rem; }
  .hero-subtitle { font-size: 0.95rem; line-height: 1.55; margin-bottom: 1.75rem; }
  .hero-cta-group { flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
  .hero-cta-group .btn { width: 100%; min-height: 48px; }

  .programs-filter-wrapper {
    margin-bottom: 2rem;
    width: 100%;
  }
  .programs-filter-bar {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    padding: 4px;
    gap: 6px;
    border-radius: var(--radius-full);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .programs-filter-bar::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    width: auto;
    flex-shrink: 0;
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
  }

  .fleet-filters {
    gap: 0.45rem;
    margin-bottom: 2rem;
  }
  .fleet-filter-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    gap: 0.35rem;
  }
  .fleet-filter-count {
    padding: 0.1rem 0.4rem;
    font-size: 0.7rem;
  }
  
  .program-card {
    padding: 1.4rem;
    border-radius: 16px;
  }
  .program-title { font-size: 1.25rem; }
  .program-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .program-duration-badge {
    width: 100%;
    justify-content: center;
  }
  .program-card-footer .btn-primary {
    width: 100%;
    justify-content: center;
  }
  
  .fleet-card-content { padding: 1.25rem; }
  .fleet-title { font-size: 1.25rem; }
  
  .step-card { padding: 1rem; gap: 0.85rem; }
  .step-badge { width: 30px; height: 30px; font-size: 0.85rem; }
  
  .calc-results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }
  .calc-stat-val { font-size: 1.45rem; }
  .calc-stat-lbl { font-size: 0.7rem; }
  
  .btn-lg {
    padding: 0.8rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .modal-breakdown-grid {
    grid-template-columns: 1fr;
  }
  .modal-actions-row {
    flex-direction: column-reverse;
    width: 100%;
  }
  .modal-actions-row .btn {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 360px) {
  .brand-title {
    font-size: 0.78rem;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .authority-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }
  .authority-card {
    padding: 0.55rem 0.6rem;
  }
  .auth-card-stat {
    font-size: 0.825rem;
  }
}

/* ==========================================================================
   CINEMATIC 3D EARTH GLOBE & US FLY-IN SHOWCASE
   ========================================================================== */
.earth-scroll-section {
  position: relative;
  height: 320vh; /* Luxurious smooth scroll duration for 3D Earth rotation & deep fly-in */
  background-color: #01040a;
  color: var(--color-white);
  z-index: 25;
}

.earth-sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, #091730 0%, #030814 60%, #01040a 100%);
}

.earth-globe-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: auto;
  touch-action: pan-y;
  cursor: grab;
}

.earth-globe-canvas:active {
  cursor: grabbing;
}

.earth-globe-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Cross-fading Photographic Layers on Approach Touchdown */
.earth-layer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.18);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 15;
}

.layer-kded {
  background-image: radial-gradient(circle at 50% 50%, rgba(2, 6, 12, 0.05) 0%, rgba(2, 6, 12, 0.75) 100%),
                    url('../assets/images/foto-zoom-globo.jpg');
}

.layer-campus {
  background-image: radial-gradient(circle at 50% 50%, rgba(2, 6, 12, 0.05) 0%, rgba(2, 6, 12, 0.75) 100%),
                    url('../assets/images/pool-amenities-1.jpg');
}

.earth-layer-overlay.active {
  opacity: 1;
  transform: scale(1);
}

.earth-atmosphere-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(1, 4, 10, 0.7) 80%, rgba(1, 4, 10, 0.95) 100%);
  pointer-events: none;
  z-index: 20;
}

/* Minimalist Location Focus Badge */
.earth-focus-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 30;
}

.earth-focus-badge.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.focus-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(8, 19, 41, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fbbf24;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.2);
}

.focus-live-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseLiveDot 2s infinite ease-in-out;
}

@keyframes pulseLiveDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.75; }
}

@media (max-width: 768px) {
  .earth-scroll-section {
    height: 250vh;
  }
  .focus-badge-pill {
    font-size: 0.72rem;
    padding: 0.45rem 0.9rem;
    white-space: nowrap;
  }
}

/* ==========================================================================
   REDBIRD LD FLIGHT SIMULATOR - MODERN LAB & VIDEO SHOWCASE STYLES
   Aviation & Aerospace Theme with Video Player & Tech Specs
   ========================================================================== */

.simulator-section {
  position: relative;
  background-color: #040914;
  color: #f8fafc;
  padding: 6rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(14, 165, 233, 0.15);
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
}

.sim-bg-radar-grid {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 40px 40px;
  opacity: 0.85;
  pointer-events: none;
}

.sim-glow-radial {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.25;
}

.sim-glow-top {
  top: -200px;
  left: 20%;
  background: radial-gradient(circle, #0284c7, transparent 70%);
}

.sim-glow-bottom {
  bottom: -200px;
  right: 15%;
  background: radial-gradient(circle, #f59e0b, transparent 70%);
  opacity: 0.15;
}

/* Header Meta & Live Status */
.sim-header-top-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.sim-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.35);
  color: #38bdf8;
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
}

.sim-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseLiveDot 2s infinite ease-in-out;
}

.sim-faa-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
}

.sim-section-title {
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.sim-section-desc {
  color: #94a3b8;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Main Showcase Stage Grid */
.sim-showcase-stage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

/* Left Column: Video Showcase Player Frame */
.sim-video-col {
  display: flex;
  flex-direction: column;
}

.sim-video-frame {
  background: #071224;
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(14, 165, 233, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sim-video-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: #030a17;
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.sim-video-brand-tag {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.825rem;
  color: #ffffff;
  letter-spacing: 0.06em;
}

.sim-dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.sim-video-pill {
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Video Wrapper */
.sim-video-wrapper {
  position: relative;
  width: 100%;
  background: #000000;
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.sim-featured-video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.sim-video-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #030a17;
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  gap: 1rem;
  flex-wrap: wrap;
}

.sim-video-caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
}

.sim-video-badges-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sim-mini-badge {
  font-family: monospace;
  font-size: 0.7rem;
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

/* Right Column: Info & Tech Highlights */
.sim-info-col {
  display: flex;
  flex-direction: column;
}

.sim-info-card {
  background: rgba(7, 21, 43, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.sim-info-header .sim-sub-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.sim-info-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.sim-info-desc {
  font-size: 0.925rem;
  color: #94a3b8;
  line-height: 1.55;
}

/* Highlights List */
.sim-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sim-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(3, 10, 23, 0.65);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.sim-highlight-item:hover {
  background: rgba(10, 28, 58, 0.75);
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateX(4px);
}

.sim-highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: all 0.25s ease;
}

.sim-highlight-item:hover .sim-highlight-icon {
  background: #38bdf8;
  color: #040914;
  transform: scale(1.05);
}

.sim-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.sim-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sim-highlight-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.sim-highlight-desc {
  font-size: 0.825rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* CTA Box */
.sim-cta-box {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .sim-showcase-stage {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sim-video-wrapper,
  .sim-featured-video {
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  .simulator-section {
    padding: 4.5rem 0;
  }
  .sim-info-card {
    padding: 1.25rem;
  }
  .sim-video-wrapper,
  .sim-featured-video {
    min-height: 260px;
  }
  .sim-cta-box .btn {
    width: 100%;
    justify-content: center;
  }
  .sim-highlight-item {
    padding: 0.75rem 0.85rem;
  }
}

/* ==========================================================================
   THE CDA ADVANTAGE SECTION (7 Strategic Pillars & Experience)
   ========================================================================== */
.cda-advantage-section {
  background: radial-gradient(circle at 50% 0%, #0a1f3d 0%, #061124 60%, #040a14 100%);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.cda-advantage-section .section-title {
  color: #ffffff;
}

.cda-advantage-section .section-desc {
  color: var(--color-slate-300);
}

.cda-adv-hero-banner {
  max-width: 1080px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: center;
}

.cda-adv-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(29, 99, 216, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: #020712;
}

.cda-adv-main-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

/* 7 Strategic Pillars Grid */
.cda-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.cda-pillar-card {
  background: linear-gradient(160deg, rgba(13, 40, 79, 0.65) 0%, rgba(6, 17, 36, 0.85) 100%);
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cda-pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.5);
  background: linear-gradient(160deg, rgba(20, 56, 110, 0.8) 0%, rgba(8, 24, 52, 0.95) 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(56, 189, 248, 0.15);
}

.cda-pillar-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(56, 189, 248, 0.22);
}

.cda-pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29, 99, 216, 0.35) 0%, rgba(56, 189, 248, 0.15) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  margin-bottom: 1.25rem;
}

.cda-pillar-icon svg {
  width: 22px;
  height: 22px;
}

.cda-pillar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.cda-pillar-desc {
  font-size: 0.9rem;
  color: var(--color-slate-300);
  line-height: 1.6;
}

/* 4 Highlight Cards Grid */
.cda-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cda-hl-card {
  background: rgba(10, 25, 50, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cda-hl-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.15);
}

.cda-hl-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.cda-hl-head svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cda-hl-head h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cda-hl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cda-hl-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-slate-300);
}

.cda-hl-list li svg {
  width: 14px;
  height: 14px;
  color: #34d399;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cda-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cda-highlights-grid {
    grid-template-columns: 1fr;
  }
  .cda-advantage-section {
    padding: 4.5rem 0;
  }
}

/* ==========================================================================
   FLEET IN ACTION - VIDEO GALLERY & LIGHTBOX PLAYER
   ========================================================================== */
.fleet-videos-section {
  background: linear-gradient(180deg, #091325 0%, #030814 100%);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5.5rem 0;
}

.fleet-videos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 100%);
}

.fleet-videos-section .section-title {
  color: #ffffff !important;
}

.fleet-videos-section .section-desc {
  color: #cbd5e1 !important;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  margin-top: 2.5rem;
}

.video-card {
  background: rgba(12, 24, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(245, 158, 11, 0.12);
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020610;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.video-card:hover .video-thumb-img {
  transform: scale(1.05);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 8, 20, 0.1) 0%, rgba(3, 8, 20, 0.65) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-card-overlay {
  opacity: 0.85;
}

.video-duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.8);
  color: #f1f5f9;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.video-duration svg {
  width: 12px;
  height: 12px;
  color: var(--color-accent);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #030814;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 3;
}

.video-play-btn svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: #fef08a;
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.65);
}

.video-card-content {
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 17, 34, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.video-watch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap 0.25s ease, color 0.25s ease;
  width: 100%;
}

.video-watch-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.video-card:hover .video-watch-link {
  color: #fbbf24;
}

.video-card:hover .video-watch-link svg {
  transform: translateX(4px);
}

/* Video Gallery Bottom Callout */
.video-gallery-bottom {
  margin-top: 2.75rem;
}

.video-bottom-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
}

.video-bottom-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.video-bottom-info p {
  font-size: 0.9rem;
  color: var(--color-slate-300);
  margin: 0;
}

.video-bottom-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* ==========================================================================
   VIDEO LIGHTBOX MODAL
   ========================================================================== */
.video-modal-backdrop {
  z-index: 2200 !important;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-card {
  position: relative;
  width: auto;
  max-width: min(960px, 94vw);
  max-height: 88vh;
  max-height: 88dvh;
  margin: auto;
  background: #020610;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 40px rgba(245, 158, 11, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.96) translateY(15px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.video-modal-backdrop.active .video-modal-card {
  transform: scale(1) translateY(0);
}

.video-close-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 100;
  background: rgba(3, 8, 20, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}

.video-close-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

.video-player-container {
  position: relative;
  width: 100%;
  max-height: 82vh;
  max-height: 82dvh;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-player-container video {
  max-width: 100%;
  max-height: 82vh;
  max-height: 82dvh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  background: #000000;
  border-radius: inherit;
  outline: none;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (< 1024px and < 768px)
   ========================================================================== */
@media (max-width: 1100px) {
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .fleet-videos-section {
    padding: 4rem 0;
  }

  /* Smooth swipeable horizontal carousel on mobile */
  .video-gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 0.25rem 1.25rem 0.25rem;
    margin-top: 1.75rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 158, 11, 0.4) transparent;
  }

  .video-gallery-grid::-webkit-scrollbar {
    height: 4px;
  }

  .video-gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.4);
    border-radius: 4px;
  }

  .video-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: center;
  }

  .video-play-btn {
    width: 44px;
    height: 44px;
  }

  .video-bottom-box {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: 1rem;
  }

  .video-bottom-actions {
    width: 100%;
    flex-direction: column;
  }

  .video-bottom-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   OFFICIAL U.S. GOVERNMENT VERIFICATION & REGULATORY DISCLOSURE SECTION
   ========================================================================== */
.gov-verification-section {
  padding: 4rem 0 2.5rem;
  background-color: var(--color-slate-50);
}

.gov-verification-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gov-verification-main-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-navy-900);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.gov-verification-subtitle {
  font-size: 1.05rem;
  color: var(--color-slate-600);
  font-weight: 500;
  margin: 0;
}

.gov-verification-box {
  background: var(--color-white);
  border: 2px solid #0f274a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 21, 43, 0.08);
  margin-bottom: 1.5rem;
}

.gov-verification-topbar {
  background: linear-gradient(90deg, #07152b 0%, #0d284f 100%);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-bottom: 2px solid var(--color-accent);
}

.gov-topbar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  text-align: center;
}

.gov-shield-icon {
  width: 18px;
  height: 18px;
  color: #fbbf24;
  flex-shrink: 0;
}

.gov-topbar-text {
  color: #e2e8f0;
}

.gov-topbar-text strong {
  color: #ffffff;
  letter-spacing: 0.03em;
}

.gov-topbar-sep {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0.35rem;
}

.gov-verification-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  background: var(--color-white);
}

.gov-verif-col {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
}

.gov-qr-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.gov-qr-frame:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  border-color: var(--color-primary);
}

.gov-qr-image {
  width: 112px;
  height: 112px;
  display: block;
  border-radius: 6px;
  background: #ffffff;
}

.gov-qr-hint {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gov-verif-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gov-agency-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy-900);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

.gov-agency-desc {
  font-size: 0.85rem;
  color: var(--color-slate-600);
  line-height: 1.4;
  margin: 0;
}

.gov-official-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: underline;
  word-break: break-all;
  transition: color var(--transition-fast);
  margin-top: 0.25rem;
}

.gov-official-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.gov-official-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.gov-verif-vsep {
  width: 1px;
  background: var(--color-slate-200);
  margin: 1rem 0;
}

.gov-disclaimer-box {
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.gov-disclaimer-text {
  font-size: 0.775rem;
  line-height: 1.6;
  color: var(--color-slate-500);
  text-align: justify;
  margin: 0;
}

@media (max-width: 992px) {
  .gov-verification-section {
    padding: 3rem 0 2rem;
  }
  
  .gov-verification-main-title {
    font-size: 1.45rem;
  }

  .gov-verification-grid {
    grid-template-columns: 1fr;
  }

  .gov-verif-vsep {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .gov-verif-col {
    padding: 1.35rem 1.25rem;
  }

  .gov-topbar-content {
    flex-direction: column;
    gap: 0.25rem;
  }

  .gov-topbar-sep {
    display: none;
  }
}

@media (max-width: 580px) {
  .gov-verif-col {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .gov-official-link {
    justify-content: center;
  }

  .gov-disclaimer-text {
    text-align: left;
    font-size: 0.735rem;
  }
}

