/* ============================================
   LANSERIA FLIGHT CENTRE — Modern Website
   Day/Night Mode + Animations
   ============================================ */

/* ---------- CSS Custom Properties (Light / Day) ---------- */
:root {
  /* Brand colours */
  --primary: #0a1628;
  --primary-light: #1a2d4a;
  --accent: #c8a44e;
  --accent-hover: #dbb85e;
  --accent-glow: rgba(200, 164, 78, .35);

  /* Surfaces */
  --bg: #f5f5f7;
  --bg-alt: #ffffff;
  --bg-card: #ffffff;
  --bg-hero-overlay: rgba(10, 22, 40, .62);

  /* Text */
  --text: #1a1a2e;
  --text-muted: #555;
  --text-light: #ffffff;
  --text-on-card: #333;

  /* Misc */
  --border: rgba(0,0,0,.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .35s cubic-bezier(.4,0,.2,1);

  /* Navbar */
  --nav-bg: rgba(255,255,255,.88);
  --nav-text: #1a1a2e;
  --nav-blur: blur(16px);

  /* Section */
  --section-pad: 100px 0;

  /* Scroll indicator */
  --scroll-track: rgba(0,0,0,.08);
  --scroll-thumb: var(--accent);
}

/* ---------- Dark / Night Mode ---------- */
[data-theme="dark"] {
  --bg: #0b0f19;
  --bg-alt: #121829;
  --bg-card: #171e30;
  --bg-hero-overlay: rgba(5, 10, 22, .72);
  --text: #e4e4ec;
  --text-muted: #8a8fa8;
  --text-on-card: #c8cad4;
  --border: rgba(255,255,255,.07);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
  --shadow-md: 0 8px 30px rgba(0,0,0,.35);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.45);
  --nav-bg: rgba(11,15,25,.88);
  --nav-text: #e4e4ec;
  --scroll-track: rgba(255,255,255,.06);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--scroll-track); }
::-webkit-scrollbar-thumb { background: var(--scroll-thumb); border-radius: 4px; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: .8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-pad { padding: var(--section-pad); }
.text-center { text-align: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-dark {
  background: var(--primary);
  color: var(--text-light);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Scroll Progress Bar ---------- */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #f0d078);
  z-index: 10000;
  transition: width .1s linear;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 16px 0;
  background: var(--nav-bg);
  backdrop-filter: var(--nav-blur);
  -webkit-backdrop-filter: var(--nav-blur);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo .logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0);
  transition: filter .3s ease;
}
[data-theme="dark"] .nav-logo .logo-img {
  filter: brightness(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--nav-text);
  font-weight: 600;
  font-size: .9rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Selector */
.lang-selector {
  position: relative;
}
.lang-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--nav-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.lang-btn:hover {
  border-color: var(--accent);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  min-width: 160px;
  z-index: 100;
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: .87rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.lang-dropdown button:hover {
  background: var(--accent);
  color: var(--primary);
}
.lang-dropdown button.active-lang {
  background: rgba(200,164,78,.15);
  color: var(--accent);
  font-weight: 700;
}

/* Theme Toggle */
.theme-toggle {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--nav-text);
  transition: all var(--transition);
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(30deg);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--nav-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION — Video Slider
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide .hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide .hero-video-bg video,
.hero-slide .hero-video-bg .video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide .hero-video-bg .video-fallback {
  background-size: cover;
  background-position: center;
}
.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-hero-overlay);
  z-index: 2;
}
.hero-slide .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  color: var(--text-light);
}
.hero-content .hero-tagline {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp .9s .3s forwards;
}
.hero-slide.active .hero-tagline { animation: heroFadeUp .9s .3s forwards; }
.hero-slide:not(.active) .hero-tagline { opacity: 0; transform: translateY(40px); animation: none; }

.hero-content .hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 650px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp .9s .55s forwards;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
}
.hero-slide.active .hero-sub { animation: heroFadeUp .9s .55s forwards; }
.hero-slide:not(.active) .hero-sub { opacity: 0; transform: translateY(30px); animation: none; }

