/* ==========================================================================
   GA FLIGHT SERVICES — ULTRA-LUXURY HIGH-CONTRAST DESIGN SYSTEM
   Enhanced for Superb Legibility (Thai & English) and Sovereign Private Aviation
   ========================================================================== */

:root {
  /* Core Color Tokens */
  --bg-deep: #050811;
  --bg-dark: #0A0F1D;
  --bg-card: rgba(13, 20, 38, 0.88);
  --bg-card-hover: rgba(20, 30, 55, 0.95);
  --bg-glass: rgba(15, 23, 42, 0.85);
  
  /* High-Contrast Metallic Champagne & Gold Accents */
  --gold-primary: #F59E0B;
  --gold-vivid: #FBBF24;
  --gold-light: #FEF08A;
  --gold-dark: #B45309;
  --gold-gradient: linear-gradient(135deg, #FDE68A 0%, #F59E0B 50%, #D97706 100%);
  --gold-glow: rgba(245, 158, 11, 0.35);
  --gold-border: rgba(245, 158, 11, 0.45);

  /* Avionics & Telemetry */
  --cyan-telemetry: #38BDF8;
  --cyan-light: #7DD3FC;
  --green-active: #10B981;
  --red-medevac: #EF4444;

  /* Typography Colors (High Contrast WCAG AAA) */
  --text-main: #FFFFFF;
  --text-muted: #F1F5F9;
  --text-dim: #CBD5E1;
  --text-label: #E2E8F0;
  --border-subtle: rgba(255, 255, 255, 0.22);
  --border-glass: rgba(255, 255, 255, 0.3);

  /* Typography Families: Prompt & Noto Sans Thai + Sukhumvit Set for flawless Thai rendering */
  --font-sans: 'Prompt', 'Noto Sans Thai', 'Sukhumvit Set', 'Thonburi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Prompt', 'Noto Sans Thai', 'Sukhumvit Set', sans-serif;
  --font-mono: 'Space Grotesk', ui-monospace, monospace;

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px -10px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 8px 30px rgba(245, 158, 11, 0.4);

  /* Layout */
  --container-max: 1320px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body.luxury-dark {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fix Thai Legibility: Never apply letter-spacing or uppercase to Thai! */
[data-lang="th"],
[data-lang="th"] h1,
[data-lang="th"] h2,
[data-lang="th"] h3,
[data-lang="th"] h4,
[data-lang="th"] h5,
[data-lang="th"] h6,
[data-lang="th"] p,
[data-lang="th"] span,
[data-lang="th"] a,
[data-lang="th"] button,
[data-lang="th"] input,
[data-lang="th"] select,
[data-lang="th"] textarea {
  letter-spacing: normal !important;
  text-transform: none !important;
  font-family: 'Prompt', 'Noto Sans Thai', 'Sukhumvit Set', -apple-system, sans-serif !important;
}

/* Background Canvas */
.airspace-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Glassmorphism Generic Panel */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
}

.glass-panel:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(245, 158, 11, 0.15);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-family: var(--font-heading);
  line-height: 1.35;
  font-weight: 700;
}

p {
  color: var(--text-muted);
}

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

/* ==========================================================================
   TOP TELEMETRY BAR
   ========================================================================== */
.ops-telemetry-bar {
  background: #060A14;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: #CBD5E1;
  position: relative;
  z-index: 50;
  padding: 0.5rem 0;
}

.telemetry-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.telemetry-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.live-indicator-dot {
  width: 9px;
  height: 9px;
  background-color: var(--green-active);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--green-active);
  animation: pulseBeacon 2s infinite ease-in-out;
}

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

.status-normal {
  color: var(--green-active);
  font-weight: 700;
}

.telemetry-divider {
  color: var(--border-subtle);
}

.mono-time {
  color: var(--cyan-light);
  font-weight: 700;
}

