/* ═══════════════════════════════════════════════════════════════════
   13 CAPEL SOUND TAXI — ULTRA-PREMIUM MINIMAL LIGHT DESIGN
   Slate & Amber Luxury Palette | Full-Width Header & Full-Bleed Hero
   100% Light Theme Throughout — Spacious Breathing Room & Section Spacing
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Alabaster & Slate Light Palette */
  --bg-page: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-slate: #F1F5F9;
  --bg-subtle: #E2E8F0;
  
  /* Text */
  --text-dark: #0F172A;
  --text-heading: #1E293B;
  --text-body: #475569;
  --text-muted: #64748B;

  /* Luxury Accents (Amber/Gold & Royal Blue) */
  --amber: #D97706;
  --amber-hover: #B45309;
  --amber-light: #F59E0B;
  --amber-soft: rgba(217, 119, 6, 0.08);
  --amber-glow: rgba(217, 119, 6, 0.2);

  --royal: #1D4ED8;
  --royal-hover: #1E40AF;
  --royal-soft: rgba(29, 78, 216, 0.08);
  --royal-glow: rgba(29, 78, 216, 0.2);

  --emerald: #059669;
  --emerald-hover: #047857;
  --emerald-soft: rgba(5, 150, 105, 0.08);
  --emerald-glow: rgba(5, 150, 105, 0.2);

  /* Layout */
  --max-w: 1240px;
  --header-h: 76px;
  --bnav-h: 70px;

  /* Increased Section Spacing for Clean Breathing Room */
  --section-py: clamp(84px, 10vw, 130px);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.35s;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 100px;
}

/* ——— Reset ——— */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--royal); text-decoration: none; transition: all var(--dur) var(--ease); }
a:hover { color: var(--royal-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Full Width Container */
.container-full {
  width: 100%;
  padding: 0 40px;
}

/* ——— Typography ——— */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 800;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-soft);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 56px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn--amber {
  background: var(--amber);
  color: #FFFFFF;
  box-shadow: 0 4px 16px var(--amber-glow);
}
.btn--amber:hover {
  background: var(--amber-hover);
  color: #FFFFFF;
  box-shadow: 0 8px 24px var(--amber-glow);
  transform: translateY(-2px);
}

.btn--royal {
  background: var(--royal);
  color: #FFFFFF;
  box-shadow: 0 4px 16px var(--royal-glow);
}
.btn--royal:hover {
  background: var(--royal-hover);
  color: #FFFFFF;
  box-shadow: 0 8px 24px var(--royal-glow);
  transform: translateY(-2px);
}

.btn--wa {
  background: var(--emerald);
  color: #FFFFFF;
  box-shadow: 0 4px 16px var(--emerald-glow);
}
.btn--wa:hover {
  background: var(--emerald-hover);
  color: #FFFFFF;
  box-shadow: 0 8px 24px var(--emerald-glow);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   FULL-WIDTH HEADER — No shape box on logo
   ═══════════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all var(--dur) var(--ease);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-subtle);
  box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header__logo-icon {
  width: 44px;
  height: 32px;
  object-fit: contain;
}
.header__logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.4px;
}
.header__logo-text span { color: var(--amber); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.header__nav a:hover { color: var(--amber); }

.header__btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: all var(--dur) var(--ease);
}
.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); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(4px);
  z-index: 998;
}
.mobile-overlay.active { display: block; }

.mobile-menu {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--bg-white);
  z-index: 999;
  padding: 90px 28px 40px;
  display: flex; flex-direction: column; gap: 6px;
  transition: right 0.4s var(--ease);
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--r-md);
  text-decoration: none;
}
.mobile-menu a:hover { background: var(--amber-soft); color: var(--amber); }

