/* ═══════════════════════════════════════════════════
   UAE TRAVELS — PREMIUM DARK THEME STYLESHEET
   ═══════════════════════════════════════════════════ */

/* ─ CSS VARIABLES ─ */
:root {
  --bg-deep:    #0B0F19;
  --bg-dark:    #121826;
  --bg-panel:   rgba(14,20,34,0.88);
  --bg-card:    rgba(255,255,255,0.04);
  --green:      #00A651;
  --green-glow: rgba(0,166,81,0.3);
  --green-light:#00c962;
  --red:        #FF2E2E;
  --gold:       #D4AF37;
  --gold-glow:  rgba(212,175,55,0.25);
  --gold-light: #e8c94b;
  --white:      #FFFFFF;
  --gray:       #A0A7B8;
  --gray-dark:  #5c6478;
  --border:     rgba(212,175,55,0.18);
  --glass-bg:   rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --shadow:     0 8px 40px rgba(0,0,0,0.5);
  --radius:     16px;
  --radius-sm:  10px;
  --transition: 0.3s ease;
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Outfit', system-ui, sans-serif;
}

/* ─ RESET ─ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  scrollbar-gutter: stable;
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.64) rgba(7,11,20,0.96);
}
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
*::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(11,15,25,0.98), rgba(18,24,38,0.96));
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(212,175,55,0.9), rgba(0,166,81,0.85));
  border: 3px solid rgba(7,11,20,0.96);
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(232,201,75,0.95), rgba(0,201,98,0.9));
}
body {
  font-family: var(--font);
  background:
    radial-gradient(circle at top, rgba(0,166,81,0.09), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(212,175,55,0.08), transparent 24%),
    var(--bg-deep);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: auto; }
main { display: block; }

:focus-visible {
  outline: 3px solid rgba(0, 166, 81, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1500;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.32);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.noscript-banner {
  padding: 12px 16px;
  text-align: center;
  background: rgba(212, 175, 55, 0.12);
  color: var(--white);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}


/* ═══════ LOADING SCREEN ═══════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  animation: loaderDismiss 0.6s ease 2.2s forwards;
}
#loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.loader-logo img {
  width: min(200px, 56vw);
  height: auto;
  display: block;
}
.loader-bar {
  width: 200px; height: 3px;
  background: var(--glass-border);
  border-radius: 100px; overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 100px;
  animation: loaderFill 2s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }
@keyframes loaderDismiss {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #loader {
    transition-duration: 0.25s;
    animation-delay: 0.8s;
  }
  .loader-fill {
    width: 100%;
    animation-duration: 0.01ms;
  }
}


/* ═══════ UTILITIES ═══════ */
.container { width: min(100%, 1240px); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 8vw, 104px) 0; position: relative; }
.section-alt { background: var(--bg-dark); }
.gold { color: var(--gold); }
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.section-header {
  text-align: center; max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin: 12px 0; }
.section-header p { color: var(--gray); font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green); border: 1px solid var(--green-glow);
  background: rgba(0,166,81,0.08);
  padding: 5px 14px; border-radius: 100px;
}

@supports (content-visibility: auto) {
  main > .section:not(#hero) {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}


/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: var(--font); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none;
  transition:
    transform 0.26s var(--ease-spring),
    box-shadow 0.26s var(--ease-spring),
    background 0.26s ease,
    border-color 0.26s ease,
    color 0.26s ease;
  white-space: nowrap;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  --btn-offset-x: 0px;
  --btn-offset-y: 0px;
  --btn-lift-y: 0px;
  transform: translate3d(var(--btn-offset-x), calc(var(--btn-offset-y) + var(--btn-lift-y)), 0);
  will-change: transform;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0.24), rgba(255,255,255,0) 34%, rgba(255,255,255,0.18));
  opacity: 0;
  transform: translateX(-18%) rotate(-7deg);
  transition: opacity 0.3s ease, transform 0.35s var(--ease-spring);
  pointer-events: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0,166,81,0.26);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover {
  --btn-lift-y: -2px;
  box-shadow: 0 16px 38px rgba(0,166,81,0.42);
}
.btn-outline {
  background: rgba(11,15,25,0.44);
  color: var(--white);
  border: 1.5px solid var(--gold);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.btn-outline:hover {
  --btn-lift-y: -2px;
  background: rgba(212,175,55,0.12);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(212,175,55,0.18);
}
.btn:hover::after,
.btn:focus-visible::after {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}
.magnetic-btn {
  transform-style: preserve-3d;
}
.magnetic-btn.is-magnetic {
  transition-duration: 0.12s;
}
.hero-contact-line {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}
.hero-contact-line a {
  color: var(--white);
  font-weight: 600;
}
.hero-contact-line a:hover {
  color: var(--gold);
}
.hero-features-note {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}
.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white);
}
.btn-secondary:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px var(--green-glow);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.full-width { width: 100%; justify-content: center; }


