@charset "utf-8";
/* CSS Document */
:root {
  --gold:        #b8892a;
  --gold-light:  #d4a84b;
  --gold-pale:   #f5ead6;
  --gold-bg:     #fdf6ec;
  --navy:        #1a2540;
  --navy2:       #253050;
  --ink:         #1e2226;
  --body-bg:     #fafaf8;
  --surface:     #ffffff;
  --surface2:    #f4f2ee;
  --border:      #e5e0d6;
  --text:        #1e2226;
  --text-muted:  #6b6b6b;
  --text-faint:  #a8a39a;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;
  --transition:  0.4s cubic-bezier(.4,0,.2,1);
  --shadow-sm:   0 2px 12px rgba(30,34,38,0.08);
  --shadow-md:   0 8px 32px rgba(30,34,38,0.12);
  --shadow-lg:   0 20px 60px rgba(30,34,38,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--body-bg); color: var(--text); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── NAV ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
/* STICKY / SCROLLED — dark background, white text */
#navbar.scrolled {
  background: rgba(26,37,64,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 40px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: background var(--transition);
}
/* Logo text — white on hero, stays white when scrolled (dark bg) */
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.1;
  font-weight: 600;
  transition: color var(--transition);
}
.nav-logo-text span { color: var(--gold-light); }
/* When NOT scrolled over a light section the logo looks fine on the hero dark overlay.
   We only need to adjust for scrolled state — handled above. */

/* Nav links — white always (hero dark overlay + scrolled dark bg both work) */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: width 0.3s;
  border-radius: 1px;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile phone item — hidden on desktop */
.mobile-phone { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── HERO SLIDER ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
/* Remove the old .slide-1 through .slide-4 background-image rules entirely */

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  overflow: hidden;          /* added — keeps img clipped to slide bounds */
}
.slide.active { opacity: 1; }

/* The inline image fills the slide like a background cover */
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

/* Dark overlay still needed — sits above the img, below the content */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,37,64,0.88) 0%, rgba(26,37,64,0.5) 55%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,37,64,0.88) 0%, rgba(26,37,64,0.5) 55%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8% 80px;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 7px 18px;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  border-radius: 40px;
  animation: fadeUp 0.8s 0.2s both;
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--gold-light); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 22px;
  color: #fff;
  animation: fadeUp 0.8s 0.4s both;
}
.hero-title .accent { color: var(--gold-light); display: block; }
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 38px;
  animation: fadeUp 0.8s 0.6s both;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.8s both;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border-radius: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,137,42,0.4); }
