/* ═══════════════════════════════════════════════════════════════
   MANSIUM — style.css  (shared: index.html + fleet.html)
   Awwwards-level · Glassmorphism · Apple × Dropship aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Surface */
  --bg:           #FBFBFD;
  --bg-white:     #FFFFFF;

  /* Glass */
  --glass:        rgba(255, 255, 255, 0.72);
  --glass-hi:     rgba(255, 255, 255, 0.88);
  --glass-lo:     rgba(255, 255, 255, 0.50);
  --glass-blur:   22px;
  --glass-border: rgba(0, 29, 63, 0.09);
  --glass-bdr-hi: rgba(0, 29, 63, 0.15);

  /* Ink */
  --ink:          #000919;
  --ink-deep:     #001D3F;
  --ink-mid:      #04356A;
  --ink-soft:     #4A6585;
  --ink-muted:    #8BA3BF;

  /* Accent */
  --blue-a:       #0A6ED3;
  --blue-b:       #054E98;
  --grad:         linear-gradient(135deg, #0A6ED3 0%, #054E98 100%);
  --grad-text:    linear-gradient(135deg, #0A6ED3, #054E98);

  /* Spacing scale */
  --s1:  0.25rem;   /*  4px */
  --s2:  0.5rem;    /*  8px */
  --s3:  0.75rem;   /* 12px */
  --s4:  1rem;      /* 16px */
  --s5:  1.25rem;   /* 20px */
  --s6:  1.5rem;    /* 24px */
  --s8:  2rem;      /* 32px */
  --s10: 2.5rem;    /* 40px */
  --s12: 3rem;      /* 48px */
  --s16: 4rem;      /* 64px */
  --s20: 5rem;      /* 80px */
  --s24: 6rem;      /* 96px */
  --s32: 8rem;      /* 128px */

  /* Layout */
  --max-w:    1280px;
  --pad-x:    clamp(1.25rem, 5vw, 4rem);
  --nav-h:    72px;

  /* Radii */
  --r-sm:  8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --r-2xl:36px;
  --r-full: 9999px;

  /* Motion */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);

  /* Typography */
  --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--ff);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-deep);
  background-color: var(--bg);
  /* Subtle dot-grid texture */
  background-image: radial-gradient(rgba(10, 110, 211, 0.032) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
em { font-style: normal; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; margin: -1px; padding: 0;
}

.br-desk { display: none; }
@media (min-width: 768px) { .br-desk { display: inline; } }


/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}


/* ─── SHARED SECTION TYPE ────────────────────────────────────── */
.section-head { margin-bottom: var(--s12); }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-a);
  margin-bottom: var(--s3);
}

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: var(--s4);
}

.section-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 480px;
  margin-inline: auto;
}

.section-head.text-left .section-desc { margin-inline: 0; }


/* ─── GLASS CARD ─────────────────────────────────────────────── */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.9);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow:
    0 2px 4px  rgba(0, 9, 25, 0.04),
    0 8px 24px rgba(0, 9, 25, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform    0.38s var(--ease),
    box-shadow   0.38s var(--ease),
    border-color 0.28s var(--ease);
}

.glass-card:hover {
  border-color: var(--glass-bdr-hi);
  box-shadow:
    0 4px 8px  rgba(0, 9, 25, 0.06),
    0 20px 52px rgba(0, 9, 25, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}


/* ─── CURSOR GLOW ────────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  left: -999px; top: -999px;
  background: radial-gradient(circle,
    rgba(10, 110, 211, 0.065) 0%,
    rgba(10, 110, 211, 0.025) 45%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: opacity 0.5s;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }


/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */

/* Primary gradient CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.875rem 1.625rem;
  min-height: 50px;
  background: var(--grad);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 4px 18px rgba(10, 110, 211, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform    0.30s var(--ease-spring),
    box-shadow   0.30s var(--ease);
}

/* Shimmer on hover */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,255,255,0.22) 48%,
    rgba(255,255,255,0.22) 52%,
    transparent 70%
  );
  transform: translateX(-150%);
  transition: transform 0s;
  pointer-events: none;
}