/* ═══════════════════════════════════════════════════════════════════
   FULL-BLEED HERO SECTION — Landscape Image Background + Glass Card
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 72px) 0 100px;
  background-image: 
    linear-gradient(90deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.85) 50%, rgba(248, 250, 252, 0.4) 100%),
    url('assets/hero.webp');
  background-size: cover;
  background-position: center right;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-subtle);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 48px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-soft);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 20px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
  color: var(--text-dark);
}
.hero h1 .accent-amber { color: var(--amber); }

.hero__tagline {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-subtle);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 600;
}
.hero__trust-icon { width: 18px; height: 18px; color: var(--amber); }

/* ═══════════════════════════════════════════════════════════════════
   SERVICES SECTION (What We Offer)
   ═══════════════════════════════════════════════════════════════════ */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--bg-subtle);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  padding: 36px 30px;
  background: var(--bg-page);
  border-radius: var(--r-lg);
  border: 1px solid var(--bg-subtle);
  transition: all var(--dur) var(--ease);
}
.svc-card:hover {
  background: var(--bg-white);
  border-color: var(--amber);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--amber-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all var(--dur) var(--ease);
}
.svc-card__icon svg { width: 24px; height: 24px; color: var(--amber); }
.svc-card:hover .svc-card__icon { background: var(--amber); }
.svc-card:hover .svc-card__icon svg { color: #FFF; }

.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.svc-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════
   FLEET SHOWCASE SECTION (Our Vehicles)
   ═══════════════════════════════════════════════════════════════════ */
.fleet {
  padding: var(--section-py) 0;
  background: var(--bg-page);
  border-bottom: 1px solid var(--bg-subtle);
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--bg-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease);
}
.fleet-card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  border-color: var(--amber);
  transform: translateY(-5px);
}

.fleet-card__img-wrap {
  width: 100%;
  height: 220px;
  background: #F1F5F9;
  overflow: hidden;
}
.fleet-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.fleet-card:hover .fleet-card__img-wrap img {
  transform: scale(1.05);
}

.fleet-card__body {
  padding: 28px;
  display: flex; flex-direction: column; flex: 1;
}

.fleet-card__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}

.fleet-card__title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-dark);
}

.fleet-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--amber);
  background: var(--amber-soft);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.fleet-card__specs {
  display: flex; gap: 16px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--bg-page);
  border-radius: var(--r-md);
}

.fleet-spec {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
}
.fleet-spec svg { width: 16px; height: 16px; color: var(--amber); }

.fleet-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.fleet-card__actions {
  display: flex; gap: 10px;
}
.fleet-card__actions .btn {
  flex: 1; padding: 11px 16px; font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════════════ */
.stats {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #1E293B 100%);
  color: #FFF;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat__val {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 4px;
}
.stat__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════════════════════════
   FARES TABLE SECTION
   ═══════════════════════════════════════════════════════════════════ */
.fares {
  padding: var(--section-py) 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--bg-subtle);
}

.fares__wrap { max-width: 820px; margin: 0 auto; }

.fares__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  border: 1px solid var(--bg-subtle);
}
.fares__table thead { background: var(--amber-soft); }
.fares__table th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
}
.fares__table td {
  padding: 18px 24px;
  font-size: 0.95rem;
  background: var(--bg-white);
  border-bottom: 1px solid var(--bg-subtle);
}
.fares__table tr:hover td { background: var(--amber-soft); }
.fares__table tr:last-child td { border-bottom: none; }
.fare-price { color: var(--amber); font-weight: 800; }

.fares__note {
  text-align: center; margin-top: 18px;
  font-size: 0.84rem; color: var(--text-muted); font-style: italic;
}
.fares__cta { text-align: center; margin-top: 36px; }

/* ═══════════════════════════════════════════════════════════════════
   AREAS SECTION (Coverage)
   ═══════════════════════════════════════════════════════════════════ */
.areas {
  padding: var(--section-py) 0;
  background: var(--bg-page);
  border-bottom: 1px solid var(--bg-subtle);
}

.areas__region { margin-bottom: 40px; }

.areas__region-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.areas__region-title::before {
  content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--amber);
}

.areas__pills { display: flex; flex-wrap: wrap; gap: 10px; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  background: var(--bg-white);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--dur) var(--ease);
}
.pill:hover {
  background: var(--amber-soft);
  border-color: var(--amber);
  color: var(--amber);
}
.pill__code { font-size: 0.72rem; color: var(--text-muted); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════
   REVIEWS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.reviews {
  padding: var(--section-py) 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--bg-subtle);
  overflow: hidden;
}

.reviews__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-page);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--r-pill);
  padding: 10px 24px;
  margin-bottom: 56px;
}
.reviews__badge svg { width: 20px; height: 20px; }
.reviews__badge .g-rating { font-weight: 800; font-size: 1rem; color: var(--text-dark); }
.reviews__badge .g-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; }
.reviews__badge .g-count { font-size: 0.82rem; color: var(--text-muted); }