.telemetry-link {
  color: #E2E8F0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.telemetry-link.high-vis {
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

.telemetry-link.high-vis:hover {
  background: var(--gold-primary);
  color: #000000;
}

.icon-mono {
  font-size: 0.9rem;
}

/* Language Switcher */
.lang-switch-container {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  margin-left: 0.5rem;
}

.lang-btn {
  background: none;
  border: none;
  color: #94A3B8;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.1rem 0.35rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--gold-primary);
  color: #000000;
  box-shadow: 0 0 10px var(--gold-glow);
}

.lang-slash {
  color: #64748B;
  font-size: 0.8rem;
}

/* ==========================================================================
   MAIN NAVBAR (SINGLE-LINE NO-WRAP HIGH CONTRAST)
   ========================================================================== */
.main-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: rgba(5, 8, 17, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1.5px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  transition: var(--transition);
}

.main-navbar.scrolled {
  background: rgba(3, 5, 12, 0.99);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9);
  border-bottom-color: var(--gold-vivid);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.25rem;
}

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

.brand-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

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

.brand-name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold-vivid);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: #F1F5F9;
  position: relative;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap !important;
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
}

.nav-item:hover {
  color: var(--gold-vivid);
  background: rgba(255, 255, 255, 0.08);
}

.nav-item.active {
  color: #FEF08A;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

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

.btn-nav-cta {
  white-space: nowrap !important;
  flex-shrink: 0;
  padding: 0.65rem 1.25rem !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: normal !important;
}

/* ==========================================================================
   BUTTONS (CRYSTAL CLEAR HIGH-CONTRAST)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  text-align: center;
  text-decoration: none;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* Gold Button: Pitch-black text on vivid gold gradient with solid light gold border */
.btn-gold {
  background: var(--gold-gradient);
  color: #000000 !important;
  font-weight: 800;
  border: 1.5px solid #FEF08A;
  box-shadow: 0 4px 18px var(--gold-glow);
  letter-spacing: normal !important;
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: #FBBF24;
  color: #000000 !important;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.55);
}

/* Glass Button: Solid dark slate background with crisp pure white text and clear border */
.btn-glass {
  background: #0F172A;
  border: 1.5px solid #94A3B8;
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: normal !important;
}

.btn-glass:hover {
  background: #1E293B;
  border-color: #FFFFFF;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Urgent Red Button: Deep high-vis emergency red with crisp white text */
.btn-urgent {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  border: 1.5px solid #FCA5A5;
  color: #FFFFFF !important;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.5);
  letter-spacing: normal !important;
}

.btn-urgent:hover {
  background: #EF4444;
  border-color: #FFFFFF;
  color: #FFFFFF !important;
  box-shadow: 0 6px 25px rgba(239, 68, 68, 0.7);
  transform: translateY(-2px);
}

.btn-outline {
  background: #0F172A;
  border: 1.5px solid var(--gold-primary);
  color: #FEF08A !important;
  font-weight: 700;
  letter-spacing: normal !important;
}

.btn-outline:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: var(--gold-vivid);
  color: #FFFFFF !important;
}

.dot-urgent {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px #FFFFFF;
  animation: pulseBeacon 1.2s infinite;
}

.full-width {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #FFFFFF;
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #0A0F1D;
  border-left: 2px solid var(--gold-primary);
  z-index: 1000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}

.mobile-nav-item {
  font-size: 1.15rem;
  font-weight: 600;
  color: #CBD5E1;
  display: block;
}

.mobile-nav-item:hover {
  color: var(--gold-vivid);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 5rem;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1.02);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(5, 8, 17, 0.25) 0%, rgba(5, 8, 17, 0.88) 75%, var(--bg-deep) 100%),
              linear-gradient(to bottom, rgba(5, 8, 17, 0.75) 0%, transparent 40%, rgba(5, 8, 17, 0.95) 90%, var(--bg-deep) 100%);
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(10, 16, 32, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.badge-ring {
  width: 7px;
  height: 7px;
  background-color: var(--gold-vivid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-vivid);
}

.badge-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}

