:root {
  --primary-bg: #0a0e27;
  --secondary-bg: #1a1f3a;
  --gold: #FFD700;
  --gold-hover: #E5C100;
  --text-white: #ffffff;
  --text-muted: #a8b2d1;
  --success: #4CAF50;
  --danger: #ff6363;

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;
  --transition: all 0.25s ease;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--primary-bg);
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background: radial-gradient(circle at top center, #1a1f3a 0%, #0a0e27 80%);
}

h1, h2, h3, h4 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 14px;
}

.text-gold { color: var(--gold); }
.section-padding { padding: 90px 0; }
.bg-darker { background-color: rgba(0,0,0,0.2); }

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary, .btn-gold {
  background-color: var(--gold);
  color: var(--primary-bg);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.9);
  color: var(--text-white);
  margin-left: 12px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.95);
  color: var(--primary-bg);
}

.btn-block { width: 100%; text-align: center; }

.glow-btn {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.35);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.35); }
  70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* NAVBAR (FIXED) */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.logo {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.nav-link {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after { width: 100%; }

.nav-cta {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

.nav-btn {
  background: var(--gold);
  color: var(--primary-bg);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-toggle { display: none; cursor: pointer; }
.bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: var(--text-white);
  transition: all 0.25s ease-in-out;
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,39,0.95) 0%, rgba(10,14,39,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
  padding-top: 70px; /* space for navbar */
}

.hero-text h1 {
  font-size: 3.35rem;
  line-height: 1.08;
  margin-bottom: 18px;
}

.text-gradient {
  background: linear-gradient(to right, var(--gold), #FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  background: rgba(255, 215, 0, 0.18);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
  border: 1px solid rgba(255,215,0,0.6);
}

.subheadline { font-size: 1.08rem; margin-bottom: 26px; }

.stats-row {
  display: flex;
  gap: 34px;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
}

.stat .counter { font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat p { font-size: 0.9rem; }

/* Booking Widget */
.booking-widget { padding: 28px; border-top: 4px solid var(--gold); }
.widget-header {
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 10px;
}

.form-group { position: relative; margin-bottom: 14px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: white;
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255,215,0,0.9);
  background: rgba(255,255,255,0.13);
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--gold);
}

/* Form alerts + field errors */
.hidden { display: none !important; }

.form-alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  font-size: 0.95rem;
}

.form-alert.success { border-color: rgba(76, 175, 80, 0.6); color: #bff5c5; }
.form-alert.error { border-color: rgba(255, 99, 99, 0.6); color: #ffd1d1; }
.form-alert.info { border-color: rgba(255, 215, 0, 0.6); color: #ffeaa7; }

.input-error {
  border-color: rgba(255, 99, 99, 0.8) !important;
  box-shadow: 0 0 0 3px rgba(255, 99, 99, 0.15);
}

.field-error {
  margin-top: 8px;
  font-size: 0.86rem;
  color: #ffd1d1;
}

.loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(10,14,39,0.35);
  border-top: 2px solid rgba(10,14,39,0.95);
  margin-left: 10px;
  vertical-align: middle;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.tiny-note {
  margin-top: 10px;
  font-size: 0.86rem;
  opacity: 0.85;
}

/* Section header divider */
.section-header .divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 18px auto;
  border-radius: 999px;
}

/* Feature cards */
.feature-card {
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,215,0,0.8);
}

.icon-box { font-size: 2.5rem; color: var(--gold); margin-bottom: 16px; }

/* Services */
.service-card {
  background: var(--secondary-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
}

.card-image { height: 200px; position: relative; display: flex; align-items: center; justify-content: center; }
.plane-bg { background: linear-gradient(45deg, #2c3e50, #4ca1af); }
.corp-bg { background: linear-gradient(45deg, #141E30, #243B55); }
.event-bg { background: linear-gradient(45deg, #3a1c71, #d76d77); }

.card-image i { font-size: 4rem; color: rgba(255,255,255,0.3); z-index: 2; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; }
.text-link { color: var(--gold); font-weight: 700; font-size: 0.92rem; margin-top: 12px; display: inline-block; }

/* Dashboard area */
.dashboard-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 28px; }

.area-list-panel {
  padding: 24px;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.area-list-panel h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}

.area-scroll-container {
  flex: 1;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-right: 5px;
}

.area-scroll-container::-webkit-scrollbar { width: 5px; }
.area-scroll-container::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
.area-scroll-container::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); }

.area-item {
  background: rgba(255,255,255,0.05);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.area-item:hover,
.area-item.active {
  background: rgba(255, 215, 0, 0.1);
  border-left: 3px solid var(--gold);
  color: var(--text-white);
}

.area-item.highlight {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.06);
}

.status-indicator {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; display: inline-block; }
.dot.pulse { animation: dot-pulse 2s infinite; }

@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.radar-panel {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #1a1f3a 0%, #050714 100%);
}

.radar-container { width: 300px; height: 300px; position: relative; }

.radar-circle {
  position: absolute;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.c1 { width: 100px; height: 100px; }
.c2 { width: 200px; height: 200px; }
.c3 { width: 300px; height: 300px; border-color: rgba(255, 215, 0, 0.1); }

.center-point {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 1.5rem;
  z-index: 10;
}

.radar-scanner {
  position: absolute;
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  background: conic-gradient(transparent 80%, rgba(255, 215, 0, 0.4));
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: scan 4s infinite linear;
  pointer-events: none;
}

@keyframes scan {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.blip {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,215,0,0.9);
  animation: blip-fade 4s infinite;
}
.b1 { top: 30%; left: 40%; animation-delay: 0.5s; }
.b2 { top: 70%; left: 75%; animation-delay: 1.2s; }
.b3 { top: 20%; left: 60%; animation-delay: 2.5s; }

@keyframes blip-fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

.radar-text {
  position: absolute;
  bottom: 18px; right: 18px;
  text-align: right;
}
.radar-text h4 { font-size: 0.9rem; color: var(--gold); }
.radar-text p { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; }

/* Rates */
.pricing-container { padding: 36px; text-align: center; max-width: 860px; margin: 0 auto; }
.price-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 18px; }
.price-item { display: flex; flex-direction: column; }
.price-item .amount { font-size: 2.4rem; font-weight: 900; color: var(--gold); }
.airport-rates { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; }

/* Booking form */
.booking-wrapper { padding: 46px; }
.modern-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.modern-form label { display: block; margin-bottom: 8px; font-size: 0.92rem; color: var(--text-muted); }

.modern-form input,
.modern-form select,
.modern-form textarea {
  width: 100%;
  padding: 12px;
  background: var(--secondary-bg);
  border: 1px solid #2d3763;
  color: white;
  border-radius: 10px;
}

.modern-form input:focus,
.modern-form textarea:focus,
.modern-form select:focus {
  border-color: rgba(255,215,0,0.9);
  outline: none;
}

/* About + testimonials + footer */
.rounded-img { border-radius: 20px; box-shadow: -18px 18px 0 rgba(255, 215, 0, 0.1); }
.about-image { position: relative; }
.experience-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  padding: 18px;
  background: var(--secondary-bg);
  text-align: center;
  border: 1px solid rgba(255,215,0,0.7);
}
.experience-badge .years { display: block; font-size: 2rem; font-weight: 900; color: var(--gold); }

.testimonial-card { max-width: 640px; margin: 0 auto; padding: 38px; }
.review-text { font-size: 1.08rem; font-style: italic; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; justify-content: center; gap: 14px; }
.reviewer img { width: 50px; height: 50px; border-radius: 50%; }

footer { background: #050714; border-top: 1px solid #1a1f3a; padding-top: 56px; }
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  margin-bottom: 34px;
}
.contact-list li { margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; }

.email-stack { display: flex; flex-direction: column; gap: 6px; }
.email-stack a { font-size: 0.92rem; transition: color 0.3s; }
.email-stack a:hover { color: var(--gold); }

.social-links a {
  display: inline-flex;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  justify-content: center; align-items: center;
  border-radius: 50%;
  margin-right: 10px;
}
.social-links a:hover { background: var(--gold); color: var(--primary-bg); }

.footer-bottom { border-top: 1px solid #1a1f3a; padding: 18px 0; text-align: center; font-size: 0.9rem; }

/* Scroll top */
.scroll-top {
  position: fixed; bottom: 26px; right: 26px;
  background: var(--gold); color: var(--primary-bg);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  z-index: 99;
}
.scroll-top.active { opacity: 1; pointer-events: all; }

.mobile-sticky-btn {
  display: none;
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--gold);
  z-index: 1001;
  text-align: center;
}
.mobile-sticky-btn a {
  display: block; padding: 14px;
  color: var(--primary-bg);
  font-weight: 900;
  font-size: 1.05rem;
}

/* Particles */
.particles span {
  position: absolute; bottom: -50px;
  background: transparent;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
  z-index: 2;
}
.particles span:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 8s; }
.particles span:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-duration: 5s; animation-delay: 1s; }
.particles span:nth-child(3) { width: 50px; height: 50px; left: 35%; animation-duration: 10s; animation-delay: 2s; }
.particles span:nth-child(4) { width: 80px; height: 80px; left: 50%; animation-duration: 12s; animation-delay: 0s; }
.particles span:nth-child(5) { width: 35px; height: 35px; left: 80%; animation-duration: 6s; animation-delay: 1s; }

@keyframes rise {
  0% { bottom: -100px; transform: translateX(0); opacity: 0; }
  50% { opacity: 1; }
  100% { bottom: 100vh; transform: translateX(-50px); opacity: 0; }
}

/* Fade in */
.fade-in-up { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* RESPONSIVE (IMPORTANT) */
@media (max-width: 1100px) {
  .nav-menu { gap: 14px; }
  .nav-btn { padding: 10px 14px; }
  .nav-cta { font-size: 1rem; }
}

@media (max-width: 980px) {
  /* collapse earlier so it doesn't look like your screenshot */
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 68px;
    flex-direction: column;
    background: rgba(26, 31, 58, 0.98);
    width: 100%;
    text-align: center;
    padding: 26px 0;
    transition: 0.28s;
    box-shadow: 0 14px 22px rgba(0,0,0,0.5);
  }
  .nav-menu.active { left: 0; }
  .call-btn-item { display: none; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1 { font-size: 2.7rem; }
  .stats-row { justify-content: center; }
  .booking-widget { max-width: 520px; margin: 0 auto; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .area-list-panel { height: auto; }
  .grid-2 { grid-template-columns: 1fr; }
  .modern-form .form-grid { grid-template-columns: 1fr; }
  .mobile-sticky-btn { display: block; }
}

/* =========================
   MOBILE HERO / BANNER FIX (REPLACE YOUR BLOCK WITH THIS)
   ========================= */

@media (max-width: 768px) {

  /* Make sure the fixed header doesn't crush the hero */
  body { overflow-x: hidden; }

  .hero{
    /* Stop huge empty space */
    min-height: unset !important;
    height: auto !important;

    /* Clean spacing for mobile */
    padding-top: 86px !important;   /* adjusts for fixed nav */
    padding-bottom: 28px !important;

    /* Prevent weird cropping */
    background-position: center top !important;
    background-size: cover !important;
  }

  /* If your hero background is using pseudo elements, control them */
  .hero::before{
    opacity: 0.28 !important;       /* lower = less messy behind text */
    background-position: center top !important;
    background-size: cover !important;
    transform: none !important;
  }

  .hero::after{
    /* Stronger readable overlay */
    background:
      linear-gradient(180deg, rgba(7,11,24,.92) 0%, rgba(7,11,24,.72) 55%, rgba(7,11,24,.90) 100%) !important;
  }

  /* Keep content centered and not “floating” */
  .hero .container,
  .hero-content,
  .hero-grid{
    display: block !important;
  }

  .hero-text{
    text-align: left !important;
  }

  .hero h1{
    font-size: 2.15rem !important;
    line-height: 1.08 !important;
    margin: 0 0 10px !important;
    letter-spacing: -0.4px !important;
  }

  .hero p{
    font-size: 1rem !important;
    line-height: 1.45 !important;
    margin: 0 0 14px !important;
    max-width: 38ch !important;
  }

  /* Buttons: always clean spacing, full width */
  .hero-buttons{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 14px !important;
    align-items: stretch !important;
  }

  .hero-buttons a,
  .hero-buttons button{
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
  }

  /* If you have two buttons side-by-side on desktop, kill any leftover margins */
  .hero-buttons .btn-outline,
  .hero-buttons .btn-primary{
    margin: 0 !important;
  }

  /* Stats: keep compact, two columns */
  .stats-row,
  .hero-stats,
  .stats{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-top: 16px !important;
  }

  .stat,
  .stats .stat{
    padding: 12px !important;
  }

  .stat-number,
  .stat .num{
    font-size: 1.55rem !important;
  }

  .stat-label,
  .stat .label{
    font-size: 0.85rem !important;
    margin-top: 4px !important;
  }

  /* Navbar spacing so logo doesn't wrap and look broken */
  .nav-container{
    padding: 10px 14px !important;
  }

  .logo, .brand-text{
    font-size: 1.05rem !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 375px) {
  .hero{
    padding-top: 78px !important;
  }
  .hero h1{
    font-size: 2.0rem !important;
  }
}
