/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #0F172A;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --gold: #F5B800;
  --gold-dark: #D9A200;
  --blue: #1E5BA8;
  --dark: #0a0a0f;
  --dark-2: #111118;
  --text: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  --nav-h: 72px;
  --radius: 12px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
}
.nav-logo svg { height: 44px; width: auto; }
.nav-logo img { height: 44px; width: auto; }
.footer-logo img { height: 44px; width: auto; margin-bottom: 1rem; display: block; }
.nav-links {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(10,10,15,0.97);
  padding: 1.5rem;
  gap: 1rem;
}
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #000;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,184,0,0.35);
}
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-white:hover { background: #fff; color: #000; }
.link-gold {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition);
}
.link-gold:hover { gap: 0.5rem; }

/* ===== SECTION HELPERS ===== */
.section-pad { padding: 96px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 3rem;
}
.section-title.light { color: #fff; }
.text-center { text-align: center; }
.bg-dark { background: var(--dark-2); }

/* ===== ANIMATION ===== */
/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
}
[data-animate="fade-up"]    { transform: translateY(48px); }
[data-animate="fade-down"]  { transform: translateY(-48px); }
[data-animate="fade-left"]  { transform: translateX(-56px); }
[data-animate="fade-right"] { transform: translateX(56px); }
[data-animate="scale-in"]   { transform: scale(0.88); }
[data-animate="scale-up"]   { transform: scale(0.92) translateY(32px); }
[data-animate="rotate-in"]  { transform: rotate(-6deg) scale(0.9); }
[data-animate="flip-up"]    { transform: perspective(600px) rotateX(20deg) translateY(40px); }

[data-animate].in-view {
  opacity: 1;
  transform: none;
}

/* Stagger children automatically */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1), transform 0.65s cubic-bezier(.22,1,.36,1);
}
[data-stagger].in-view > *:nth-child(1)  { opacity:1;transform:none;transition-delay:0.05s; }
[data-stagger].in-view > *:nth-child(2)  { opacity:1;transform:none;transition-delay:0.13s; }
[data-stagger].in-view > *:nth-child(3)  { opacity:1;transform:none;transition-delay:0.21s; }
[data-stagger].in-view > *:nth-child(4)  { opacity:1;transform:none;transition-delay:0.29s; }
[data-stagger].in-view > *:nth-child(5)  { opacity:1;transform:none;transition-delay:0.37s; }
[data-stagger].in-view > *:nth-child(6)  { opacity:1;transform:none;transition-delay:0.45s; }
[data-stagger].in-view > *:nth-child(n+7){ opacity:1;transform:none;transition-delay:0.53s; }

/* Count-up number pop */
.stat strong {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.stat:hover strong { transform: scale(1.18); }

/* Smooth card hovers */
.svc-tile, .why-card, .fleet-grid-card, .fleet-card {
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s cubic-bezier(.22,1,.36,1);
}
.svc-tile:hover    { transform: translateY(-8px) scale(1.02); }
.why-card:hover    { transform: translateY(-6px); }
.fleet-grid-card:hover { transform: translateY(-6px); }

/* Hero parallax car */
.hero-p1-car {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Section reveal line */
.section-eyebrow {
  position: relative;
  display: inline-block;
}
.section-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(.22,1,.36,1) 0.3s;
}
.section-eyebrow.in-view::after { width: 100%; }

/* Smooth image load */
img { transition: opacity 0.4s ease; }
img.loaded { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  [data-animate], [data-stagger] > * { opacity:1; transform:none; transition:none; }
  .hero-p1-car { transition: none; }
  .svc-tile:hover, .why-card:hover, .fleet-grid-card:hover { transform: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 2rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}

/* BOOKING WIDGET */
.booking-widget {
  background: rgba(10,10,15,0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.booking-row-2 { align-items: flex-end; }
.booking-field { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; min-width: 140px; }
.booking-field-wide { flex: 1.5; }
.booking-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}
.booking-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.booking-input-wrap svg:first-child {
  position: absolute;
  left: 10px;
  pointer-events: none;
}
.booking-input-wrap input,
.booking-input-wrap select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  padding: 0.6rem 0.75rem 0.6rem 2.2rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.booking-input-wrap input::placeholder { color: rgba(255,255,255,0.45); }
.booking-input-wrap input:focus,
.booking-input-wrap select:focus { border-color: var(--gold); }
.booking-input-wrap input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 10px;
  pointer-events: none;
  color: rgba(255,255,255,0.5);
}
.booking-input-wrap select { color: rgba(255,255,255,0.85); }
.booking-input-wrap select option { background: #111; color: #fff; }
.btn-search { align-self: stretch; justify-content: center; }

/* STATS BAR */
.stats-bar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat div { display: flex; flex-direction: column; }
.stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.13);
}
.service-img-wrap { height: 180px; overflow: hidden; }
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 1.25rem 0.5rem;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 1.25rem 0.75rem;
}
.service-card .link-gold { margin: 0 1.25rem 1.25rem; }