.hero-title {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.title-light {
  font-weight: 600;
  color: #F1F5F9;
  font-size: 0.8em;
}

.title-gold {
  background: linear-gradient(135deg, #FFFFFF 0%, #FEF08A 45%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(245, 158, 11, 0.3));
}

/* Official Quote Box from gaflightservices.com */
.hero-quote-box {
  background: rgba(13, 20, 38, 0.85);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.quote-text {
  font-size: 1.05rem;
  color: #FEF08A;
  font-weight: 500;
  line-height: 1.6;
}

.hero-desc {
  font-size: 1.125rem;
  color: #E2E8F0;
  max-width: 780px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero Metrics Grid */
.hero-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: rgba(10, 16, 32, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.metric-card {
  border-right: 1px solid var(--border-subtle);
  padding-right: 1rem;
}

.metric-card:last-child {
  border-right: none;
}

.metric-val {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.metric-label {
  font-size: 0.925rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
}

.metric-sub {
  font-size: 0.8rem;
  color: #94A3B8;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid var(--gold-primary);
  border-radius: 14px;
  position: relative;
}

.mouse-icon .wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-vivid);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

.scroll-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* ==========================================================================
   LIVE AIRSPACE TICKER
   ========================================================================== */
.airspace-ticker-section {
  background: #080D1A;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.65rem 0;
  position: relative;
  z-index: 20;
  overflow: hidden;
}

.ticker-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.ticker-title {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  z-index: 2;
  background: #080D1A;
}

.ticker-badge {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(56, 189, 248, 0.18);
  color: var(--cyan-light);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerSlide 40s linear infinite;
}

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

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

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #CBD5E1;
}

.ticker-item .icao {
  color: var(--gold-vivid);
  font-weight: 700;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.section-header {
  margin-bottom: 3.5rem;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-vivid);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: #CBD5E1;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
/* ==========================================================================
   SERVICES GRID & CARDS (UNIFIED 4-COLUMN HARMONIC ARCHITECTURE)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

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

@media (max-width: 680px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 16, 32, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.65);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75), 0 0 25px rgba(245, 158, 11, 0.18);
}

.service-card-banner {
  position: relative;
  width: 100%;
  height: 195px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.service-card:hover .service-card-banner img {
  transform: scale(1.07);
}

.service-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 32, 0.95) 0%, rgba(10, 16, 32, 0.35) 45%, transparent 100%);
  pointer-events: none;
}

.service-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  color: #050811;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.service-icon-badge {
  position: absolute;
  bottom: 0.85rem;
  right: 1rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11, 17, 34, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-icon-badge.icon-red {
  border-color: rgba(239, 68, 68, 0.7);
  color: #F87171;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.25);
}

.service-card:hover .service-icon-badge {
  transform: translateY(-2px) scale(1.08);
  border-color: var(--gold-vivid);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.service-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  min-height: 3.2rem;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.service-text {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.6;
  min-height: 4.8rem;
  margin-bottom: 1.25rem;
}

.service-features-list {
  list-style: none;
  font-size: 0.84rem;
  color: #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.5rem 0;
  padding: 1rem 0 0 0;
  border-top: 1px solid var(--border-subtle);
  min-height: 11rem;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
  min-height: 2.8rem;
  display: flex;
  align-items: center;
}

.service-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-vivid);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease, transform 0.2s ease;
}

.service-link:hover {
  color: #FFFFFF;
  gap: 0.65rem;
  transform: translateX(4px);
}

.service-link.service-link-urgent {
  color: #F87171;
}

.service-link.service-link-urgent:hover {
  color: #EF4444;
}

/* ==========================================================================
   GATEWAY HUBS & WEATHER RADAR
   ========================================================================== */
.hub-tabs-wrapper {
  margin-bottom: 2rem;
  width: 100%;
}

.hub-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  width: 100%;
}

.hub-tab-btn {
  background: #0E1626;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 0.95rem 0.85rem;
  border-radius: var(--radius-md);
  color: #FFFFFF;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: var(--transition);
  width: 100%;
  min-width: 0;
}

.hub-tab-btn:hover {
  background: #1E293B;
  border-color: var(--gold-vivid);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.hub-tab-btn.active {
  background: #172554;
  border: 2px solid var(--gold-vivid);
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.35);
}

.hub-code {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-vivid);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hub-city {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  white-space: normal;
  word-break: break-word;
}

.hub-tag {
  font-size: 0.76rem;
  color: #CBD5E1;
  font-weight: 500;
  line-height: 1.2;
  white-space: normal;
}

@media (max-width: 1100px) {
  .hub-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .hub-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .hub-tab-btn {
    padding: 0.75rem 0.75rem;
  }
  .hub-code {
    font-size: 1.05rem;
  }
  .hub-city {
    font-size: 0.82rem;
  }
  .hub-tag {
    font-size: 0.72rem;
  }
}

/* Hub Detail Card */
.hub-detail-card {
  padding: 2.5rem;
}

.hub-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.75rem;
  margin-bottom: 2rem;
}

.hub-identity {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1 1 auto;
  min-width: 0;
}

.hub-badge-icao {
  font-family: var(--font-mono);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold-vivid);
  background: rgba(245, 158, 11, 0.15);
  border: 1.5px solid var(--gold-border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  text-shadow: 0 0 12px var(--gold-glow);
  flex-shrink: 0;
}

.hub-identity-text {
  min-width: 0;
  flex: 1 1 auto;
}

.hub-full-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  line-height: 1.35;
  color: #FFFFFF;
}

.hub-coords {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.4;
}

.hub-weather-status {
  background: rgba(10, 16, 32, 0.75);
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  flex-shrink: 0;
  min-width: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.weather-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.25rem;
  margin-bottom: 0.15rem;
}

.weather-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #94A3B8;
}

.weather-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.2);
  border: 1.5px solid rgba(16, 185, 129, 0.5);
  color: var(--green-active);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