/* ═══════ NAVBAR ═══════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(11,15,25,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 72px;
  max-width: 18vw;
  height: auto;
  display: block;
}
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
  line-height: 1;
}
.brand-wordmark-main {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transform: translateY(2px);
}
.brand-wordmark-accent {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  padding: 7px 14px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600; color: var(--gray);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
  background: var(--glass-bg);
}
.nav-links a.is-active {
  box-shadow: inset 0 -1px 0 rgba(0, 166, 81, 0.55);
}
.nav-wa { font-size: 0.85rem !important; padding: 10px 20px !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
body.nav-open { overflow: hidden; }


/* ═══════ HERO ═══════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  overflow: hidden;
  padding-bottom: clamp(32px, 5vw, 60px);
}
.hero-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 138px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 36px);
}
.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.95s ease, transform 1.8s ease;
  transform: scale(1.08);
}
.hero-banner-slide.is-active {
  opacity: 1;
  transform: scale(1.02);
}
.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.08);
  will-change: transform;
  filter: saturate(1.05) contrast(1.04) brightness(0.78);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(11,15,25,0.92) 0%,
    rgba(11,15,25,0.75) 50%,
    rgba(0,166,81,0.08) 100%
  ),
  radial-gradient(circle at top, rgba(212,175,55,0.13), transparent 32%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
  max-width: 860px;
  text-align: center;
  min-height: auto;
  padding: 0;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 1px;
  color: var(--gold); border: 1px solid var(--gold-glow);
  background: rgba(212,175,55,0.08);
  padding: 7px 18px; border-radius: 100px; margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  font-size: clamp(2.7rem, 6.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 14ch;
  margin: 0 auto 20px;
  text-wrap: balance;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--gray);
  max-width: 760px;
  margin: 0 auto;
  text-wrap: pretty;
  animation: fadeUp 0.8s 0.35s ease both;
}
.hero-route-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 18px auto 0;
  animation: fadeUp 0.8s 0.43s ease both;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 0;
  animation: fadeUp 0.8s 0.5s ease both;
}
.hero-btns .btn {
  min-height: 52px;
  justify-content: center;
}
.hero-bottom {
  width: min(100%, 1040px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  z-index: 2;
  animation: fadeUp 0.8s 0.65s ease both;
}
.stat-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  height: 100%;
  padding: 22px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(18,24,38,0.9), rgba(8,12,22,0.98));
  box-shadow: 0 20px 40px rgba(0,0,0,0.26);
  transition: transform 0.28s var(--ease-spring), border-color 0.28s ease, box-shadow 0.28s ease;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.18), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  opacity: 0.7;
  pointer-events: none;
}
.stat-num {
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #00d96f, #5be56a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-plus {
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold-light);
  margin-top: 4px;
}
.stat-label {
  margin-top: 12px;
  font-size: clamp(0.74rem, 0.9vw, 0.82rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255,255,255,0.76);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider { display: none; }
.hero-scroll-indicator { display: none; }
.hero-route-list .route-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 12px;
  line-height: 1.2;
  text-align: center;
}
.hero-banner-dots {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .stat-item:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.18);
    box-shadow:
      0 26px 50px rgba(0,0,0,0.34),
      0 0 32px rgba(0,166,81,0.12),
      0 0 20px rgba(212,175,55,0.08);
  }
}
.hero-scroll-indicator span { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
.hero-banner-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.18);
  appearance: none;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.hero-banner-dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--gold), var(--green-light));
  border-color: transparent;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }


/* ═══════ SERVICES ═══════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,166,81,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,166,81,0.15);
}
.featured-service:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.2), 0 0 40px rgba(212,175,55,0.08);
}
.service-icon svg { width: 56px; height: 56px; margin-bottom: 20px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }
.route-highlight {
  display: inline;
  font-weight: 800;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 2px 8px;
  border-radius: 999px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.85rem; font-weight: 600;
  color: var(--green); transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.gold-link { color: var(--gold); }
.popular-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
  background: var(--gold); color: var(--bg-deep);
  padding: 4px 10px; border-radius: 100px;
}


/* ═══════ FLEET ═══════ */
.legacy-hidden { display: none !important; }
.fleet-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 14px clamp(6px, 1.2vw, 12px) 30px;
}
.fleet-slider {
  display: flex;
  gap: clamp(18px, 2vw, 24px);
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.fleet-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 16px);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-spring), border-color 0.45s ease;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(18,24,38,0.86), rgba(8,12,22,0.98));
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  --card-spotlight-x: 50%;
  --card-spotlight-y: 24%;
}
.fleet-card::before,
.showcase-slide-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(240px circle at var(--card-spotlight-x) var(--card-spotlight-y), rgba(0,201,98,0.2), transparent 50%),
    radial-gradient(220px circle at calc(var(--card-spotlight-x) + 12%) calc(var(--card-spotlight-y) - 2%), rgba(212,175,55,0.16), transparent 54%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.fleet-card::after,
.showcase-slide-card::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.72), transparent);
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 2;
}
.fleet-card:hover,
.showcase-slide-card:hover {
  transform: translateY(-10px) scale(1.018);
  border-color: rgba(212,175,55,0.22);
  box-shadow:
    0 28px 64px rgba(0,0,0,0.55),
    0 0 36px rgba(0,166,81,0.14),
    0 0 26px rgba(212,175,55,0.08);
}
.fleet-card:hover::before,
.showcase-slide-card:hover::before,
.fleet-card.is-spotlit::before,
.showcase-slide-card.is-spotlit::before {
  opacity: 1;
}
.fleet-card:hover::after,
.showcase-slide-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.fleet-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease-spring), filter 0.45s ease; }
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.06); }
.fleet-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(180deg, rgba(11,15,25,0) 0%, rgba(11,15,25,0.24) 38%, rgba(11,15,25,0.95) 100%);
  transition: opacity 0.35s ease, height 0.35s ease;
}
.fleet-card:hover .fleet-img-overlay,
.showcase-slide-card:hover .fleet-img-overlay {
  height: 72%;
  opacity: 0.98;
}
.fleet-card > *,
.showcase-slide-card > * {
  position: relative;
  z-index: 1;
}
.fleet-info,
.showcase-slide-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: -54px 18px 18px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16,23,38,0.78), rgba(8,12,22,0.96));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring), background 0.4s ease, border-color 0.4s ease;
}
.fleet-card:hover .fleet-info,
.showcase-slide-card:hover .showcase-slide-info {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(18,26,42,0.82), rgba(9,14,24,0.98));
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 24px 42px rgba(0,0,0,0.32);
}
.fleet-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-glow);
  background: rgba(212,175,55,0.08);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
}
.fleet-info h3,
.showcase-slide-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.fleet-info p,
.showcase-slide-info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
  transition: color 0.3s ease;
}
.fleet-card:hover .fleet-info h3,
.showcase-slide-card:hover .showcase-slide-info h3 {
  color: var(--white);
}
.fleet-card:hover .fleet-info p,
.showcase-slide-card:hover .showcase-slide-info p,
.fleet-card:hover .fleet-features li {
  color: rgba(255,255,255,0.86);
}
.fleet-features { display: flex; flex-direction: column; gap: 4px; }
.fleet-features li { font-size: 0.82rem; color: rgba(255,255,255,0.72); transition: color 0.3s ease; }
.fleet-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 32px;
}
.fleet-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--white); font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.fleet-btn:hover { border-color: var(--gold); color: var(--gold); }
.fleet-dots { display: flex; gap: 8px; }
.fleet-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-dark); cursor: pointer; transition: var(--transition);
}
.fleet-dot.active { background: var(--gold); transform: scale(1.3); }