.btn-outline {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border-radius: 8px;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.25); border-color: #fff; }
.hero-phones {
  position: absolute;
  bottom: 40px; left: 8%;
  z-index: 2;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 1s both;
}
.phone-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.3s;
}
.phone-chip i { color: var(--gold-light); }
.phone-chip:hover { color: #fff; }
.slide-indicators {
  position: absolute;
  bottom: 44px; right: 8%;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.indicator {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.indicator.active { background: var(--gold-light); width: 48px; }

/* ─── AIRPORT STRIP ─── */
#airports {
  background: var(--navy);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;

}
.airport-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.airport-badge i { color: var(--gold-light); font-size: 0.9rem; }
.airport-divider { color: rgba(255,255,255,0.2); }

/* ─── SHARED ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 1px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--navy);
}
.section-body { color: var(--text-muted); line-height: 1.8; font-weight: 400; font-size: 1.2rem; max-width: 560px; }

.section-intro { color: var(--navy); line-height: 1.3; font-weight: 500; font-size: 1.5rem; max-width: 1280px; padding-bottom: 50px;}


/* ─── SERVICES ─── */
#services { padding: 100px 8%; background: var(--body-bg); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }
.services-header .section-label::after { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 1px; }
.services-header .section-body { margin: 0 auto; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 38px 30px;
  border-radius: 12px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.service-card:hover::after { height: 100%; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-bg);
  border: 1px solid rgba(184,137,42,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-img img { width: 100%;  object-fit: cover; transition: transform 0.6s ease; display: block; }
.service-img:hover img { transform: scale(1.04); }
.service-card:hover .service-icon { background: var(--gold); color: #fff; border-color: var(--gold); }
.service-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; color: var(--navy); font-weight: 700; text-transform: uppercase; }
.service-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ─── ABOUT / PARALLAX ─── */
#cta { padding: 0; overflow: hidden; }
.ctaparallax-bg {
  background-image: url('images/slide1.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 8%;
}
.ctaparallax-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.97) 20%, rgba(82, 82, 80, 0.6) 60%); 
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-text .section-body { margin-bottom: 28px; }


.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--gold-pale);
}
/* ─── ABOUT / PARALLAX ─── */
#about { padding: 0; overflow: hidden; }
.parallax-bg {
  background-image: url('images/slide1.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 8%;
}
.parallax-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250,250,248,0.97) 20%, rgba(250,250,248,0.6) 60%);
}
.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-text .section-body { margin-bottom: 28px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.stat {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 0.74rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-faint); font-weight: 500; }
.about-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.2rem; color: var(--text-muted); line-height: 1.6; }
.about-features li i { color: var(--gold); font-size: 1.1rem; margin-top: 4px; flex-shrink: 0; }
.about-img-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-img { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.about-img:first-child { grid-column: span 2; aspect-ratio: 16/7; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.about-img:hover img { transform: scale(1.04); }
/* .about-img:last-child { grid-column: span 2; aspect-ratio: 16/7; } */

/* ─── FLEET ─── */
#fleet { padding: 100px 8%; background: var(--surface2); }
.fleet-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 20px; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fleet-item:first-child { grid-column: span 2; }
.fleet-item { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.fleet-item img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.fleet-item:hover img { transform: scale(1.05); }
.fleet-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,37,64,0.9) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 22px;
}
.fleet-item:hover .fleet-overlay { opacity: 1; }
.fleet-overlay h4 { font-family: var(--font-display); font-size: 1.1rem; color: #fff; }
.fleet-overlay span { display: block; font-size: 0.78rem; color: var(--gold-light); margin-top: 3px; }

/* ─── PARALLAX CTA ─── */
#parallax2 {
  background-image: url('https://images.unsplash.com/photo-1502877338535-766e1452684a?w=1920&q=80');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 110px 8%;
  position: relative;
}
#parallax2::before { content: ''; position: absolute; inset: 0; background: rgba(26,37,64,0.85); }
.cta-block { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-block .section-label { justify-content: center; color: var(--gold-light); }
.cta-block .section-label::before { display: none; }
.cta-block .section-label::after { content: ''; width: 28px; height: 2px; background: var(--gold-light); border-radius: 1px; }
.cta-block .section-title { color: #fff; }
.cta-block p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1rem; line-height: 1.8; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-light {
  background: #fff; color: var(--navy);
  padding: 15px 34px; font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition); border-radius: 8px;
}
.btn-light:hover { background: var(--gold-pale); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.btn-outline-light {
  background: transparent; color: #fff;
  padding: 14px 34px; font-family: var(--font-body); font-weight: 500; font-size: 0.88rem;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.5); cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition); border-radius: 8px;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ─── COVERAGE ─── */
#coverage { padding: 100px 8%; background: var(--body-bg); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; }
.coverage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 28px; }
.coverage-tag {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--surface); border-radius: 8px;
  font-size: 1rem; color: var(--text-muted); border: 1px solid var(--border);
  transition: var(--transition);
}
.coverage-tag:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }
.coverage-tag i { color: var(--gold); font-size: 0.5rem; }
.pricing-cards { display: flex; flex-direction: column; gap: 14px; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition); gap: 16px; box-shadow: var(--shadow-sm);
}
.price-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--gold); background: var(--gold-bg); }
.price-route { display: flex; align-items: center; gap: 14px; }
.price-route i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.price-route h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.price-route p { font-size: 0.78rem; color: var(--text-faint); }
.price-tag { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); font-weight: 700; white-space: nowrap; }

/* ─── GALLERY ─── */
#gallery { padding: 100px 8%; background: var(--surface2); }
.gallery-header { margin-bottom: 44px; }
.gallery-masonry { columns: 4; column-gap: 12px; }
.gallery-item { break-inside: avoid; margin-bottom: 12px; border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .overlay { position: absolute; inset: 0; background: rgba(26,37,64,0.4); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .overlay { opacity: 1; }
.overlay i { color: white; font-size: 1.6rem; }

/* ─── TESTIMONIALS ─── */
#testimonials { padding: 100px 8%; background: var(--body-bg); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-header .section-label::after { content:''; width:28px; height:2px; background:var(--gold); border-radius:1px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 34px; position: relative; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before { content: '\201C'; font-family: var(--font-display); font-size: 5rem; color: var(--gold-pale); position: absolute; top: 8px; left: 22px; line-height: 1; }
.stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--gold-light); font-size: 1rem; }
.author-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.author-loc { font-size: 0.73rem; color: var(--text-faint); margin-top: 2px; }