.hero-content .hero-cta {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp .9s .75s forwards;
}
.hero-slide.active .hero-cta { animation: heroFadeUp .9s .75s forwards; }
.hero-slide:not(.active) .hero-cta { opacity: 0; transform: translateY(24px); animation: none; }

.hero-content .hero-cta .btn { font-size: 1rem; padding: 16px 40px; }

/* Accent underline */
.hero-tagline .accent-line {
  display: block;
  color: var(--accent);
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero indicators */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.hero-indicators button {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-indicators button.active {
  width: 60px;
  background: var(--accent);
}

/* Hero scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,.6);
  font-size: 1.5rem;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
  position: relative;
  z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  color: var(--text-light);
}
.stat-item h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-item p {
  font-size: .9rem;
  opacity: .75;
  font-weight: 500;
}

/* ============================================
   ABOUT SECTION (Full Page)
   ============================================ */
.about-section {
  background: var(--bg);
  padding: 0;
}

/* --- About Hero Banner --- */
.about-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.7) 100%);
  display: flex;
  align-items: center;
}
.about-hero-overlay .section-label {
  color: var(--accent);
}
.about-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1.15;
}
.about-hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* --- About Alternating Blocks --- */
.about-block {
  background: var(--bg);
}
.about-block-alt {
  background: var(--bg-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid-reverse {
  direction: rtl;
}
.about-grid-reverse > * {
  direction: ltr;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-image:hover img {
  transform: scale(1.04);
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.75;
}

/* --- Graduates Highlight --- */
.about-graduates {
  background: var(--primary);
  text-align: center;
}
.about-graduates .section-label {
  color: var(--accent);
}
.about-graduates .section-title {
  color: #fff;
}
.about-grads-desc {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 740px;
  margin: 0 auto 16px;
  line-height: 1.75;
}

/* --- Fly Into Future Banner --- */
.about-future {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}
.about-future-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-future-overlay {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.5);
  padding: 80px 0;
}
.about-future .section-label {
  color: var(--accent);
}
.about-future .section-title {
  color: #fff;
}
.about-future-desc {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.75;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card .svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #d4b160);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.65;
}

/* ============================================
   TRAINING SECTION
   ============================================ */
.training-section { background: var(--bg); }
.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.training-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
}
.training-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.training-card .train-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--accent);
  font-size: 1.1rem;
}
.training-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.training-card .train-sub { font-size: .82rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.training-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.training-card .learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .87rem;
  font-weight: 700;
  color: var(--accent);
}
.training-card .learn-more-link:hover { gap: 10px; }

/* ============================================
   GROUND SCHOOL SECTION
   ============================================ */
.ground-school-section { background: var(--bg-alt); }
.gs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
.gs-text p { color: var(--text-muted); margin-bottom: 14px; font-size: .97rem; }
.gs-subjects { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gs-subject {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}
.gs-subject:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.gs-subject .gs-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #d4b160);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--primary);
  flex-shrink: 0;
}
.gs-subject span { font-weight: 600; font-size: .9rem; color: var(--text); }

/* ============================================
   CHARTER SECTION
   ============================================ */
.charter-section { background: var(--bg); }
.charter-services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 40px;
}
.charter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.charter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.charter-card .charter-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--accent);
}
.charter-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.charter-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   SAFARI SECTION (with parallax)
   ============================================ */
.safari-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #0d1f36 100%);
  color: var(--text-light);
  overflow: hidden;
}
.safari-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a44e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}
.safari-content { position: relative; z-index: 2; }
.safari-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 30px;
}
.safari-text p { color: rgba(255,255,255,.75); margin-bottom: 14px; }
.safari-features { margin-top: 30px; }
.safari-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.safari-feature .sf-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}
.safari-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.safari-feature p { font-size: .88rem; color: rgba(255,255,255,.6); }
.safari-image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.safari-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.safari-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .6s ease;
}
.safari-img:hover img { transform: scale(1.06); }
.safari-img:first-child { grid-row: span 2; }
.safari-img:first-child img { height: 100%; }

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet-section { background: var(--bg-alt); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.fleet-card .fleet-img {
  height: 160px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent);
  position: relative;
  overflow: hidden;
}
.fleet-card .fleet-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.3));
}
.fleet-card .fleet-info {
  padding: 20px;
}
.fleet-card .fleet-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.fleet-card .fleet-info p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Fleet Table */
.fleet-table-wrapper {
  margin-top: 60px;
  overflow-x: auto;
}
.fleet-table-wrapper h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text);
}
.fleet-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fleet-table thead {
  background: var(--primary);
  color: var(--text-light);
}
.fleet-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fleet-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text-on-card);
  background: var(--bg-card);
}
.fleet-table tbody tr:hover td {
  background: rgba(200,164,78,.08);
}
.fleet-table tbody tr:last-child td { border-bottom: none; }