.btn-primary:hover::before {
  transform: translateX(160%);
  transition: transform 0.65s var(--ease);
}

.btn-primary:hover {
  box-shadow: 0 8px 36px rgba(10, 110, 211, 0.44),
              inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary.btn-lg {
  padding: 1.0625rem 2.125rem;
  font-size: 0.9375rem;
  min-height: 56px;
}

/* Ghost / outlined button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.8125rem 1.5rem;
  min-height: 50px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink-mid);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--r-full);
  border: 1px solid var(--glass-bdr-hi);
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.28s var(--ease);
}

.btn-ghost svg { width: 14px; height: 14px; transition: transform 0.28s var(--ease-spring); }
.btn-ghost:hover { background: rgba(255,255,255,0.9); border-color: rgba(10,110,211,0.22); color: var(--ink); }
.btn-ghost:hover svg { transform: translateX(3px); }
.btn-ghost.btn-sm { padding: 0.5625rem 1.125rem; font-size: 0.8125rem; min-height: 38px; }

/* View Full Fleet button */
.btn-view-fleet {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: 1rem 2rem;
  min-height: 54px;
  background: transparent;
  color: var(--ink-mid);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-full);
  border: 1.5px solid var(--glass-bdr-hi);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.32s var(--ease);
  will-change: transform;
}

.btn-view-fleet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
  z-index: 0;
}

.btn-view-fleet span,
.btn-view-fleet svg { position: relative; z-index: 1; }

.btn-view-fleet svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-spring); }

.btn-view-fleet:hover {
  border-color: var(--blue-a);
  box-shadow: 0 6px 28px rgba(10,110,211,0.32);
  transform: translateY(-2px);
  color: #FFFFFF; 
}

.btn-view-fleet:hover::before { opacity: 1; }
.btn-view-fleet:hover svg { transform: translateX(4px); }

.wa-ico { width: 17px; height: 17px; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════
   HEADER — Floating Glass Pill (FIXED NAVBAR)
══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* Extra space so pill doesn't touch edges */
  padding: var(--s3) var(--s6);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* let clicks through to page; pill re-enables */
}

/* Pill itself */
.header-pill {
  pointer-events: auto;
  width: 100%;
  max-width: var(--max-w);
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s3) var(--s4);
  background: rgba(251, 251, 253, 0.80);
  backdrop-filter: blur(28px) saturate(2);
  -webkit-backdrop-filter: blur(28px) saturate(2);
  border: 1px solid rgba(0, 29, 63, 0.09);
  border-radius: var(--r-2xl);
  box-shadow: 0 2px 20px rgba(0, 9, 25, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition: box-shadow 0.35s var(--ease);
}