/* ═══════ PACKAGE SLIDER ═══════ */
.pricing-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 14px clamp(6px, 1.2vw, 12px) 30px;
}
.pricing-slider {
  display: flex;
  gap: clamp(18px, 2vw, 24px);
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.pricing-slide-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 16px);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: 0 18px 44px rgba(0,0,0,0.32);
}
.pricing-slide-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.5); }
.pricing-slide-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.pricing-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pricing-slide-card:hover .pricing-slide-media img { transform: scale(1.03); }
.pricing-slide-media .fleet-img-overlay {
  display: none;
}
.pricing-slide-info {
  margin: 0;
  flex: 1;
  padding: 24px;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.pricing-slide-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-slide-info p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 14px;
}


/* ═══════ SHOWCASE ═══════ */
.showcase-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 14px clamp(6px, 1.2vw, 12px) 30px;
}
.showcase-slider {
  display: flex;
  gap: clamp(18px, 2vw, 24px);
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.showcase-slide-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 16px);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-spring), border-color 0.45s ease;
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(18,24,38,0.86), rgba(8,12,22,0.98));
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  --card-spotlight-x: 50%;
  --card-spotlight-y: 24%;
}
.showcase-slide-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.showcase-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.showcase-slide-card:hover .showcase-slide-media img { transform: scale(1.06); filter: saturate(1.04); }