/* ============================================
   AIRLINES SECTION
   ============================================ */
.airlines-section {
  background: var(--primary);
  padding: 60px 0;
  color: var(--text-light);
  text-align: center;
}
.airlines-section .section-title { color: var(--text-light); }
.airlines-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.airline-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .7;
  transition: opacity var(--transition);
}
.airline-logo:hover { opacity: 1; }
.airline-logo .airline-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  backdrop-filter: blur(8px);
}
.airline-logo span { font-size: .82rem; font-weight: 600; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
.contact-offices { display: flex; flex-direction: column; gap: 28px; }
.office-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.office-card:hover {
  border-color: var(--accent);
}
.office-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.office-card .office-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: .9rem;
  color: var(--text-muted);
}
.office-card .office-detail .od-icon { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.office-card .office-detail a { color: var(--text-muted); }
.office-card .office-detail a:hover { color: var(--accent); }

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .83rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-size: .93rem;
  font-family: inherit;
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--accent), #d4b160);
  color: var(--primary);
  padding: 60px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-inner h3 { font-size: 1.5rem; font-weight: 800; }
.newsletter-inner p { font-size: .95rem; opacity: .8; margin-top: 6px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.newsletter-form input {
  padding: 14px 20px;
  border: 2px solid rgba(10,22,40,.2);
  border-radius: 50px;
  background: rgba(255,255,255,.9);
  font-size: .93rem;
  color: var(--primary);
  width: 220px;
  outline: none;
  transition: all var(--transition);
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form button {
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  background: var(--primary);
  color: var(--text-light);
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  transition: all var(--transition);
}
.newsletter-form button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .footer-logo .footer-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(1);
  transition: filter .3s ease;
}
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; max-width: 320px; }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--accent);
  color: var(--primary);
}
.footer-col h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--accent);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: all var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,.35);
  font-size: .82rem;
}

/* ============================================
   SCROLL ANIMATIONS (reveal on scroll)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: .05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: .12s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: .19s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: .26s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: .33s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: .40s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: .47s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: .54s; }
.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 9990;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px var(--accent-glow);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 868px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 30px;
    gap: 14px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 9998;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; color: var(--text); }
  .mobile-toggle { display: flex; }

  .about-grid,
  .about-grid-reverse,
  .gs-layout,
  .contact-layout,
  .safari-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .about-hero { height: 400px; }
  .about-hero-title { font-size: 2rem; }
  .about-image img { height: 280px; }
  .services-grid,
  .charter-services {
    grid-template-columns: 1fr 1fr;
  }
  .training-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-wrap: wrap; justify-content: center; }
  .hero-content .hero-tagline { font-size: clamp(1.6rem, 5vw, 2.6rem); }
}

@media (max-width: 560px) {
  .services-grid,
  .charter-services,
  .fleet-grid,
  .gs-subjects {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form input { width: 100%; }
  .safari-image-stack { grid-template-columns: 1fr; }
  .safari-img:first-child { grid-row: auto; }
  .airlines-logos { gap: 30px; }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader-screen {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity .5s ease, visibility .5s ease;
}
.loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-plane {
  font-size: 2.5rem;
  color: var(--accent);
  animation: loaderFly 1.5s infinite ease-in-out;
}
@keyframes loaderFly {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}
.loader-text {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  animation: loaderFill 1.5s ease forwards;
}
@keyframes loaderFill {
  from { width: 0; }
  to { width: 100%; }
}