.site-header.raised .header-pill {
  box-shadow: 0 4px 32px rgba(0, 9, 25, 0.13),
              inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Logo */
.logo { display: flex; align-items: center; gap: var(--s2); flex-shrink: 0; }

.logo-img { height: 30px; width: auto; }
.logo-img--sm { height: 24px; }

.logo-wordmark {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: center;
}

.logo-m {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

/* Desktop nav — ALWAYS shown on ≥768px, ALWAYS hidden below */
.desktop-nav {
  display: none;            /* hidden by default (mobile) */
  align-items: center;
  gap: var(--s1);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  padding: var(--s2) var(--s4);
  border-radius: var(--r-full);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-link:hover { background: rgba(10,110,211,0.07); color: var(--ink); }

.nav-link--active {
  color: var(--ink);
  background: rgba(10, 110, 211, 0.08);
}

/* Header CTA button — always visible */
.header-cta {
  flex-shrink: 0;
  padding: 0.625rem 1.125rem;
  font-size: 0.8125rem;
  min-height: 40px;
  margin-left: auto; /* push to right when desktop-nav is hidden on mobile */
}

/* Hamburger — ALWAYS hidden on ≥768px, ALWAYS shown below */
.hamburger {
  display: flex;              /* visible on mobile */
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  width: 40px; height: 40px;
  padding: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}

.hamburger:hover { background: rgba(0,9,25,0.05); }

.hb-line {
  display: block;
  height: 1.5px;
  background: var(--ink-mid);
  border-radius: 2px;
  transition: transform 0.32s var(--ease), opacity 0.2s, width 0.32s var(--ease);
  transform-origin: center;
}

.hb-line:first-child { width: 18px; }
.hb-line:last-child  { width: 12px; }

.hamburger.open .hb-line:first-child {
  width: 18px;
  transform: translateY(3.75px) rotate(45deg);
}
.hamburger.open .hb-line:last-child {
  width: 18px;
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ── Desktop breakpoint: show nav, hide hamburger ── */
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .hamburger   { display: none; }
  .header-cta  { margin-left: 0; } /* reset auto-margin — flex gap handles spacing */
}

/* ══════════════════════════════════════════════════
   FIX 2 — MOBILE HEADER CRO
   On mobile (<768px): hide hamburger AND mobile drawer.
   Header shows logo (left) + Book Now CTA (right) only.
   All nav links remain accessible in the footer.
   ══════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Completely remove the hamburger — no toggle on mobile */
  .hamburger {
    display: none !important;
  }

  /* Remove the drawer and overlay — not needed on mobile */
  .mobile-drawer,
  .drawer-overlay {
    display: none !important;
  }

  /* Ensure CTA sits flush right against logo with no wasted space */
  .header-cta {
    margin-left: auto;
  }
}


/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: calc(var(--nav-h) + var(--s3));
  left: var(--s6); right: var(--s6);
  background: rgba(251,251,253,0.94);
  backdrop-filter: blur(32px) saturate(2.2);
  -webkit-backdrop-filter: blur(32px) saturate(2.2);
  border: 1px solid var(--glass-bdr-hi);
  border-radius: var(--r-xl);
  padding: var(--s4) var(--s2) var(--s5);
  box-shadow: 0 8px 44px rgba(0, 9, 25, 0.14),
              inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-14px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s var(--ease-spring), opacity 0.3s var(--ease);
  z-index: 999;
}

.mobile-drawer.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.drawer-link {
  display: block;
  padding: var(--s4) var(--s5);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-lg);
  margin: 2px var(--s2);
  transition: background 0.18s, color 0.18s;
}

.drawer-link:hover { background: rgba(10,110,211,0.07); color: var(--ink); }

.drawer-cta {
  color: var(--blue-a);
  font-weight: 600;
  border-top: 1px solid var(--glass-border);
  margin-top: var(--s3);
  padding-top: var(--s5);
}

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 9, 25, 0.12);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* Hide mobile drawer on desktop (safety) */
@media (min-width: 768px) {
  .mobile-drawer,
  .drawer-overlay { display: none !important; }
}


/* ══════════════════════════════════════════════════════════════
   HERO — index.html
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--s16)) var(--pad-x) var(--s24);
  text-align: center;
  overflow: hidden;
}

/* Ambient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  will-change: transform;
}

.orb-1 {
  width: min(720px, 92vw); height: min(520px, 65vw);
  top: -12%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse,rgba(10,110,211,0.11) 0%, transparent 70%);
  animation: floatOrb1 18s ease-in-out infinite;
}

.orb-2 {
  width: min(380px, 60vw); height: min(320px, 50vw);
  bottom: 8%; right: -5%;
  background: radial-gradient(ellipse,rgba(5,78,152,0.08) 0%, transparent 70%);
  animation: floatOrb2 24s ease-in-out infinite;
}

.orb-3 {
  width: min(260px, 45vw); height: min(220px, 38vw);
  top: 30%; left: -4%;
  background: radial-gradient(ellipse,rgba(10,110,211,0.06) 0%, transparent 70%);
  animation: floatOrb1 20s ease-in-out 5s infinite;
}

.orb--sm { filter: blur(60px); transform: scale(0.7); }

@keyframes floatOrb1 {
  0%, 100% { transform: translateX(-50%) translateY(0)   scale(1); }
  40%       { transform: translateX(-50%) translateY(-26px) scale(1.04); }
  70%       { transform: translateX(-50%) translateY(12px)  scale(0.97); }
}
@keyframes floatOrb2 {
  0%, 100% { transform: translateY(0)   scale(1); }
  50%       { transform: translateY(20px) scale(1.05); }
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 760px; width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-bdr-hi);
  border-radius: var(--r-full);
  padding: var(--s2) var(--s5);
  margin-bottom: var(--s8);
  box-shadow: 0 2px 10px rgba(0,9,25,0.06);
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-a);
  box-shadow: 0 0 8px rgba(10,110,211,0.65);
  animation: pulseDot 2.4s ease infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(0.8); opacity: 0.55; }
}

.hero-headline {
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.03;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s8);
}

.hl        { display: block; }
.hl-grad   {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.175rem);
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 500px;
  margin: 0 auto var(--s10);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s12);
}

@media (max-width: 400px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions > * { justify-content: center; }
}

/* Stats */
.hero-stats {
  display: inline-flex;
  align-items: center;
  background: var(--glass-lo);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--s5) var(--s8);
  gap: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.88);
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--s8);
}