.weather-dot {
  width: 6px;
  height: 6px;
  background: var(--green-active);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-active);
}

.weather-temp {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.weather-summary {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--cyan-light);
  line-height: 1.35;
}

@media (max-width: 960px) {
  .hub-card-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  .hub-weather-status {
    width: 100%;
    min-width: 0;
    align-items: stretch;
  }
  .weather-summary {
    text-align: left;
  }
}

.hub-grid-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.hub-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--gold-vivid);
  border-left: 4px solid var(--gold-primary);
  padding-left: 0.75rem;
}

.hub-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.98rem;
  color: #E2E8F0;
}

.hub-spec-list strong {
  color: #FFFFFF;
}

.runway-spec-box {
  background: rgba(5, 8, 17, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.runway-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.925rem;
}

.runway-row:last-child {
  border-bottom: none;
}

.rw-lbl {
  color: #CBD5E1;
}

.rw-val {
  font-family: var(--font-mono);
  color: #FFFFFF;
  font-weight: 700;
  text-align: right;
}

.hub-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1.5px solid var(--gold-border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
}

.team-avatar {
  width: 46px;
  height: 46px;
  background: var(--gold-gradient);
  color: #050811;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.team-info {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.team-info strong {
  color: var(--gold-vivid);
}

.team-info small {
  color: var(--cyan-light);
  font-family: var(--font-mono);
}

.hub-card-cta {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   HANDLING & FUEL CALCULATOR
   ========================================================================== */
.calculator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.calc-config-panel {
  padding: 2.5rem;
}

.panel-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-vivid);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.75rem;
}

.sub-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 1.75rem 0 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.col-6 {
  flex: 1;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.925rem;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 0.45rem;
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  background: rgba(10, 16, 32, 0.9);
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: var(--transition);
}

.form-select option {
  background: #0A0F1D;
  color: #FFFFFF;
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-vivid);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.35);
  background: #0A0F1D;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #94A3B8;
  opacity: 1;
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.custom-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid var(--border-subtle);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.custom-checkbox-label:hover {
  background: rgba(22, 34, 60, 0.95);
  border-color: var(--gold-primary);
}

.custom-checkbox-label input {
  margin-top: 0.25rem;
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

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

.chk-text strong {
  font-size: 0.925rem;
  color: #FFFFFF;
  font-weight: 700;
}

.chk-text small {
  font-size: 0.8rem;
  color: #CBD5E1;
  margin-top: 0.15rem;
}

/* Custom Slider */
.slider-box {
  background: rgba(10, 16, 32, 0.8);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  margin-bottom: 1.5rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.slider-value-badge {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan-light);
  background: rgba(56, 189, 248, 0.18);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.custom-slider {
  width: 100%;
  accent-color: var(--gold-primary);
  cursor: pointer;
  height: 8px;
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #94A3B8;
  margin-top: 0.4rem;
}

/* Dossier Summary Panel */
.calc-summary-panel {
  padding: 0;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.dossier-card {
  display: flex;
  flex-direction: column;
}

.dossier-header {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(14, 23, 42, 0.95) 100%);
  padding: 1.8rem 2rem;
  border-bottom: 1.5px solid var(--gold-border);
  position: relative;
}

.dossier-stamp {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-vivid);
}

.dossier-id {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan-light);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.dossier-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
}