/* ═══════ WHY CHOOSE US ═══════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 16px 40px rgba(212,175,55,0.06);
}
.why-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.why-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }


/* ═══════ PRICING ═══════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.pricing-card {
  border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-popular {
  border-color: var(--gold) !important;
  box-shadow: 0 0 40px var(--gold-glow);
  transform: translateY(-8px);
}
.pricing-popular:hover { transform: translateY(-14px); }
.popular-ribbon {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep); font-size: 0.75rem; font-weight: 700;
  text-align: center; padding: 7px;
  letter-spacing: 0.5px;
}
.plan-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; margin-top: 8px; }
.pricing-popular .plan-header { margin-top: 36px; }
.plan-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray); background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 4px 12px; border-radius: 100px;
}
.gold-tag { color: var(--gold); border-color: var(--gold-glow); background: rgba(212,175,55,0.08); }
.plan-icon { font-size: 1.8rem; }
.plan-price {
  font-size: 2.8rem; font-weight: 800; margin-bottom: 28px;
  background: linear-gradient(135deg, var(--white), var(--gray));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-popular .plan-price {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.currency { font-size: 1.2rem; font-weight: 600; vertical-align: top; margin-top: 8px; display: inline-block; }
.per { font-size: 0.85rem; color: var(--gray); font-weight: 400; }
.custom-price {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li { font-size: 0.88rem; color: var(--gray); }
.plan-features li.disabled { opacity: 0.4; }


/* ═══════ PACKAGE BANNER ═══════ */
#package-showcase { overflow: hidden; }
.package-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.package-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: packageScroll 34s linear infinite;
}
.package-marquee:hover .package-track { animation-play-state: paused; }
.package-card {
  flex: 0 0 clamp(210px, 24vw, 290px);
  overflow: hidden;
  border-radius: var(--radius);
}
.package-card img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 5 / 7;
  object-fit: cover;
}
@keyframes packageScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ═══════ SERVICE AREAS ═══════ */
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.area-card {
  border-radius: var(--radius); padding: 34px 24px; text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,166,81,0.3);
  box-shadow: 0 0 30px rgba(0,166,81,0.06);
}
.area-emoji { font-size: 3rem; margin-bottom: 16px; display: block; }
.area-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.area-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.area-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  color: var(--gray); border: 1px solid var(--glass-border);
  padding: 4px 12px; border-radius: 100px;
}
.area-tag.green { color: var(--green); border-color: rgba(0,166,81,0.3); background: rgba(0,166,81,0.08); }