.stat strong {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.1;
}

.stat span {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 3px;
}

.stat-sep {
  width: 1px; height: 32px;
  background: var(--glass-bdr-hi);
  flex-shrink: 0;
}

@media (max-width: 440px) {
  .stat { padding: 0 var(--s4); }
}


/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.993);
  transition:
    opacity   0.72s var(--ease-out),
    transform 0.72s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ══════════════════════════════════════════════════════════════
   FEATURED SECTION — index.html (Asymmetric Bento)
══════════════════════════════════════════════════════════════ */
.featured-section {
  padding: var(--s24) 0 var(--s20);
  position: relative; z-index: 1;
}

.section-head { text-align: center; }

/* ── ASYMMETRIC BENTO: 3 columns, 2 rows ──
   Col 1+2 / Row 1+2 = bento-hero (large)
   Col 3   / Row 1+2 = bento-tall (side tall)
   Col 1   / Row 3   = bento-sm
   Col 2   / Row 3   = bento-sm
*/
.featured-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 200px;
  gap: var(--s4);
  margin-bottom: var(--s12);
}

/* Large hero card: 2 cols × 2 rows */
.bento-hero {
  grid-column: 1 / 3;
  grid-row:    1 / 3;
}

/* Tall side card: 1 col × 2 rows */
.bento-tall {
  grid-column: 3 / 4;
  grid-row:    1 / 3;
}

/* Mobile: stack to single column */
@media (max-width: 640px) {
  .featured-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--s3);
  }
  .bento-hero,
  .bento-tall { grid-column: 1; grid-row: auto; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .featured-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 200px;
  }
  .bento-hero { grid-column: 1 / 3; grid-row: 1 / 2; }
  .bento-tall { grid-column: 1 / 2; grid-row: 2 / 3; }
}

/* ── FEATURED CAR CARD ── */
.feat-car-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}

.feat-car-card:hover { transform: translateY(-4px); }

/* Image layer */
.fcc-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

/* ══════════════════════════════════════════════════
   FIX 3 — IMAGE WRAPPER INSIDE BENTO CARDS
   .image-wrapper sits above the .car-ph placeholder.
   When src="" the img is invisible → placeholder shows.
   When src is populated the img covers the placeholder.
   ══════════════════════════════════════════════════ */
.fcc-img .image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;          /* sits above .car-ph but below .fcc-overlay */
}

.fcc-img .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* fills the asymmetric cell without distortion */
  object-position: center;
  display: block;
  transition: transform 0.65s var(--ease);
}

.feat-car-card:hover .fcc-img .image-wrapper img {
  transform: scale(1.05);
}

/* .fcc-overlay must stack above the image wrapper */
.fcc-overlay {
  z-index: 2;
}

/* Car placeholder graphic */
.car-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    hsl(var(--ph-hue, 210) 55% 94%) 0%,
    hsl(var(--ph-hue, 210) 45% 89%) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Concentric rings — pure CSS decorative placeholder art */
.ph-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid hsl(var(--ph-hue, 210) 60% 70% / 0.22);
}

