/* ===================================================
   GALAXY CARS & AIRPORT TRANSFERS — GLOBAL STYLESHEET
   =================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold-light: #e8c96a;
  --gold-dark: #a07a28;
  --navy: #0d1b3e;
  --navy-mid: #1a2a52;
  --dark: #080c14;
  --dark-card: #0f1624;
  --dark-mid: #141e2e;
  --dark-border: rgba(255,255,255,0.08);
  --text: #e8eaf0;
  --text-muted: #8a93a8;
  --white: #ffffff;
  --green: #22c55e;
  --whatsapp: #25D366;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.2);
  --transition: 0.25s ease;
}

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

body {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--gold);
  color: #0a0a0a;
  text-align: center;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 200;
}
.announcement-bar span { margin: 0 8px; }
.announcement-bar .divider { opacity: 0.4; }
.announcement-bar a { color: #0a0a0a; font-weight: 700; }

/* ===== NAVBAR ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom-color: rgba(201,168,76,0.35);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.logo-galaxy { font-size: 1.5rem; font-weight: 800; color: var(--gold); letter-spacing: 2px; }
.logo-sub { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 1px; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links li a {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links .nav-cta a {
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  height: 36px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
}
.nav-links .nav-cta a:hover { background: var(--gold-light); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-phone:hover { color: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid var(--gold);
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  font-size: 0.95rem;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  transition: var(--transition);
  font-size: 0.9rem;
}
.btn-outline:hover { background: var(--gold); color: #0a0a0a; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--whatsapp);
  transition: var(--transition);
  font-size: 0.95rem;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

.btn-large { padding: 16px 36px; font-size: 1rem; }

.btn-primary-small {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary-small:hover { background: var(--gold-light); }

.btn-outline-small {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-outline-small:hover { background: var(--gold); color: #0a0a0a; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.gold { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1b3e 0%, #080c14 50%, #0d1b3e 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(201,168,76,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(13,27,62,0.8) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.5;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 28px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 16px 28px;
  align-items: center;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-bar-icon { font-size: 1.6rem; }
.trust-bar-item div { display: flex; flex-direction: column; }
.trust-bar-item strong { color: var(--white); font-size: 0.9rem; font-weight: 700; }
.trust-bar-item span { color: var(--text-muted); font-size: 0.78rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--dark-mid); }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.step-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  max-width: 320px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; margin-top: 8px; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.step-arrow {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  padding: 0 12px;
  flex-shrink: 0;
}
.how-cta { text-align: center; margin-top: 48px; }

/* ===== WHY US ===== */
.why-us { background: var(--dark); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.why-us-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 20px; }
.why-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.75;
}
.why-us-content > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.75; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.why-feature div { display: flex; flex-direction: column; gap: 3px; }
.why-feature strong { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.why-feature span { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; }

.why-us-stats { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 90px; }
.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
}
.stat-card.gold-border { border-color: rgba(201,168,76,0.4); }
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { font-size: 1.8rem; }
.stat-label { color: var(--text-muted); font-size: 0.85rem; }
.reviews-link { text-align: center; }

