* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #26365a;
  padding: 10px 40px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.top-bar a {
  text-decoration: none;
  color: #e0f2fe;
  margin: 0 15px;
}

.top-bar a:hover {
  color: #38bdf8;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #bbccdd;
  padding: 0 50px;
  height: 110px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.logo img {
  height: 120px;
  object-fit: contain;
}

.logo span {
  font-size: 20px;
  font-weight: 900;
  color: #1f2937;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-header {
  width: 100%;
}

/* TOP BRAND BAR */
.brand-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 12px 30px;
  background: #c7d8e8;
}

.brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-size: 50px;
  font-weight: 900;
  color: #1e3a8a;
  letter-spacing: 2px;
}

.brand-logo {
  height: 100px;
}

.center-bar {
  margin-top: 8px;
  padding: 6px 14px;
  font-size: 13px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  background: #5a7997dd; /* softer dark */
  border-radius: 20px;
  max-width: fit-content;  /* hug the content */
}

.center-bar a {
  color: #aabbccdd;
  text-decoration: none;
  font-weight: 600;
}


/* MENU BAR */
.menu-bar {
  background: #0f172a;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 12px 0;
}

.menu-bar a,
.menu-bar .nav-link {
  color: #e5e7eb;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.menu-bar a:hover,
.menu-bar .nav-link:hover {
  color: #38bdf8;
}

/* MENU */
.nav-center {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 35px;
}

.nav-center a {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  position: relative;
}

.nav-center a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #38bdf8;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-center a:hover::after,
.nav-center a.active::after {
  width: 100%;
}
.nav-item {
  position: relative;
  display: inline-block;
}

.nav-link {
  cursor: pointer;
  padding: 10px 15px;
  color: white;
  font-weight: 600;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0f172a;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #e5e7eb;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #1e293b;
}

.nav-item:hover .dropdown-menu {
  display: block;
}
.nav-link {
  position: relative;
  color: #1f2937; /* same as other links */
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #38bdf8;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}


/* ================= HERO ================= */
.hero {
  height: 75vh;
  background: url("../images/slide1.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.35),
    rgba(15, 23, 42, 0.15)
  );
}

.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero-text h1 {
  font-size: 60px;
  color: #bbccdd;
  font-weight: 900;
  text-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-text p {
  font-size: 22px;
  color: #bae6fd;
  margin-top: 15px;
}
.trust-wrap {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 20px;
  flex-wrap: nowrap;
}


.trust-card {
  width: calc(33.333% - 14px); /* perfect 3 column fit */
  background: #0f172a;
  padding: 15px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(51, 67, 104, 0.15);
  border: 1px solid #264369;
   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.trust-card.large {
  width: calc(33.333% - 16px); /* equal width */
  background: #0f172a;
  padding: 15px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(51, 67, 104, 0.15);
  border: 1px solid #264369;
}

.trust-card h2,
.trust-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
   margin-top: -6px;
}

.trust-card p {
  font-size: 15px;        /* slightly smaller */
  line-height: 1.6;
  color: #e5eaf0;
  margin: 0;
}

.trust-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
   text-align: center;
}

.trust-card li {
  margin-bottom: 8px;
  font-weight: 600;
  color: #dae0ec;
    justify-content: center;
}
.trust-section {
  background: #bbccdd;
  padding: 1px 0;
   margin: 0 
}



/* ================= ABOUT SECTION (NO BOX) ================= */
.content-box {
  max-width: 1300px;
  margin: 3px auto;              /* MORE SPACE AROUND */
  padding: 5px 5px;             /* BIGGER INNER SPACE */

  background: rgba(187, 204, 221, 0.35); /* SOFT TRANSPARENT */
  
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08);  /* VERY SOFT SHADOW */

  border-radius: 28px;            /* SMOOTHER CORNERS */
}


.about-title {
  text-align: center;
  color: #000000;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 35px;
}

.content-box p {
  color: #0b0b0c;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 20px;
}

/* Highlight important words */
.content-box strong {
  color: #000000;
  font-weight: 700;
}

/* CTA stays styled but lighter */
/* .cta-box {
  margin-top: 50px;
  text-align: center;
  padding: 35px;
  background: #b3d5f7;
  border-radius: 14px;
}

.cta-box p {
  color: #e0f2fe;
  font-size: 18px;
} */

.cta-button {
  display: inline-block;
  margin: 10px auto 0; 
  padding: 18px 36px;
  background: #678fa0;
  color: #0f172a;
  font-weight: 800;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-box {
  text-align: center;
}

.cta-button:hover {
  background: #7dd3fc;
}
/* ================= CONTACT FORM ================= */

.contact-section {
  padding: 80px 0px;
}

.contact-container {
  max-width: 800px;
  margin: auto;
  background: rgba(187, 204, 221, 0.35);
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-section h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #1f3c88;
}

.contact-section p.subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.contact-section form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-section form input,
.contact-section form select,
.contact-section form textarea {
  width: 100%;
  padding: 6px;
  border-radius: 2px;
  border: 1px solid #ccc;
  font-size: 13px;
}

.contact-section form textarea {
  grid-column: span 2;
  resize: vertical;
  min-height: 120px;
}

.contact-section .full-width {
  grid-column: span 2;
}

.contact-section button {
  background: #678fa0;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-section button:hover {
  background: #678fa0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section form {
    grid-template-columns: 1fr;
  }

  .contact-section textarea,
  .contact-section .full-width {
    grid-column: span 1;
  }
}
.itinerary-coming-soon {
  padding: 80px 20px;
  background: #f4f6f8;
}

.itinerary-box {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.itinerary-box h1 {
  color: #1f3c88;
  margin-bottom: 20px;
}

.itinerary-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.itinerary-box .cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background: #678fa0;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.itinerary-box .cta-button:hover {
  background: #e680;
}
/* ================= AIRPORT SECTION PREMIUM ================= */

/* Hero */
.airport-hero {
  height: 85vh;
  background: linear-gradient(rgba(15,23,42,0.65), rgba(15,23,42,0.65)),
              url("https://images.unsplash.com/photo-1605540436563-5bca919ae766") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.airport-hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.airport-hero p {
  font-size: 20px;
  color: #dbeafe;
}

/* Card */
.airport-card {
  max-width: 650px;
  margin: -70px auto 80px auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  text-align: center;
  position: relative;
  z-index: 2;
}

.airport-card h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #0f172a;
}

.airport-card p {
  font-size: 17px;
  margin-bottom: 30px;
  color: #475569;
}

/* Buttons */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.call-btn,
.wa-btn {
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 170px;
}

/* Call Button */
.call-btn {
  background: linear-gradient(45deg, #2563eb, #38bdf8);
  color: #ffffff;
}

.call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(37,99,235,0.35);
}

/* WhatsApp Button */
.wa-btn {
  background: linear-gradient(45deg, #22c55e, #16a34a);
  color: #ffffff;
}

.wa-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(34,197,94,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .airport-hero {
    height: 70vh;
  }

  .airport-hero h1 {
    font-size: 30px;
  }

  .airport-card {
    margin: -40px 20px 60px 20px;
    padding: 30px;
  }
}

/* footer */
.main-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 50px 20px 10px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 10px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  margin-bottom: 12px;
  color: #f9fdff;
}

.footer-col a {
  display: block;
  color: #cbd5f5;
  text-decoration: none;
  margin: 6px 0;
}

.footer-col a:hover {
  color: #38bdf8;
}

.footer-logo {
  width: 200px;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #94a3b8;
}

/* ================= MOBILE FIX (NO TOP BAR, SIMPLE NAV) ================= */

@media (max-width: 768px) {

  /* Hide top bar on mobile */
  .top-bar {
    display: none;
  }

  /* Navbar layout */
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 15px;
    gap: 12px;
    text-align: center;
  }

  /* Logo center */
  .logo {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .logo img {
    height: 70px;
  }

  .logo span {
    font-size: 18px;
    font-weight: 700;
  }

  /* Navigation links */
  .nav-center {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .nav-center a {
    display: block;
    width: 100%;
    padding: 12px;
    background: #f4f6f8;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
  }

  .nav-center a.active {
    background: #678fa0;
    color: #fff;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .logo img {
    height: 60px;
  }

  .logo span {
    font-size: 16px;
  }

  .nav-center a {
    font-size: 15px;
  }
}
/* ================= MOBILE HAMBURGER MENU ================= */

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* Mobile menu hidden by default */
.mobile-nav {
  display: none;
}

/* ---------- MOBILE VIEW ---------- */
@media (max-width: 768px) {

  /* Hide top bar */
  .top-bar {
    display: none;
  }

  /* Navbar */
  .navbar {
    justify-content: space-between;
    padding: 15px 20px;
  }

  /* Hide desktop nav */
  .nav-center {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-direction: column;
    margin-right: auto;   /* pushes it to the right */
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: #000;
    
    border-radius: 3px;
  }

  /* Mobile dropdown */
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 15px;
    border-bottom: 1px solid #ddd;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    padding: 12px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    border-radius: 8px;
    background: #f4f6f8;
    text-align: center;
  }
}
/* ===== FORCE AIRPORT DESIGN ===== */

section.airport-hero {
  height: 32vh !important;
  background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.7)),
               url("../images/airport.jpeg") center/cover no-repeat !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

section.airport-hero h1 {
  font-size: 50px !important;
  color: #fff !important;
  font-weight: 900 !important;
}

section.airport-card {
  max-width: 650px !important;
  margin: -70px auto 80px auto !important;
  background: #bbccdd !important;
  padding: 40px !important;
  border-radius: 20px !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
  text-align: center !important;
}