/* ═══════ TESTIMONIALS ═══════ */
.testimonials-slider-wrap { position: relative; }
.testimonials-slider { position: relative; }
.testimonial-slide {
  display: none; animation: fadeSlidein 0.5s ease;
}
.testimonial-slide.active { display: flex; justify-content: center; }
@keyframes fadeSlidein { from {opacity:0;transform:translateY(16px)} to {opacity:1;transform:translateY(0)} }
.testi-card {
  border-radius: var(--radius); padding: 44px 48px;
  max-width: 740px; width: 100%; text-align: center;
}
.stars { font-size: 1.4rem; color: var(--gold); margin-bottom: 20px; letter-spacing: 2px; }
.testi-text {
  font-size: 1.05rem; color: var(--gray); line-height: 1.8; font-style: italic;
  margin-bottom: 32px;
}
.testi-author {
  display: flex; align-items: center; gap: 16px; justify-content: center;
}
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-avatar-placeholder {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; color: var(--bg-deep);
  border: 2px solid var(--gold);
}
.testi-author strong { display: block; font-size: 0.95rem; }
.testi-author span { font-size: 0.8rem; color: var(--gray); }
.testi-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 32px;
}
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--white); font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.testi-btn:hover { border-color: var(--gold); color: var(--gold); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-dark); cursor: pointer; transition: var(--transition);
}
.testi-dot.active { background: var(--gold); transform: scale(1.3); }


/* ═══════ CTA BANNER ═══════ */
#cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a1a0f 0%, var(--bg-deep) 50%, #1a1200 100%);
}
.cta-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,166,81,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.cta-content {
  position: relative; text-align: center; max-width: 640px; margin: 0 auto;
}
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.cta-content p { color: var(--gray); font-size: 1.1rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.faq-item {
  padding: 24px 24px 20px;
  border-radius: 22px;
  transition: transform 0.26s var(--ease-spring), border-color 0.26s ease, box-shadow 0.26s ease;
}
.faq-item[open] {
  border-color: rgba(212,175,55,0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.24s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  margin-top: 14px;
  color: var(--gray);
  font-size: 0.94rem;
}


/* ═══════ CONTACT ═══════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.contact-form-wrap {
  border-radius: var(--radius); padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--gray); margin-bottom: 8px; letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--white);
  font-family: var(--font); font-size: 0.92rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.form-group select option { background: var(--bg-dark); }
.form-group textarea { resize: vertical; }
.form-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.honeypot-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-status {
  min-height: 24px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
}
.form-status[data-state="success"] { color: #79f0a4; }
.form-status[data-state="error"] { color: #ffb4b4; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }
.contact-details {
  border-radius: var(--radius); padding: 32px;
}
.contact-details h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 24px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--glass-border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.78rem; color: var(--gray); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.contact-item a, .contact-item span { font-size: 0.9rem; color: var(--white); transition: var(--transition); }
.contact-item a:hover { color: var(--green); }
.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); }
.map-placeholder {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}
.map-placeholder strong {
  font-size: 1rem;
  font-weight: 700;
}
.map-placeholder p,
.map-status {
  font-size: 0.9rem;
  color: var(--gray);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.map-wrap iframe.is-loaded { opacity: 1; }


/* ═══════ FOOTER ═══════ */
#footer {
  background: #08090f;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: min(88px, 24vw);
  height: auto;
  display: block;
}
.footer-wordmark .brand-wordmark-main,
.footer-wordmark .brand-wordmark-accent {
  font-size: 1.14rem;
}
.footer-brand p { font-size: 0.87rem; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: var(--transition);
}
.social-icon:hover { color: var(--gold); border-color: var(--gold); background: rgba(212,175,55,0.08); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--gray); transition: var(--transition); }
.footer-col a:hover { color: var(--green); padding-left: 4px; }
.footer-wa { margin-top: 24px; }
.footer-wa .btn { font-size: 0.82rem; padding: 10px 18px; }
.footer-wa-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
}
.footer-wa-note a {
  color: var(--white);
}
.footer-wa-note a:hover {
  color: var(--green);
}
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-dark); }
.footer-copy {
  margin: 0;
  font-size: 0.95rem !important;
  font-weight: 800;
  color: var(--white) !important;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-dark);
}