.marquee-wrap { display: flex; flex-direction: column; gap: 24px; }
.marquee { display: flex; width: max-content; gap: 24px; }
.marquee--r { animation: mRight 55s linear infinite; }
.marquee--l { animation: mLeft 60s linear infinite; }
@keyframes mRight { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes mLeft { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.marquee-wrap:hover .marquee { animation-play-state: paused; }

.rev-card {
  flex-shrink: 0; width: 350px; padding: 28px;
  background: var(--bg-page);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--r-lg);
}
.rev-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rev-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--amber); color: #FFF;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem;
}
.rev-card__name { font-weight: 700; font-size: 0.94rem; color: var(--text-dark); }
.rev-card__time { font-size: 0.74rem; color: var(--text-muted); }
.rev-card__stars { color: #F59E0B; font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 12px; }
.rev-card__text {
  font-size: 0.9rem; color: var(--text-body); line-height: 1.65; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.rev-card__bottom { display: flex; align-items: center; justify-content: space-between; }
.rev-card__tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  color: var(--amber); background: var(--amber-soft); padding: 4px 10px; border-radius: var(--r-pill);
}
.rev-card__verified { font-size: 0.7rem; color: var(--emerald); display: flex; align-items: center; gap: 4px; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════════ */
.faqs {
  padding: var(--section-py) 0;
  background: var(--bg-page);
  border-bottom: 1px solid var(--bg-subtle);
}

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.faq-item.active { border-color: var(--amber); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; font-size: 1rem; font-weight: 700; color: var(--text-dark);
  text-align: left; gap: 16px; background: none; border: none; font-family: inherit; cursor: pointer;
}
.faq-q:hover { color: var(--amber); }
.faq-chevron { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a__inner { padding: 0 26px 22px; font-size: 0.94rem; color: var(--text-body); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════════════════════════════════ */
.cta-strip {
  padding: 84px 0;
  background: linear-gradient(135deg, #FEF3C7, #FFFBEB, #E0F2FE);
  text-align: center;
  border-top: 1px solid var(--bg-subtle);
}
.cta-strip h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.cta-strip p { font-size: 1.08rem; color: var(--text-body); margin-bottom: 32px; }
.cta-strip .btn-group { justify-content: center; margin-bottom: 24px; }
.cta-strip__addr { font-size: 0.88rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════════
   100% LIGHT THEME FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  padding: 72px 0 36px;
  background: var(--bg-white);
  color: var(--text-body);
  border-top: 1px solid var(--bg-subtle);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.footer__brand span { color: var(--amber); }

.footer__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer__links a:hover { color: var(--amber); }

.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}
.footer__contact-row svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  border-top: 1px solid var(--bg-subtle);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE BOTTOM NAV & FLOATING WHATSAPP
   ═══════════════════════════════════════════════════════════════════ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--bnav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--bg-subtle);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  padding-bottom: env(safe-area-inset-bottom);
}

.bnav__inner {
  display: flex; align-items: center; justify-content: space-around;
  height: 100%; padding: 0 8px;
}

.bnav__item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; color: var(--text-muted);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3px;
  padding: 6px 0; flex: 1;
}
.bnav__item:hover, .bnav__item:active { color: var(--amber); }
.bnav__item svg { width: 20px; height: 20px; }

.bnav__call {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--amber);
  color: #FFF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: -22px;
  box-shadow: 0 0 0 4px #FFF, 0 4px 20px var(--amber-glow);
  text-decoration: none;
}
.bnav__call svg { width: 24px; height: 24px; }

.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--emerald);
  color: #FFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px var(--emerald-glow);
  transition: transform var(--dur) var(--ease);
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); color: #FFF; }
.float-wa svg { width: 28px; height: 28px; }

/* ═══════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .header__inner { padding: 0 24px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  body { padding-bottom: calc(var(--bnav-h) + env(safe-area-inset-bottom, 0px)); }

  .header__nav { display: none; }
  .header__btns .btn { display: none; }
  .hamburger { display: flex; }
  .bottom-nav { display: block; }
  .float-wa { display: none; }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 24px) 0 48px;
    background-image: 
      linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%),
      url('assets/hero.webp');
  }
  .hero__content { padding: 24px; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  .services__grid { grid-template-columns: 1fr; gap: 14px; }
  .fleet__grid { grid-template-columns: 1fr; gap: 20px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .rev-card { width: 290px; }
}