/* ===== FLEET PREVIEW ===== */
.fleet-preview { background: var(--dark-mid); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.fleet-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); box-shadow: var(--shadow); }
.fleet-card.featured { border-color: rgba(201,168,76,0.4); }
.fleet-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}
.fleet-img {
  height: 180px;
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
/* Vehicle image placeholders — replace with actual photos */
.saloon-img::after { content: '🚗'; }
.exec-img::after { content: '🚙'; }
.estate-img::after { content: '🚘'; }
.mpv-img::after { content: '🚐'; }
.minibus-img::after { content: '🚌'; }
.vito-img::after { content: '⭐'; font-size: 3rem; }

.fleet-info { padding: 22px; }
.fleet-info h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.fleet-info p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 14px; line-height: 1.55; }
.fleet-capacity {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.fleet-capacity span { font-size: 0.8rem; color: var(--text-muted); }
.fleet-price {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.fleet-price strong { color: var(--gold); font-size: 1.1rem; }
.fleet-cta { text-align: center; margin-top: 44px; }

/* ===== AIRPORTS SECTION ===== */
.airports-section { background: var(--dark); }
.airports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.airport-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  display: block;
}
.airport-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); box-shadow: var(--shadow); }
.airport-icon { font-size: 1.8rem; margin-bottom: 12px; }
.airport-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.airport-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.55; margin-bottom: 14px; }
.airport-link { color: var(--gold); font-size: 0.85rem; font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark-mid); }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.stars-large { font-size: 1.3rem; }
.rating-summary strong { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card.featured-review { border-color: rgba(201,168,76,0.35); }
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }
.testimonial-stars { font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-card p::before { content: '"'; color: var(--gold); font-size: 1.2rem; font-style: normal; }
.testimonial-card p::after { content: '"'; color: var(--gold); font-size: 1.2rem; font-style: normal; }
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author strong { color: var(--white); font-size: 0.88rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.78rem; }
.reviews-cta { text-align: center; margin-top: 44px; }

/* ===== PEACE OF MIND STRIP ===== */
.peace-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 80px 0;
  text-align: center;
}
.peace-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.peace-strip > .container > p {
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1rem;
}
.peace-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.peace-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
}
.peace-icon { font-size: 1.2rem; display: block; margin-bottom: 10px; }
.peace-item strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.peace-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-section { background: var(--dark); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(201,168,76,0.25); }
.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.faq-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: 90px 0;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 12px;
}
.final-cta p { color: rgba(0,0,0,0.65); font-size: 1.05rem; margin-bottom: 36px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-primary { background: #0a0a0a; color: var(--gold); border-color: #0a0a0a; }
.final-cta .btn-primary:hover { background: var(--navy); border-color: var(--navy); }
.final-cta .btn-secondary { border-color: rgba(0,0,0,0.4); color: #0a0a0a; }
.final-cta .btn-secondary:hover { background: rgba(0,0,0,0.1); border-color: #0a0a0a; }

/* ===== FOOTER ===== */
footer {
  background: #050810;
  border-top: 1px solid var(--dark-border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 14px;
  line-height: 1.3;
}
.footer-logo span { color: var(--white); font-size: 0.75rem; font-weight: 400; letter-spacing: 0.5px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer-contact a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: #0a0a0a; }
.footer-links h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 18px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { color: var(--text-muted); font-size: 0.86rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  padding: 80px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(201,168,76,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 28px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* ===== BOOKING PAGE ===== */
.booking-section { padding: 60px 0; }
.booking-intro {
  text-align: center;
  margin-bottom: 40px;
}
.booking-intro h2 { color: var(--white); font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }
.booking-intro p { color: var(--text-muted); font-size: 0.95rem; }
.booking-widget-wrap {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.booking-widget-wrap iframe {
  width: 100%;
  min-height: 680px;
  border: none;
  display: block;
}
.booking-reassurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.reassurance-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
}
.reassurance-item .ri-icon { font-size: 1.8rem; margin-bottom: 10px; }
.reassurance-item strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 6px; }
.reassurance-item p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.5; }

/* ===== MID-LAPTOP (960px) ===== */
@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .peace-items { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .airports-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== TABLET / SMALL LAPTOP (1024px) ===== */
@media (max-width: 1024px) {
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-stats { flex-direction: row; flex-wrap: wrap; position: static; }
  .stat-card { flex: 1; min-width: 140px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .peace-items { grid-template-columns: repeat(2, 1fr); }
  .airports-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr !important; }
  .about-features { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .announcement-bar .divider { display: none; }
  .announcement-bar span:not(:first-child) { display: none; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-card);
    flex-direction: column;
    justify-content: flex-start;
    padding: 90px 24px 40px;
    gap: 6px;
    border-left: 1px solid var(--dark-border);
    transition: right 0.3s ease;
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links li { display: block; width: 100%; }
  .nav-links li a { display: block; height: auto; padding: 12px 16px; font-size: 1rem; }
  .nav-links .nav-cta a { display: block; text-align: center; margin-top: 12px; height: auto; padding: 12px 16px; }
  .hamburger { display: flex; z-index: 101; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-phone { display: none; }

  .hero { min-height: 70vh; padding: 60px 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }

  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-item { min-width: 0; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .step-card { max-width: 100%; width: 100%; }

  .fleet-grid { grid-template-columns: 1fr; }
  .airports-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .peace-items { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .booking-reassurance { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .about-features { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .airports-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr; }
  .trust-bar-item { min-width: 0; }
  .booking-reassurance { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero { padding: 50px 16px; }
  .page-hero { padding: 60px 0 50px; }
  .final-cta { padding: 60px 0; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-actions a { width: 100%; justify-content: center; text-align: center; }
  .hero-actions a { width: 100%; justify-content: center; }
  .section-header { margin-bottom: 36px; }
  .footer-grid { padding-bottom: 12px; }
  .trust-bar { padding: 20px 0; }
}