/* ═══════ WHATSAPP CHOOSER ═══════ */
body.wa-modal-open {
  overflow: hidden;
}
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.wa-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wa-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.78);
  backdrop-filter: blur(8px);
}
.wa-modal-dialog {
  position: relative;
  width: min(100%, 520px);
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 24, 42, 0.98), rgba(8, 13, 24, 0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}
.wa-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.wa-modal-close:hover {
  background: rgba(255,255,255,0.16);
}
.wa-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37,211,102,0.12);
  color: #79f0a4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wa-modal-dialog h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  color: var(--white);
}
.wa-modal-copy {
  margin-bottom: 24px;
  color: var(--gray);
  line-height: 1.7;
}
.wa-modal-options {
  display: grid;
  gap: 14px;
}
.wa-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  transition: var(--transition);
}
.wa-option:hover {
  transform: translateY(-2px);
  border-color: rgba(37,211,102,0.45);
  background: rgba(37,211,102,0.08);
  box-shadow: 0 16px 36px rgba(37,211,102,0.14);
}
.wa-option-label {
  font-size: 1.05rem;
  font-weight: 700;
}
.wa-option-note {
  font-size: 0.88rem;
  color: var(--gray);
}


/* ═══════ WHATSAPP FLOAT ═══════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 28px rgba(37,211,102,0.42);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappBreath 2.8s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 40px rgba(37,211,102,0.56); }
.wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 3px solid rgba(37,211,102,0.5);
  animation: pulse 2.2s var(--ease-spring) infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:0.7} 72%{transform:scale(1.46);opacity:0} 100%{transform:scale(1.46);opacity:0} }
@keyframes whatsappBreath {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.34); }
  50% { box-shadow: 0 16px 42px rgba(37,211,102,0.52); }
}


/* ═══════ AOS ANIMATIONS ═══════ */
[data-aos] {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.98);
  filter: blur(12px);
  transition:
    opacity 0.8s var(--ease-spring),
    transform 0.8s var(--ease-spring),
    filter 0.8s var(--ease-spring),
    clip-path 0.8s var(--ease-spring);
}
[data-aos="zoom-in"] {
  transform: translate3d(0, 20px, 0) scale(0.92);
}
[data-aos="fade-right"] {
  transform: translate3d(-34px, 0, 0) scale(0.98);
}
[data-aos="fade-left"] {
  transform: translate3d(34px, 0, 0) scale(0.98);
}
[data-aos="card-rise"] {
  transform: translate3d(0, 56px, 0) scale(0.94);
  filter: blur(16px);
}
[data-aos="soft-rise"] {
  transform: translate3d(0, 40px, 0) scale(0.965);
}
[data-aos="reveal"] {
  transform: translate3d(0, 36px, 0) scale(0.97);
  clip-path: inset(0 0 18% 0 round 22px);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0 round 22px);
}

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }


/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-card { flex: 0 0 calc(50% - 12px); }
  .pricing-slide-card { flex: 0 0 calc(50% - 12px); }
  .showcase-slide-card { flex: 0 0 calc(50% - 12px); }
}
@media (min-width: 1100px) and (max-height: 860px) {
  .hero-shell { padding-top: 118px; gap: 24px; }
  .hero-badge {
    margin-bottom: 18px;
  }
  .hero-title {
    font-size: clamp(2.55rem, 4.8vw, 3.85rem);
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .stat-item {
    min-height: 132px;
    padding: 18px 14px;
  }
  .hero-route-list { margin-top: 16px; }
}
@media (max-width: 768px) {
  .container,
  .nav-container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-header {
    max-width: 100%;
    margin-bottom: 38px;
  }
  .section-header h2 { font-size: clamp(1.85rem, 7vw, 2.4rem); }
  .section-header p { font-size: 0.96rem; }
  #navbar { padding: 12px 0; }
  #navbar.scrolled { padding: 10px 0; }
  .nav-container {
    gap: 12px;
    justify-content: space-between;
  }
  .nav-logo {
    gap: 8px;
    max-width: calc(100% - 60px);
  }
  .nav-logo img {
    width: 54px;
    max-width: none;
  }
  .brand-wordmark-main,
  .brand-wordmark-accent {
    font-size: 0.92rem;
  }
  .nav-links, .nav-wa { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; inset: 0; top: 72px;
    background: rgba(11,15,25,0.98);
    backdrop-filter: blur(20px);
    padding: 22px 18px 28px;
    gap: 8px;
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100dvh - 72px);
  }
  .nav-links.open a { font-size: 1.1rem; padding: 12px 0; border-bottom: 1px solid var(--glass-border); width: 100%; }
  .nav-links.open li { width: 100%; }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  #hero {
    min-height: auto;
    padding: 0 0 24px;
  }
  .hero-shell {
    width: 100%;
    min-height: 100svh;
    padding: 104px 18px 0;
    gap: 20px;
    justify-content: center;
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
    min-height: auto;
    padding: 0;
  }
  .hero-badge {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 7px 14px;
    margin-bottom: 18px;
  }
  .hero-title {
    font-size: clamp(2rem, 8.8vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 12.5ch;
    margin-bottom: 14px;
  }
  .hero-sub {
    max-width: 36ch;
    font-size: clamp(0.95rem, 3vw, 1.02rem);
    line-height: 1.7;
  }
  .hero-route-list {
    gap: 8px;
    margin-top: 16px;
  }
  .hero-route-list .route-highlight {
    min-height: 32px;
    padding: 5px 10px;
    font-size: 0.8rem;
  }
  .hero-btns {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  .hero-btns .btn,
  .cta-btns .btn {
    width: min(100%, 286px);
    max-width: 286px;
    min-height: 48px;
    padding: 11px 18px;
    font-size: 0.92rem;
    border-radius: 18px;
  }
  .hero-bottom {
    width: 100%;
    gap: 14px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 520px);
    gap: 12px;
    margin-top: 0;
    padding: 0;
  }
  .stat-item {
    min-height: 112px;
    padding: 16px 12px;
    border-radius: 18px;
    box-shadow: 0 18px 32px rgba(0,0,0,0.24);
  }
  .stat-num,
  .stat-plus {
    font-size: clamp(1.52rem, 5vw, 1.92rem);
  }
  .stat-label {
    margin-top: 8px;
    font-size: clamp(0.66rem, 2.2vw, 0.74rem);
    letter-spacing: 0.06em;
  }
  .stat-divider { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-banner-dots {
    justify-content: center;
    gap: 8px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 20px 18px 18px; }
  .service-card { padding: 24px 20px; }
  .service-icon svg { width: 48px; height: 48px; margin-bottom: 16px; }
  .service-card h3 { font-size: 1.08rem; }
  .service-card p { font-size: 0.92rem; }
  .fleet-slider-wrapper,
  .pricing-slider-wrapper,
  .showcase-slider-wrapper {
    padding: 10px 4px 24px;
  }
  .fleet-card,
  .pricing-slide-card,
  .showcase-slide-card {
    flex: 0 0 100%;
    max-width: min(100%, 460px);
    margin-inline: auto;
  }
  .fleet-img-wrap,
  .pricing-slide-media,
  .showcase-slide-media {
    aspect-ratio: 16 / 10;
  }
  .fleet-img-wrap img,
  .pricing-slide-media img,
  .showcase-slide-media img {
    object-position: center;
  }
  .fleet-info,
  .pricing-slide-info,
  .showcase-slide-info {
    margin: -42px 14px 14px;
    padding: 18px;
  }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-popular { transform: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-card {
    padding: 24px 20px;
    text-align: left;
  }
  .area-emoji { font-size: 2.2rem; margin-bottom: 12px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap,
  .contact-details { padding: 24px 18px; }
  .map-placeholder { padding: 20px 18px; }
  .contact-item {
    align-items: flex-start;
    gap: 12px;
  }
  .contact-item a,
  .contact-item span { overflow-wrap: anywhere; }
  .map-wrap iframe { height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .footer-logo img { width: 72px; }
  .footer-wordmark .brand-wordmark-main,
  .footer-wordmark .brand-wordmark-accent { font-size: 1rem; }
  .testi-card { padding: 24px 18px; }
  .testi-text {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .testi-author {
    gap: 12px;
    align-items: center;
  }
  .cta-content p {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fleet-nav { gap: 12px; margin-top: 24px; }
  .fleet-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .wa-float {
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
  }
  .package-card { flex-basis: 220px; }
}
@media (max-width: 480px) {
  .container,
  .nav-container { padding: 0 16px; }
  #navbar { padding: 10px 0; }
  .nav-logo img { width: 46px; }
  .brand-wordmark-main,
  .brand-wordmark-accent { font-size: 0.84rem; }
  .nav-links.open {
    top: 68px;
    max-height: calc(100dvh - 68px);
    padding: 16px;
  }
  #hero { padding: 0 0 20px; }
  .hero-shell {
    min-height: 100svh;
    padding: 94px 16px 0;
    gap: 18px;
  }
  .hero-title {
    font-size: clamp(1.82rem, 10vw, 2.4rem);
    max-width: 11.5ch;
  }
  .hero-sub {
    max-width: 32ch;
    font-size: 0.92rem;
  }
  .hero-badge { font-size: 0.69rem; padding: 6px 12px; }
  .hero-route-list { gap: 7px; margin-top: 14px; }
  .hero-route-list .route-highlight {
    min-height: 30px;
    font-size: 0.76rem;
    padding: 5px 9px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .fleet-slider-wrapper,
  .pricing-slider-wrapper,
  .showcase-slider-wrapper {
    padding-inline: 0;
  }
  .fleet-card,
  .pricing-slide-card,
  .showcase-slide-card {
    max-width: 100%;
  }
  .fleet-img-wrap,
  .pricing-slide-media,
  .showcase-slide-media {
    aspect-ratio: 16 / 9;
  }
  .hero-banner-dots {
    gap: 7px;
  }
  .hero-banner-dot {
    width: 9px;
    height: 9px;
  }
  .hero-banner-dot.is-active {
    width: 28px;
  }
  .stat-item {
    min-height: 98px;
    padding: 14px 10px;
  }
  .stat-num,
  .stat-plus {
    font-size: clamp(1.38rem, 5.5vw, 1.62rem);
  }
  .stat-label {
    font-size: 0.66rem;
    line-height: 1.35;
  }
  .btn {
    width: auto;
    padding: 13px 20px;
  }
  .hero-btns .btn,
  .cta-btns .btn {
    width: min(100%, 260px);
    max-width: 260px;
    padding: 11px 14px;
    font-size: 0.88rem;
  }
  .hero-btns { margin-top: 18px; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 1.72rem; }
  .section-header p { font-size: 0.92rem; }
  .service-card,
  .why-card,
  .area-card,
  .contact-form-wrap,
  .contact-details {
    padding: 20px 16px;
  }
  .faq-item { padding: 18px 16px 16px; }
  .fleet-info,
  .pricing-slide-info,
  .showcase-slide-info {
    padding: 18px 16px;
  }
  .contact-item {
    flex-direction: column;
    gap: 8px;
  }
  .footer-copy { font-size: 0.9rem !important; }
  .footer-legal-links { line-height: 1.8; }
  .package-card { flex-basis: 180px; }
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .wa-modal {
    padding: 16px;
  }
  .wa-modal-dialog {
    padding: 20px 16px;
    border-radius: 20px;
  }
  .wa-modal-dialog h3 { font-size: 1.3rem; }
  .wa-modal-copy { margin-bottom: 18px; }
  .wa-option {
    padding: 16px;
  }
}
@media (max-width: 380px) {
  .stat-item {
    min-height: 92px;
    padding: 13px 8px;
  }
  .stat-num,
  .stat-plus {
    font-size: 1.2rem;
  }
  .stat-label {
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
  .hero-banner-img {
    transform: scale(1.08);
  }
}