.ph-ring-1 {
  width: 78%; aspect-ratio: 1;
  bottom: -25%; right: -12%;
  border-width: 1.5px;
  border-color: hsl(var(--ph-hue, 210) 60% 65% / 0.18);
  box-shadow:
    inset 0 0 0 12%  hsl(var(--ph-hue, 210) 55% 70% / 0.07),
    0 0 0 10%  hsl(var(--ph-hue, 210) 55% 65% / 0.07),
    0 0 0 20%  hsl(var(--ph-hue, 210) 55% 65% / 0.04);
}

.ph-ring-2 {
  width: 50%; aspect-ratio: 1;
  bottom: -10%; right: 5%;
  border-color: hsl(var(--ph-hue, 210) 65% 60% / 0.14);
}

.ph-ring-3 {
  width: 30%; aspect-ratio: 1;
  bottom: 2%; right: 16%;
  border-color: hsl(var(--ph-hue, 210) 65% 55% / 0.10);
}

.car-ph::after {
  content: attr(data-name);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.85rem, 2.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: hsl(var(--ph-hue, 210) 55% 25% / 0.22);
  padding: 0 var(--s5);
  text-align: center;
}

/* ── DARK SCRIM — replaces the light white gradient ──
   Top of image stays fully clear; bottom gets a deep,
   cinematic vignette that the text panel sits on top of.   */
.fcc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0)    0%,
    rgba(0, 0, 0, 0)    45%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 0.78) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Image zoom on hover */
.feat-car-card:hover .car-ph { transform: scale(1.04); transition: transform 0.65s var(--ease); }

/* ── INFO PANEL — no blur; gradient scrim above does all the work ── */
.fcc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s4) var(--s5) var(--s5);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.fcc-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-a);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 110, 211, 0.16);
  border-radius: var(--r-full);
  padding: 4px 10px;
  width: fit-content;
}

.fcc-name {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.fcc-specs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.spec-dot { color: rgba(255, 255, 255, 0.4); }

/* CTA button — slides up on hover */
.fcc-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s3) var(--s5);
  min-height: 42px;
  background: var(--grad);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--r-full);
  box-shadow: 0 4px 16px rgba(10,110,211,0.26);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity   0.34s var(--ease),
    transform 0.38s var(--ease-spring),
    box-shadow 0.28s var(--ease);
  width: fit-content;
}

.fcc-cta .wa-ico { width: 15px; height: 15px; }
.fcc-cta:hover { box-shadow: 0 6px 22px rgba(10,110,211,0.4); }

.feat-car-card:hover .fcc-cta { opacity: 1; transform: translateY(0); }

/* Always show on touch */
@media (hover: none) { .fcc-cta { opacity: 1; transform: none; } }

/* Fleet link row */
.fleet-link-row {
  display: flex;
  justify-content: center;
  padding-top: var(--s4);
}


/* ══════════════════════════════════════════════════════════════
   FEATURES SECTION — index.html
══════════════════════════════════════════════════════════════ */
.features-section {
  padding: var(--s24) 0;
  position: relative; z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s4);
}

.feat-card {
  padding: var(--s8) var(--s8) var(--s8);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.feat-card:hover { transform: translateY(-5px); }

.feat-ico {
  width: 44px; height: 44px;
  background: linear-gradient(135deg,
    rgba(10,110,211,0.10) 0%,
    rgba(5,78,152,0.05)   100%
  );
  border: 1px solid rgba(10,110,211,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-ico svg { width: 22px; height: 22px; color: var(--blue-a); }

.feat-card h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}

.feat-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.72;
  flex: 1;
}

.feat-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-a);
  background: rgba(10,110,211,0.07);
  border: 1px solid rgba(10,110,211,0.14);
  border-radius: var(--r-full);
  padding: 4px 12px;
  width: fit-content;
  margin-top: var(--s2);
}


/* ══════════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════════ */
.marquee-band {
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  border-top: 1px solid var(--glass-bdr-hi);
  border-bottom: 1px solid var(--glass-bdr-hi);
  padding: var(--s4) 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 42s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0 var(--s6);
}