/* ===== SERVICES MOSAIC ===== */
.svc-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.svc-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.svc-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-tile:hover img { transform: scale(1.07); }
.svc-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.08) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s ease;
}
.svc-tile:hover .svc-tile-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.2) 100%);
}
.svc-tile-num {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.svc-tile h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.svc-tile p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin: 0 0 0.85rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.svc-tile:hover p {
  max-height: 6rem;
  opacity: 1;
}
.svc-tile-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.svc-tile:hover .svc-tile-link {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FLEET PREVIEW ===== */
.fleet-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.fleet-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fleet-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  flex: 1;
}
.fleet-carousel::-webkit-scrollbar { display: none; }
.fleet-card {
  background: #1a1a24;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 300px;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.fleet-card-img { position: relative; height: 190px; overflow: hidden; }
.fleet-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.06); }
.badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.badge-available { background: #16a34a; color: #fff; }
.badge-limited { background: #f59e0b; color: #000; }
.badge-unavailable { background: #dc2626; color: #fff; }
.fleet-card-body { padding: 1.1rem 1.25rem 1.25rem; }
.fleet-card-body h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.fleet-specs {
  display: flex; gap: 0.75rem;
  margin-bottom: 1rem;
}
.fleet-specs span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 0.3rem;
}
.fleet-specs span::before {
  content: '';
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.fleet-specs span:first-child::before { display: none; }
.fleet-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.fleet-price { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.4; }
.fleet-price strong { display: block; color: var(--gold); font-size: 1.05rem; line-height: 1.2; }
.fleet-price span { font-size: 0.72rem; }
.carousel-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.carousel-btn:hover { background: var(--gold); color: #000; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.why-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.why-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(245,184,0,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ===== TRUSTED ===== */
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.45;
}
.trusted-logos img { height: 36px; width: auto; object-fit: contain; }

/* Luxury noise/grain textured dark panel */
.trusted-luxury {
  position: relative;
  background-color: var(--dark-2);
  border-top: 1px solid rgba(245,184,0,0.25);
  border-bottom: 1px solid rgba(245,184,0,0.25);
}
.trusted-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  opacity: 0.055;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.trusted-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 0;
}
.trusted-names span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  padding: 0.6rem 1.1rem 0.6rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  cursor: default;
}
.trusted-names span:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}
.tn-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.85;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testi-card > p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-author strong { font-size: 0.88rem; display: block; }
.testi-author span { font-size: 0.78rem; color: var(--muted); }
.testi-avatar-fl {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(245,184,0,0.1); border: 1px solid rgba(245,184,0,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #F5B800;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 56px 0;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.82);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-banner-content p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.cta-banner-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #050508;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 64px 1.5rem 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo svg { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,184,0,0.1); }
.footer-col h5 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.contact-cards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  text-align: center;
}
.page-hero .section-eyebrow { display: block; margin-bottom: 0.5rem; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ===== FLEET PAGE ===== */
.fleet-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 24px;
  border: 2px solid var(--border);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: #000;
  background: var(--gold);
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.fleet-grid-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.fleet-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.fleet-grid-img { position: relative; height: 190px; overflow: hidden; }
.fleet-grid-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fleet-grid-card:hover .fleet-grid-img img { transform: scale(1.06); }
.fleet-grid-body { padding: 1.1rem; }
.fleet-grid-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.fleet-category-tag { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.6rem; }
.fleet-grid-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.fleet-grid-price { font-size: 0.82rem; color: var(--muted); }
.fleet-grid-price strong { color: var(--gold); font-size: 1rem; }

/* ===== HOW IT WORKS ===== */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
.how-step { text-align: center; }
.how-step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(245,184,0,0.2);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.how-step-img { height: 160px; border-radius: var(--radius); overflow: hidden; margin-bottom: 1.25rem; }
.how-step-img img { width: 100%; height: 100%; object-fit: cover; }
.how-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.how-step p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* STATS HIGHLIGHT */
.stats-highlight {
  background: var(--gold);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
  margin-bottom: 5rem;
}
.sh-stat strong { font-size: 2rem; font-weight: 800; color: #000; display: block; }
.sh-stat span { font-size: 0.83rem; color: rgba(0,0,0,0.7); font-weight: 600; }

/* ===== BOOKING PAGE ===== */
.book-section { padding: calc(var(--nav-h) + 3rem) 0 5rem; background: #f8fafc; min-height: 100vh; }
.book-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; }
.book-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.book-form-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.book-form-card > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.75rem; }
.form-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.form-grid.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { min-height: 90px; resize: vertical; }
.form-total {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
}
.form-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  color: var(--muted);
}
.form-total-row.total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}
.book-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.book-sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.book-sidebar-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.book-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.85rem; color: var(--muted);
  margin-bottom: 0.75rem;
}
.book-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }

/* ===== ABOUT PAGE ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 5rem 0; }
.about-intro-img { border-radius: var(--radius); overflow: hidden; height: 420px; }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-text .section-eyebrow { display: block; }
.about-intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.about-intro-text p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }

.clients-section {
  padding: 64px 0 48px;
  background: #f8fafc;
  overflow: hidden;
}
.marquee-wrap {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, #f8fafc, transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left,  #f8fafc, transparent); }
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.marquee-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1.4rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.marquee-logo:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(245,184,0,0.14);
}
.marquee-logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}
.marquee-logo span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.marquee-logo.no-img span { font-size: 0.85rem; }
.ml-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card { text-align: center; }
.team-card-img { height: 220px; border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 0.95rem; font-weight: 700; }
.team-card span { font-size: 0.8rem; color: var(--muted); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 5rem 0; }
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-info p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,184,0,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item h5 { font-size: 0.83rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }
.contact-item a:hover { color: var(--gold); }
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  margin-top: 2rem;
  background: #e2e8f0;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .svc-mosaic { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-img { height: 280px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-highlight { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 3rem; }
  .book-grid { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-links, .nav-right { display: none; }
  .nav-burger { display: flex; }
  .svc-mosaic { grid-template-columns: 1fr; }
  .svc-tile p { max-height: 6rem; opacity: 1; }
  .svc-tile-link { opacity: 1; transform: translateY(0); }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .fleet-preview-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-content { flex-direction: column; text-align: center; }
  .stats-highlight { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .hero-sub br { display: none; }
  .contact-cards-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-bar { flex-direction: column; }
  .stat { flex: 1 0 100%; }
  .stats-highlight { grid-template-columns: 1fr 1fr; }
}