.dossier-body {
  padding: 2rem;
}

.dossier-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.d-label {
  color: #CBD5E1;
}

.d-value {
  font-weight: 700;
  color: #FFFFFF;
  text-align: right;
}

.dossier-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 1.25rem 0;
}

.dossier-services-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.dossier-service-tag {
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(245, 158, 11, 0.16);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
}

.dossier-turnaround-box {
  background: rgba(56, 189, 248, 0.12);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.t-badge {
  font-size: 0.75rem;
  color: var(--cyan-light);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.t-val {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.dossier-guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.dossier-footer {
  background: rgba(5, 8, 17, 0.75);
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--border-subtle);
}

.dossier-direct-contacts {
  font-size: 0.85rem;
  color: #CBD5E1;
  text-align: center;
  margin-top: 1rem;
}

.dossier-direct-contacts a {
  color: var(--gold-vivid);
}

/* ==========================================================================
   FLEET COMPATIBILITY
   ========================================================================== */
.fleet-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fleet-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}

.fleet-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan-light);
  margin-bottom: 0.5rem;
}

.fleet-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.fleet-stats {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.f-stat {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.f-stat-lbl {
  color: #CBD5E1;
}

.f-stat-val {
  font-family: var(--font-mono);
  color: #FFFFFF;
  font-weight: 700;
}

/* ==========================================================================
   PAST OPERATIONS & GALLERY
   ========================================================================== */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gal-filter-btn {
  background: #1E293B;
  border: 1.5px solid #475569;
  color: #FFFFFF !important;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: normal !important;
}

.gal-filter-btn:hover {
  background: #334155;
  border-color: var(--gold-vivid);
  color: #FEF08A !important;
}

.gal-filter-btn.active {
  background: var(--gold-gradient);
  color: #000000 !important;
  font-weight: 800;
  border-color: #FEF08A;
  box-shadow: 0 4px 18px var(--gold-glow);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 290px;
  cursor: pointer;
}

.gallery-item.large-item {
  grid-column: span 2;
  height: 390px;
}

.gallery-item:nth-child(2) {
  height: 390px;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 17, 0.96) 0%, rgba(5, 8, 17, 0.5) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.gallery-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-vivid);
  margin-bottom: 0.35rem;
}

.gallery-caption-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: #FFFFFF;
}

.gallery-caption-sub {
  font-size: 0.9rem;
  color: #E2E8F0;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text-body p {
  margin-bottom: 1.35rem;
  font-size: 1.075rem;
  line-height: 1.8;
  color: #E2E8F0;
}

.about-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cred-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.cred-item strong {
  display: block;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.cred-item p {
  font-size: 0.875rem;
  color: #CBD5E1;
  margin: 0;
}

.about-card-featured {
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(22, 34, 60, 0.85) 0%, rgba(14, 23, 42, 0.95) 100%);
  border: 1.5px solid var(--gold-border);
}

.featured-badge {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-vivid);
  margin-bottom: 1rem;
}

.about-quote {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #FEF08A;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  color: #050811;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-author strong {
  display: block;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.quote-author span {
  font-size: 0.8rem;
  color: #CBD5E1;
}

.about-ops-contacts {
  padding: 2rem;
}

.about-ops-contacts h4 {
  font-size: 1.15rem;
  color: var(--gold-vivid);
  margin-bottom: 1rem;
}

.contact-pill-item {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.925rem;
}

.contact-pill-item:last-child {
  border-bottom: none;
}

.contact-role {
  color: #CBD5E1;
}

.contact-name {
  font-weight: 700;
  color: #FFFFFF;
}

.contact-number, .contact-email {
  color: var(--gold-vivid);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}

.contact-info-col {
  padding: 2.5rem;
}

.contact-form-col {
  padding: 2.5rem;
}

.contact-col-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--gold-vivid);
}

.contact-col-desc {
  font-size: 1rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
}

.contact-methods-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.method-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(10, 16, 32, 0.75);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
}

.method-card:hover {
  border-color: var(--gold-primary);
  background: rgba(22, 34, 60, 0.9);
}

.method-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.method-details {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.8rem;
  color: #CBD5E1;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.method-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-mono);
}

.method-val:hover {
  color: var(--gold-vivid);
}