.marquee-track i {
  font-style: normal;
  color: var(--glass-bdr-hi);
  font-size: 0.9rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════════════════════════
   CONTACT BAND — index.html
══════════════════════════════════════════════════════════════ */
.contact-band {
  padding: var(--s32) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 680px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(10,110,211,0.08) 0%, transparent 68%
  );
  filter: blur(60px);
  pointer-events: none;
  /* Concentric ring effect */
  box-shadow:
    0 0 0 60px  rgba(10,110,211,0.025),
    0 0 0 120px rgba(10,110,211,0.015),
    0 0 0 190px rgba(10,110,211,0.008);
}

.contact-inner { position: relative; z-index: 1; }

.contact-title {
  font-size: clamp(1.9rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--ink);
  margin: var(--s4) 0 var(--s5);
  max-width: 600px;
  margin-inline: auto;
}

.contact-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 480px;
  margin: 0 auto var(--s10);
}

.contact-locations {
  margin-top: var(--s6);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-bdr-hi);
  padding: var(--s12) 0 var(--s8);
  position: relative; z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
  margin-bottom: var(--s10);
}

@media (min-width: 600px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: var(--s3);
  max-width: 280px;
  line-height: 1.65;
}

.footer-logo { margin-bottom: var(--s3); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  align-items: flex-start;
}

@media (min-width: 600px) { .footer-nav { align-items: flex-end; } }

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--blue-a); }

/* Phone number in footer — slightly differentiated */
.footer-nav a.footer-phone {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--ink-mid);
  font-weight: 500;
}

.footer-nav a.footer-phone:hover { color: var(--blue-a); }

.footer-base {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  padding-top: var(--s5);
  border-top: 1px solid var(--glass-border);
}

@media (min-width: 600px) {
  .footer-base { flex-direction: row; justify-content: space-between; }
}

.footer-base p {
  font-size: 0.75rem;
  color: var(--ink-muted);
}


/* ══════════════════════════════════════════════════════════════
   FLEET PAGE — fleet.html
══════════════════════════════════════════════════════════════ */

/* Fleet hero (compact) */
.fleet-hero {
  position: relative;
  padding: calc(var(--nav-h) + var(--s16)) var(--pad-x) var(--s16);
  overflow: hidden;
  text-align: center;
}

.fleet-hero-inner {
  position: relative; z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: var(--s2) var(--s4) var(--s2) var(--s3);
  border-radius: var(--r-full);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  margin-bottom: var(--s6);
  transition: all 0.22s var(--ease);
}

.back-link svg { width: 14px; height: 14px; transition: transform 0.22s var(--ease-spring); }
.back-link:hover { color: var(--ink); border-color: var(--glass-bdr-hi); }
.back-link:hover svg { transform: translateX(-2px); }

.fleet-hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  color: var(--ink);
  line-height: 1.06;
  margin-bottom: var(--s5);
}

.fleet-hero-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 480px;
  margin: 0 auto var(--s10);
}

/* Search bar */
.search-wrap { max-width: 560px; margin-inline: auto; }

.search-glass {
  display: flex;
  align-items: center;
  gap: var(--s3);
  height: 56px;
  padding: 0 var(--s5) 0 var(--s5);
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.9);
  -webkit-backdrop-filter: blur(22px) saturate(1.9);
  border: 1px solid var(--glass-bdr-hi);
  border-radius: var(--r-full);
  box-shadow: 0 2px 12px rgba(0,9,25,0.06),
              inset 0 1px 0 rgba(255,255,255,0.95);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s;
}

.search-glass:focus-within {
  border-color: rgba(10,110,211,0.3);
  box-shadow: 0 0 0 4px rgba(10,110,211,0.08),
              0 4px 18px rgba(0,9,25,0.09),
              inset 0 1px 0 rgba(255,255,255,1);
}

.search-ico {
  width: 17px; height: 17px;
  color: var(--ink-muted);
  flex-shrink: 0;
}

.search-inp {
  flex: 1;
  font-family: var(--ff);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
}

.search-inp::placeholder { color: var(--ink-muted); }
.search-inp::-webkit-search-cancel-button { display: none; }