/* ─── BOOKING ─── */
#booking { padding: 100px 8%; background: var(--navy); position: relative; overflow: hidden; }
#booking::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(184,137,42,0.12), transparent 70%); pointer-events: none; }
.booking-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; }
.booking-info .section-label { color: var(--gold-light); }
.booking-info .section-label::before { background: var(--gold-light); }
.booking-info .section-title { color: #fff; }
.booking-info .section-body { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-item { display: flex; align-items: center; gap: 14px; text-decoration: none; color: rgba(255,255,255,0.85); font-size: 0.93rem; transition: color 0.3s; }
.contact-item:hover { color: var(--gold-light); }
.contact-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold-light); flex-shrink: 0; font-size: 0.95rem; }
.wa-note { display: flex; align-items: center; gap: 10px; background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3); color: #6de89a; padding: 13px 16px; border-radius: 8px; font-size: 0.82rem; margin-top: 24px; font-weight: 500; }
.booking-form { background: var(--surface); border-radius: 16px; padding: 44px; box-shadow: var(--shadow-lg); }
.booking-form h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 26px; color: var(--navy); font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label { font-size: 0.72rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2); border: 1.5px solid var(--border); color: var(--text);
  padding: 12px 14px; font-family: var(--font-body); font-size: 0.9rem;
  border-radius: 8px; transition: border-color 0.3s, box-shadow 0.3s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,137,42,0.12); background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 88px; }
.wa-submit { width: 100%; background: #25d366; color: white; padding: 15px; border: none; border-radius: 8px; font-family: var(--font-body); font-size: 0.93rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: var(--transition); margin-top: 4px; }
.wa-submit:hover { background: #1fb359; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.wa-submit i { font-size: 1.15rem; }

/* ─── FOOTER ─── */
footer { background: var(--navy2); padding: 20px 8% 28px; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-brand .nav-logo-text { color: #fff; }
.footer-brand .nav-logo-icon { background: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.75; margin-top: 14px; max-width: 290px; }
.footer-socials { display: flex; gap: 9px; margin-top: 22px; }
.social-link { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.social-link:hover { background: var(--gold); color: #fff; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 18px; color: var(--gold-light); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.45); font-size: 0.84rem; transition: color 0.3s; display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-links a::before { content: '›'; font-size: 0.85rem; color: var(--gold); opacity: 0.7; }
.footer-bottom { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 1rem; color: rgba(187, 187, 187, 0.959); }
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ─── FLOATING BUTTONS ─── */
.float-call { position: fixed; bottom: 90px; right: 22px; z-index: 900; width: 52px; height: 52px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; text-decoration: none; box-shadow: 0 4px 20px rgba(26,37,64,0.35); transition: var(--transition); animation: pulse 2.5s infinite; }
.float-call:hover { background: var(--gold); transform: scale(1.1); }
.float-wa { position: fixed; bottom: 22px; right: 22px; z-index: 900; width: 52px; height: 52px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.float-wa:hover { transform: scale(1.1); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100% { box-shadow:0 4px 20px rgba(26,37,64,0.35); } 50% { box-shadow:0 4px 30px rgba(26,37,64,0.6); } }
.reveal { opacity:0; transform:translateY(36px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
  .about-inner { grid-template-columns:1fr; gap:40px; }
  .about-img-col { display:none; }
  .coverage-grid { grid-template-columns:1fr; gap:40px; }
  .booking-inner { grid-template-columns:1fr; gap:40px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .fleet-grid { grid-template-columns:1fr 1fr; }
  .fleet-item:first-child { grid-column:span 2; }
  .gallery-masonry { columns:3; }
}

@media (max-width:768px) {
  #navbar { padding:15px 22px; }
  #navbar.scrolled { padding:10px 22px; }
  .hamburger { display:flex; }

  /* Mobile dropdown panel */
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(26,37,64,0.98);
    backdrop-filter: blur(16px);
    padding: 32px 24px 40px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,0.9); }
  .nav-links a::after { display: none; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links .nav-cta { font-size: 1rem !important; font-family: var(--font-body) !important; padding: 12px 32px !important; }
  .mobile-phone { display: list-item !important; }
  .mobile-phone a { color: var(--gold-light) !important; font-size: 1rem !important; font-family: var(--font-body) !important; font-weight: 600 !important; letter-spacing: 0 !important; text-transform: none !important; }

  .hero-content { padding:0 6% 80px; }
  .slide-indicators { right:6%; }
  #airports { gap:14px; padding:14px 22px; }
  .airport-divider { display:none; }
  .parallax-bg { background-attachment:scroll; padding:80px 6%; }
  #parallax2 { background-attachment:scroll; }
  #services,#fleet,#gallery,#coverage,#testimonials { padding:70px 6%; }
  #booking { padding:70px 6%; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .gallery-masonry { columns:2; }
  .fleet-grid { grid-template-columns:1fr; }
  .fleet-item:first-child { grid-column:span 1; }
  .booking-form { padding:26px 18px; }
  .services-grid { grid-template-columns:1fr; }
}

@media (max-width:480px) {
  .hero-btns { flex-direction:column; }
  .btn-primary,.btn-outline,.btn-light,.btn-outline-light { justify-content:center; }
  .gallery-masonry { columns:1; }
  .about-stats { grid-template-columns:1fr 1fr; }
  .coverage-list { grid-template-columns:1fr; }
  .cta-btns { flex-direction:column; align-items:center; }
  .slide-indicators { display:none; }
  .hero-phones { gap:12px; }
}