.method-val-text {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.method-val-sub {
  font-size: 0.85rem;
  color: #CBD5E1;
}

.form-checkbox-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(10, 16, 32, 0.7);
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-glass);
}

.form-checkbox-inline label {
  font-size: 0.9rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.form-checkbox-inline input {
  accent-color: var(--gold-primary);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: #CBD5E1;
  text-align: center;
  margin-top: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: #03050B;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  height: 48px;
  width: auto;
}

.f-brand-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
}

.f-brand-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold-vivid);
  font-weight: 600;
}

.footer-about-text {
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: #CBD5E1;
}

.footer-license-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-vivid);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.footer-links-list a:hover {
  color: var(--gold-vivid);
  transform: translateX(4px);
}

.footer-contact-block p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: #E2E8F0;
}

.footer-contact-block a {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-contact-block a:hover {
  color: var(--gold-vivid);
}

.footer-meta-hours {
  color: var(--cyan-light);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer-legal a {
  color: var(--gold-vivid);
}

/* ==========================================================================
   FLOATING RADAR OPS BUTTON
   ========================================================================== */
.floating-ops-pill {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
}

.btn-floating-radar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(10, 16, 32, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--gold-primary);
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 18px rgba(245, 158, 11, 0.3);
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition);
}

.btn-floating-radar:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--gold-vivid);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 158, 11, 0.5);
}

.pulsing-beacon {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold-vivid);
  box-shadow: 0 0 10px var(--gold-vivid);
  animation: pulseBeacon 1.5s infinite ease-in-out;
}

.floating-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.f-txt-small {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-light);
}

.f-txt-bold {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.f-arrow {
  color: var(--gold-vivid);
  font-size: 1.2rem;
  font-weight: 800;
}

/* ==========================================================================
   LUXURY DIALOG MODAL
   ========================================================================== */
.luxury-modal {
  border: none;
  background: transparent;
  padding: 0;
  margin: auto;
  max-width: 600px;
  width: 90vw;
  z-index: 1000;
}

.luxury-modal::backdrop {
  background: rgba(3, 5, 11, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal-dialog-content {
  padding: 2.5rem;
  position: relative;
  background: #0C1222;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #CBD5E1;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #FFFFFF;
}

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

.modal-alert-icon {
  width: 54px;
  height: 54px;
  background: rgba(239, 68, 68, 0.2);
  border: 1.5px solid rgba(239, 68, 68, 0.5);
  color: #F87171;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  animation: pulseBeacon 1.2s infinite;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.modal-desc {
  font-size: 0.95rem;
  color: #CBD5E1;
}

.modal-hotlines-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-hotline-card {
  background: rgba(5, 8, 17, 0.8);
  border: 1.5px solid var(--border-glass);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: var(--transition);
}

.modal-hotline-card:hover {
  border-color: var(--gold-vivid);
  background: rgba(245, 158, 11, 0.15);
}

.hotline-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-vivid);
  margin-bottom: 0.25rem;
}

.hotline-phone {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* ==========================================================================
   GALLERY LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3, 5, 12, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 1080px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border: 1.5px solid rgba(245, 158, 11, 0.4);
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
}

.lightbox-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-vivid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.lightbox-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-vivid);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: rgba(10, 16, 32, 0.98);
  backdrop-filter: blur(20px);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--gold-glow);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
  max-width: 440px;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  color: #050811;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-content strong {
  display: block;
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 800;
}