.search-clear-btn {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.search-clear-btn svg { width: 13px; height: 13px; }
.search-clear-btn:hover { background: rgba(0,9,25,0.06); color: var(--ink); }

/* Filter tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s6);
}

.filter-tab {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  padding: var(--s2) var(--s5);
  border-radius: var(--r-full);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.22s var(--ease);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.filter-tab:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(10,110,211,0.2);
  color: var(--ink);
}

.filter-tab.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 3px 14px rgba(10,110,211,0.28);
}

/* Results bar */
.fleet-grid-section { padding: 0 0 var(--s24); }

.results-bar {
  margin-bottom: var(--s8);
  min-height: 24px;
}

.results-count {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* ── UNIFORM FLEET GRID ──
   All cards EXACTLY the same width and height.
   auto-fit + minmax so it adapts to any screen.
   Fixed image height via aspect-ratio ensures no card ever breaks shape.
*/
.uniform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s5);
}

/* ── UNIFORM FLEET CARD ── */
.fleet-card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.9);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: 0 2px 4px rgba(0,9,25,0.04),
              0 8px 24px rgba(0,9,25,0.07),
              inset 0 1px 0 rgba(255,255,255,0.92);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease), border-color 0.28s;
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-bdr-hi);
  box-shadow: 0 6px 10px rgba(0,9,25,0.06),
              0 20px 50px rgba(0,9,25,0.11),
              inset 0 1px 0 rgba(255,255,255,1);
}

/* Fixed-ratio image container — NEVER breaks shape */
.fc-img {
  width: 100%;
  aspect-ratio: 16 / 10;   /* fixed ratio on all cards */
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(145deg, #eef3fa 0%, #e4edf7 100%);
}

.fc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* always fills, never distorts */
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.fleet-card:hover .fc-img img { transform: scale(1.06); }

/* Placeholder (no image) */
.fc-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    hsl(var(--ph-hue,210) 52% 94%) 0%,
    hsl(var(--ph-hue,210) 44% 89%) 100%
  );
  position: relative;
  overflow: hidden;
}

.fc-ph::before {
  content: '';
  position: absolute;
  right: -14%; bottom: -14%;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid hsl(var(--ph-hue,210) 60% 65% / 0.16);
  box-shadow:
    0 0 0 12% hsl(var(--ph-hue,210) 55% 65% / 0.06),
    0 0 0 25% hsl(var(--ph-hue,210) 55% 65% / 0.035);
}

.fc-ph-name {
  font-size: clamp(0.78rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: hsl(var(--ph-hue,210) 55% 28% / 0.22);
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 var(--s4);
}

.fc-tag {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-a);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(10,110,211,0.16);
  border-radius: var(--r-full);
  padding: 4px 10px;
  z-index: 2;
}

/* Card body */
.fc-body {
  padding: var(--s5) var(--s6) var(--s6);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--s4);
}

.fc-name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.25;
}

/* Spec grid — uniform 2×2 within each card */
.fc-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3) var(--s4);
}

.fc-spec { display: flex; flex-direction: column; gap: 2px; }

.fc-spec-v {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.fc-spec-l {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Reserve CTA */
.fc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  width: 100%;
  padding: 0.8125rem var(--s5);
  min-height: 46px;
  background: var(--grad);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 14px rgba(10,110,211,0.24);
  text-decoration: none;
  margin-top: auto;
  transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.fc-cta .wa-ico { width: 16px; height: 16px; }
.fc-cta:hover {
  box-shadow: 0 6px 22px rgba(10,110,211,0.38);
  transform: translateY(-1px);
}

/* No results state */
.no-results {
  padding: var(--s12) 0;
  display: flex;
  justify-content: center;
}

.no-results-card {
  max-width: 380px; width: 100%;
  padding: var(--s12) var(--s12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s5);
}

.no-results-card svg {
  width: 48px; height: 48px;
  color: var(--ink-muted);
  opacity: 0.45;
}

.no-results-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.no-results-card em { color: var(--ink-mid); font-style: normal; font-weight: 500; }


/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}