.toast-content p {
  font-size: 0.85rem;
  color: #E2E8F0;
  margin: 0;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card.featured-service {
    grid-column: span 2;
  }
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  .calc-summary-panel {
    position: static;
  }
  .fleet-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Prevent Any Horizontal Overflow Globally */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Compact Telemetry bar on mobile */
  .telemetry-group.right-group {
    display: none;
  }
  .telemetry-inner {
    justify-content: center;
    text-align: center;
    font-size: 0.76rem;
  }

  .nav-inner {
    height: 64px;
    gap: 0.5rem;
  }
  .brand-img {
    height: 36px;
  }
  .brand-name {
    font-size: 0.95rem;
  }
  .brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
  }
  .nav-links, .btn-nav-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    padding: 0.5rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 4.5rem 0 2.5rem;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
    line-height: 1.25;
  }
  .hero-quote-box {
    padding: 0.85rem 1rem;
  }
  .quote-text {
    font-size: 0.92rem;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
  .hero-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
  }
  .metric-card {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.65rem;
  }
  .metric-card:nth-child(3), .metric-card:nth-child(4) {
    border-bottom: none;
  }
  .metric-val {
    font-size: 1.7rem;
  }
  .metric-label {
    font-size: 0.75rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Gateway Hubs Detail Card */
  .hub-detail-card {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-md);
  }
  .hub-card-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .hub-identity {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    width: 100%;
  }
  .hub-badge-icao {
    font-size: 1.3rem;
    padding: 0.35rem 0.75rem;
  }
  .hub-full-name {
    font-size: 1.15rem;
    line-height: 1.35;
  }
  .hub-coords {
    font-size: 0.78rem;
    word-break: break-word;
  }
  .hub-weather-status {
    width: 100%;
    min-width: 0;
    align-items: stretch;
    padding: 0.85rem 1rem;
    box-sizing: border-box;
  }
  .weather-summary {
    text-align: left;
    font-size: 0.76rem;
    word-break: break-word;
  }
  .hub-grid-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .runway-row {
    flex-direction: column;
    gap: 0.25rem;
  }
  .rw-val {
    text-align: left;
    word-break: break-word;
  }

  /* Flight Calculator */
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .calc-form-panel {
    padding: 1.25rem 1rem !important;
  }
  .calc-summary-panel {
    position: static;
  }
  .dossier-header {
    padding: 1.25rem 1rem;
  }
  .dossier-body {
    padding: 1.25rem 1rem;
  }
  .dossier-title {
    font-size: 1.15rem;
  }
  .dossier-row {
    font-size: 0.88rem;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .custom-checkbox-label {
    padding: 0.65rem 0.85rem;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-group.col-6 {
    width: 100%;
    max-width: 100%;
  }

  /* Fleet & Gallery */
  .fleet-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-item.large-item {
    grid-column: span 1;
    height: 240px;
  }
  .gallery-item:nth-child(2) {
    height: 240px;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-text-content {
    padding: 1.25rem 1rem !important;
  }
  .about-stat-box {
    padding: 1rem;
  }

  /* Contact Section */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  .contact-info-col,
  .contact-form-col {
    padding: 1.25rem 1rem !important;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .method-card {
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 1rem;
    box-sizing: border-box;
  }
  .method-val {
    font-size: 0.95rem;
    word-break: break-all;
  }
  .form-checkbox-inline {
    padding: 0.75rem 0.85rem;
    gap: 0.65rem;
  }
  .form-checkbox-inline label {
    font-size: 0.82rem;
  }

  /* Footer */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .main-footer {
    padding: 3rem 0 2rem;
  }

  /* Floating Widgets & Modals */
  .floating-ops-pill {
    bottom: 0.85rem;
    right: 0.85rem;
    max-width: calc(100vw - 1.7rem);
  }
  .btn-floating-radar {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }
  .f-txt-small {
    display: none;
  }
  .toast-notification {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: calc(100vw - 2rem);
    padding: 0.85rem 1rem;
  }
  /* Modals & Dialogs */
  .luxury-modal {
    width: 94vw;
    max-width: 94vw;
    margin: auto;
  }
  .modal-dialog-content {
    padding: 1.5rem 1.15rem !important;
    border-radius: var(--radius-md);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
  .modal-title {
    font-size: 1.2rem;
  }
  .modal-desc {
    font-size: 0.85rem;
  }
  .modal-hotline-card {
    padding: 1rem 0.85rem;
  }
  .hotline-phone {
    font-size: 1.25rem;
  }
  .modal-action-row .btn {
    font-size: 0.88rem !important;
    padding: 0.8rem 0.75rem !important;
    white-space: normal !important;
    text-align: center;
    line-height: 1.35;
    width: 100%;
  }
  .lightbox-modal {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 420px) {
  .hub-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .hub-tab-btn {
    padding: 0.65rem 0.5rem;
  }
  .hub-code {
    font-size: 0.98rem;
  }
  .hub-city {
    font-size: 0.78rem;
  }
  .hub-tag {
    font-size: 0.68rem;
  }
  .brand-name {
    font-size: 0.88rem;
  }
  .brand-sub {
    font-size: 0.5rem;
  }
}
