/* ════════════════════════════════════════════════════════
   SHAMA LIMO SERVICES — Luxury black & gold theme
   ════════════════════════════════════════════════════════ */
:root {
  --gold: #d4af37;
  --gold-light: #f0d27a;
  --gold-dark: #9c7c1e;
  --black: #070708;
  --black-2: #0d0d10;
  --black-3: #141418;
  --white: #f5f2ea;
  --muted: #b7b2a4;
  --line: rgba(212, 175, 55, 0.22);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--black); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  color: #1a1405;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.45);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}
.btn-small { padding: 0.6rem 1.4rem; font-size: 0.72rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ───────── Navbar ───────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: all 0.45s var(--ease);
}
.navbar.scrolled {
  background: rgba(7, 7, 8, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-monogram {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(212,175,55,0.18), transparent 70%);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.22em;
  color: var(--white);
}
.brand-text small {
  font-size: 0.55rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links > a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links > a:not(.btn):hover { color: var(--gold); }
.nav-links > a:not(.btn):hover::after { width: 100%; }

.lang-switch {
  display: flex; align-items: center; gap: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.4rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: border-color 0.3s;
}
.lang-switch:hover { border-color: var(--gold); }
.lang-switch i { color: var(--gold-dark); font-style: normal; }
.lang-switch a { color: var(--muted); transition: color 0.3s; }
.lang-switch a:hover { color: var(--gold-light); }
.lang-switch a.active { color: var(--gold); }

.nav-phone {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold) !important;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Velo suave: la foto tiene que verse. En lugar de oscurecerla entera,
     el contraste del texto lo da un halo local centrado en el titular. */
  background:
    radial-gradient(ellipse 70% 45% at 50% 115%, rgba(212, 175, 55, 0.16), transparent),
    radial-gradient(ellipse 58% 42% at 50% 46%, rgba(6, 6, 7, 0.66) 0%, rgba(6, 6, 7, 0.34) 58%, transparent 78%),
    linear-gradient(to bottom, rgba(7, 7, 8, 0.5) 0%, rgba(7, 7, 8, 0.3) 45%, rgba(7, 7, 8, 0.66) 84%, var(--black) 100%),
    url("../images/fleet/hero-jet.jpg") center 38% / cover no-repeat,
    var(--black);
  overflow: hidden;
}
#heroParticles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  left: 50%; bottom: -28vh;
  width: 90vw; height: 50vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.14), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 8rem 2rem 4rem;
  /* Con el velo más claro, el contraste del texto lo aporta la sombra,
     no un fondo negro tapando la foto. */
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.55);
}
.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.6rem;
  /* drop-shadow en lugar de text-shadow: el <em> tiene relleno transparente
     y una text-shadow se vería a través del degradado dorado. */
  text-shadow: none;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.68));
}
.hero-title em {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 2.6rem;
  color: #e4e4e8;
  font-size: 1.06rem;
}
.hero-cta { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges {
  display: flex; gap: 2.2rem; justify-content: center; flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-badges span { color: #dcdce1; }

.scroll-hint {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mouse {
  display: block;
  width: 26px; height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  position: relative;
  opacity: 0.7;
}
.wheel {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  background: var(--gold);
  border-radius: 2px;
  animation: wheel 1.8s infinite var(--ease);
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ───────── Stats ───────── */
.stats { border-block: 1px solid var(--line); background: var(--black-2); }
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.6rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1.1;
}
.stat span {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────── Sections shared ───────── */
section { position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 3.4rem; padding: 0 2rem; }
.section-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-kicker::before,
.section-kicker::after { content: "—"; color: var(--gold-dark); margin: 0 0.7rem; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}
.section-title em {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub { margin-top: 1rem; color: var(--muted); font-size: 0.95rem; }

/* ───────── Fleet / 3D viewer ───────── */
.fleet { padding: 7rem 0 7.5rem; }
.fleet-viewer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 1.6rem;
  align-items: stretch;
}
.viewer-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 105%, rgba(212,175,55,0.10), transparent),
    linear-gradient(180deg, #0b0b0e, #060607);
  overflow: hidden;
  min-height: 540px;
}
.viewer-canvas { position: absolute; inset: 0; cursor: grab; }
.viewer-canvas:active { cursor: grabbing; }
.viewer-canvas canvas { display: block; }
.viewer-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  background: var(--black-2);
  transition: opacity 0.6s, visibility 0.6s;
  z-index: 3;
}
.viewer-loading.hidden { opacity: 0; visibility: hidden; }
.spinner {
  width: 22px; height: 22px;
  border: 2px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.viewer-hint {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.45);
  background: rgba(7, 7, 8, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}

.viewer-panel { display: flex; flex-direction: column; gap: 1.2rem; }
.vehicle-tabs { display: flex; flex-direction: column; gap: 0.7rem; }
.vehicle-tab {
  text-align: left;
  background: var(--black-3);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 4px;
  padding: 1rem 1.3rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: all 0.35s var(--ease);
}
.vehicle-tab:hover { border-color: var(--gold); transform: translateX(5px); }
.vehicle-tab.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(212,175,55,0.04));
  transform: translateX(5px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.12);
}
.vt-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.vehicle-tab.active .vt-name { color: var(--gold); }
.vt-type {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.vehicle-info {
  flex: 1;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.vehicle-info.switching { opacity: 0; transform: translateY(12px); }
.vehicle-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.vehicle-info p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.4rem; flex: 1; }
.vi-specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.vi-specs li {
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  padding: 0.7rem 0.3rem;
}
.vi-specs strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
}
.vi-specs span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────── Services ───────── */
.services {
  padding: 7rem 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(212,175,55,0.05), transparent),
    var(--black-2);
  border-block: 1px solid var(--line);
}
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  background: var(--black-3);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 6px;
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 4px 30px rgba(212, 175, 55, 0.07);
}
.service-card:hover::before { transform: scaleX(1); }
.sc-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  background: radial-gradient(circle at 30% 25%, rgba(212,175,55,0.16), transparent 70%);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}
.service-card p { color: var(--muted); font-size: 0.92rem; }
.service-card--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.4rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.16), rgba(212,175,55,0.03));
  border-color: rgba(212, 175, 55, 0.35);
}
.service-card--cta h3 { font-size: 1.7rem; line-height: 1.25; }
.service-card--cta em { color: var(--gold); }
.service-card--organ {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  padding: 0;
}
.so-media { position: relative; min-height: 300px; }
.so-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.so-body {
  padding: 2.8rem 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.9rem;
}
.so-badge {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
}
.service-card--organ h3 { font-size: 1.7rem; margin-bottom: 0; }
.service-card--organ p { font-size: 0.98rem; line-height: 1.7; }

/* ───────── Why us ───────── */
.why { padding: 7.5rem 0; }
.why-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-text .section-kicker { text-align: left; }
.why-text .section-kicker::before { margin-left: 0; }
.why-text .section-title { margin-bottom: 2.2rem; }
.why-list { list-style: none; display: grid; gap: 1rem; }
.why-list li {
  position: relative;
  padding: 1rem 1.2rem 1rem 3.4rem;
  background: var(--black-3);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.97rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.why-list li:hover { border-color: rgba(212, 175, 55, 0.4); transform: translateX(6px); }
.why-list li::before {
  content: "✓";
  position: absolute;
  left: 1.2rem; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
}
.why-list strong { color: var(--gold); font-weight: 600; }

.why-visual { display: grid; place-items: center; }
.seal {
  width: 290px; height: 290px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 32% 28%, rgba(212,175,55,0.14), transparent 65%);
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.12), inset 0 0 50px rgba(212, 175, 55, 0.05);
  animation: sealFloat 5s ease-in-out infinite;
}
.seal::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  animation: sealSpin 40s linear infinite;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }
@keyframes sealFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.seal-top { font-size: 0.68rem; letter-spacing: 0.32em; color: var(--muted); }
.seal-main {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.seal-script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--gold);
  line-height: 1;
}
.seal-stars { margin-top: 0.6rem; color: var(--gold); letter-spacing: 0.3em; font-size: 0.8rem; }

/* ───────── Testimonials ───────── */
.testimonials { padding: 7rem 0; background: var(--black-2); border-top: 1px solid var(--line); }
.t-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.t-card {
  background: var(--black-3);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 6px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.t-card:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.4); }
.t-stars { color: var(--gold); letter-spacing: 0.25em; margin-bottom: 1.1rem; font-size: 0.9rem; }
.t-card blockquote {
  flex: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.t-card figcaption { display: flex; flex-direction: column; gap: 0.15rem; }
.t-card figcaption strong { color: var(--gold); font-weight: 600; font-size: 0.92rem; }
.t-card figcaption span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.t-grid .t-card:nth-child(2) { transition-delay: 0.08s; }
.t-grid .t-card:nth-child(3) { transition-delay: 0.16s; }

/* ───────── FAQ ───────── */
.faq { padding: 7rem 0 7.5rem; }
.faq-list { max-width: 780px; margin: 0 auto; padding: 0 2rem; display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--black-3);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(212, 175, 55, 0.45); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-serif);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item[open] summary { color: var(--gold); }
.faq-chevron {
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
  line-height: 1;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  font-size: 0.93rem;
}

/* ───────── Booking ───────── */
.book {
  padding: 7rem 0 7.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(212,175,55,0.06), transparent),
    var(--black-2);
  border-block: 1px solid var(--line);
}
.book-form {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  gap: 1.3rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.book-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.book-form input,
.book-form select,
.book-form textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  background: var(--black-3);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 3px;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.book-form input::placeholder,
.book-form textarea::placeholder { color: rgba(183, 178, 164, 0.5); }
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.book-form select option { background: var(--black-3); }
.book-form input[type="datetime-local"] { color-scheme: dark; }
.book-form textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.85rem; color: var(--muted); }
.form-note a { color: var(--gold); border-bottom: 1px solid var(--gold-dark); }

/* Solo el teléfono es obligatorio */
.form-row--single { grid-template-columns: 1fr; }
.form-row[hidden] { display: none; }
.book-form .req { color: var(--gold); font-style: normal; }
.form-required-note {
  margin: -0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.04em;
}

.flash {
  max-width: 820px;
  margin: 0 auto 1.6rem;
  padding: 1rem 1.4rem;
  border-radius: 4px;
  font-size: 0.92rem;
  text-align: center;
}
.flash-success {
  background: rgba(60, 160, 90, 0.12);
  border: 1px solid rgba(80, 200, 120, 0.45);
  color: #9fe3b5;
}
.flash-error {
  background: rgba(190, 60, 60, 0.1);
  border: 1px solid rgba(220, 90, 90, 0.45);
  color: #f0a8a8;
}

/* ───────── Footer ───────── */
.footer { background: var(--black); }
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.9fr 1.1fr;
  gap: 2.2rem;
}
.f-col h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.f-col a, .f-col p {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.f-col a:hover { color: var(--gold); }
.f-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--muted);
  margin-top: 1.2rem;
}
.footer-bar {
  border-top: 1px solid var(--line);
  padding: 1.4rem 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(183, 178, 164, 0.55);
}

/* ───────── WhatsApp float ───────── */
.wa-float {
  position: fixed;
  right: 1.6rem; bottom: 1.6rem;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #2bb35a, #1e8c45);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s var(--ease);
  animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes waPulse {
  0% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(43, 179, 90, 0.45); }
  70% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 18px rgba(43, 179, 90, 0); }
  100% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(43, 179, 90, 0); }
}

/* ───────── Reveal animations ───────── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.services-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.24s; }
.stats-inner .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-inner .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats-inner .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ───────── Reduced motion ───────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .seal, .wheel, .wa-float { animation: none; }
}

/* ───────── Responsive ───────── */
@media (max-width: 1024px) {
  .fleet-viewer { grid-template-columns: 1fr; }
  .viewer-stage { min-height: 440px; }
  .vehicle-tabs { flex-direction: row; }
  .vehicle-tab { flex: 1; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr; max-width: 680px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(7, 7, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links > a:not(.btn) { font-size: 1.05rem; }
  .nav-toggle { display: flex; position: relative; z-index: 110; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--organ { grid-template-columns: 1fr; }
  .so-media { min-height: 220px; }
  .so-body { padding: 2rem 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .vehicle-tabs { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .seal { width: 240px; height: 240px; }
  .viewer-stage { min-height: 360px; }
}

/* ═════════ ABOUT ═════════ */
.about { padding: 7rem 0; background: var(--black); }
.about-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: 4rem; align-items: center;
}
.about-lead { color: var(--muted); font-size: 1rem; line-height: 1.8; margin: 1.4rem 0 2rem; }
.about-visual { display: grid; place-items: center; }

/* ═════════ MODEL-VIEWER SHOWROOM ═════════ */
.mv-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 105%, rgba(212,175,55,0.10), transparent),
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,175,55,0.05), transparent),
    var(--black-2);
}
#escaladeViewer {
  width: 100%; height: 100%;
  min-height: 520px;
  --poster-color: transparent;
  background: transparent;
}
.mv-loading {
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  color: var(--muted); font-size: 0.85rem; height: 100%;
}
.mv-controls {
  position: absolute; top: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.4rem; z-index: 5;
  background: rgba(7,7,8,0.6); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 40px; padding: 0.3rem;
}
.mv-btn {
  border: 0; background: transparent; color: var(--muted);
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 1rem; border-radius: 30px; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.mv-btn:hover { color: var(--gold-light); }
.mv-btn.is-active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #1a1405; font-weight: 600;
}

/* Hotspots */
.mv-hotspot {
  --size: 22px;
  width: var(--size); height: var(--size);
  border: 0; background: transparent; padding: 0; cursor: pointer;
  display: grid; place-items: center;
}
.mv-hotspot:not([data-visible]) { display: none; }
.hs-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.3);
  position: relative;
}
.hs-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--gold); animation: hsPulse 2s ease-out infinite;
}
@keyframes hsPulse { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(2.4); opacity: 0; } }
.hs-label {
  position: absolute; left: 26px; top: 50%; transform: translateY(-50%);
  white-space: nowrap; font-size: 0.68rem; letter-spacing: 0.06em;
  background: rgba(7,7,8,0.85); color: var(--gold-light);
  border: 1px solid var(--line); border-radius: 4px; padding: 0.3rem 0.6rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.mv-hotspot:hover .hs-label { opacity: 1; }

/* Info popup */
.mv-info {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem; z-index: 6;
  max-width: 340px;
  background: rgba(13,13,16,0.94); backdrop-filter: blur(10px);
  border: 1px solid var(--gold); border-radius: 6px; padding: 1.2rem 1.4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.mv-info h4 { font-family: var(--font-serif); color: var(--gold); font-size: 1.1rem; margin-bottom: 0.4rem; }
.mv-info p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.mv-info-close {
  position: absolute; top: 0.5rem; right: 0.6rem;
  background: transparent; border: 0; color: var(--muted);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.mv-info-close:hover { color: var(--gold); }
.vi-badge {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line); border-radius: 30px;
  padding: 0.3rem 0.8rem; margin-bottom: 0.9rem;
}

/* ═════════ CALENDAR + RATES ═════════ */
.calendar { padding: 7rem 0; background: var(--black-2); border-block: 1px solid var(--line); }
.cal-grid {
  max-width: 1080px; margin: 0 auto 3rem; padding: 0 2rem;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start;
}
.cal-availability, .cal-rates {
  background: var(--black-3); border: 1px solid var(--line); border-radius: 6px; padding: 1.6rem;
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.cal-head strong { font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold); }
.cal-nav {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--gold);
  font-size: 1.2rem; cursor: pointer; transition: all 0.25s;
}
.cal-nav:hover { background: var(--gold); color: var(--black); }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-weekdays {
  margin-bottom: 8px; font-size: 0.64rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); text-align: center;
}
.cal-cell {
  aspect-ratio: 1; border: 1px solid transparent; border-radius: 4px;
  background: var(--black-2); color: var(--white);
  font-size: 0.85rem; cursor: pointer; transition: all 0.2s;
  display: grid; place-items: center;
}
.cal-cell.empty { background: transparent; border: 0; cursor: default; }
.cal-cell.past { color: rgba(183,178,164,0.3); background: transparent; cursor: not-allowed; }
.cal-cell.free { border-color: rgba(212,175,55,0.25); }
.cal-cell.free:hover { background: rgba(212,175,55,0.18); border-color: var(--gold); transform: translateY(-2px); }
.cal-cell.booked {
  color: rgba(245,242,234,0.35); background: rgba(120,20,20,0.18);
  border-color: rgba(180,50,50,0.35); cursor: not-allowed;
  text-decoration: line-through;
}
.cal-cell.picked { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: #1a1405; font-weight: 700; border-color: var(--gold); }
.cal-legend { display: flex; gap: 1.4rem; margin-top: 1.2rem; font-size: 0.72rem; color: var(--muted); }
.cal-legend span { display: flex; align-items: center; gap: 0.4rem; }
.cal-legend .dot { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.dot.free { border: 1px solid var(--gold); }
.dot.booked { background: rgba(180,50,50,0.5); }
.dot.picked { background: var(--gold); }

.cal-rates h3 { font-family: var(--font-serif); color: var(--gold); font-size: 1.3rem; margin-bottom: 1.2rem; }
.rates-list { list-style: none; display: grid; gap: 0.7rem; }
.rates-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.1rem; background: var(--black-2);
  border: 1px solid rgba(212,175,55,0.12); border-radius: 4px;
}
.rate-name { font-size: 0.9rem; color: var(--white); }
.rate-val { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); }
.rate-val small { font-size: 0.6rem; color: var(--muted); margin-left: 2px; letter-spacing: 0.04em; }
.rates-note { margin-top: 1.2rem; font-size: 0.72rem; color: var(--muted); line-height: 1.6; }

/* Booking within calendar */
.calendar .book { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.book-form-title { font-family: var(--font-serif); font-size: 1.9rem; color: var(--gold); }
.book-actions { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.book-or { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.btn-wa { background: #25D366; color: #05320f; box-shadow: 0 8px 30px rgba(37,211,102,0.25); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.4); }

@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .cal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .mv-stage, #escaladeViewer { min-height: 400px; }
  .book-actions { grid-template-columns: 1fr; }
  .book-or { order: 0; }
}

/* ═════════ NIGHT MIAMI FULL-PAGE BACKGROUND ═════════ */
body { background: #050507; }
/* City skyline (fixed, behind everything) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('../images/miami-night.jpg') center center / cover no-repeat;
}
/* Dark veil so mostly the city lights show through and text stays readable */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 75% 60% at 50% 42%, rgba(5,5,7,0.10), rgba(5,5,7,0.40) 75%),
    linear-gradient(180deg, rgba(5,5,7,0.55) 0%, rgba(5,5,7,0.34) 45%, rgba(5,5,7,0.58) 100%);
}

/* Sections become transparent so the skyline floats behind the whole page */
.stats,
.about,
.services,
.calendar,
.testimonials,
.footer {
  background: transparent !important;
}

/* Panels/cards get a translucent dark glass so they read over the city */
.mv-stage,
.vehicle-info,
.service-card,
.cal-availability,
.cal-rates,
.why-list li,
.rates-list li {
  background: rgba(10, 10, 14, 0.55) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.service-card--cta {
  background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(10,10,14,0.55)) !important;
}
.cal-cell { background: rgba(0, 0, 0, 0.35); }
.cal-cell.empty { background: transparent; }
.cal-cell.off { color: rgba(183, 178, 164, 0.25); background: transparent; cursor: not-allowed; border-color: transparent; }

/* ═════════ ERGONOMIC / MOBILE-FIRST TUNING ═════════ */
/* Shorter, lighter hero so the 3D Escalade appears sooner */
.hero { min-height: 84svh; }
.hero-sub { margin-bottom: 1.8rem; }
.hero-cta { margin-bottom: 1.8rem; }
.fleet { padding: 3rem 0 4rem; }

@media (max-width: 900px) {
  .fleet-viewer { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero { min-height: auto; padding: 96px 1.2rem 34px; text-align: center; }
  .hero-kicker { font-size: 0.6rem; letter-spacing: 0.2em; margin-bottom: 0.8rem; line-height: 1.5; }
  .hero-title { font-size: clamp(2.1rem, 11vw, 3.1rem); line-height: 1.06; }
  .hero-sub { font-size: 0.96rem; margin-bottom: 1.4rem; max-width: 94%; }
  .hero-cta { gap: 0.7rem; margin-bottom: 1.3rem; }
  .hero-badges { gap: 0.5rem 1.1rem; font-size: 0.58rem; letter-spacing: 0.08em; }
  .scroll-hint { display: none; }
  .fleet { padding: 1.4rem 0 2.4rem; }
  .fleet .section-head { margin-bottom: 1.1rem; }
  .section-title { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .section-head { margin-bottom: 2rem; }
  .mv-stage, #escaladeViewer { min-height: 330px; }
  .mv-controls { top: 0.6rem; padding: 0.25rem; }
  .mv-btn { padding: 0.45rem 0.75rem; font-size: 0.62rem; }
  .viewer-hint { display: none; }
  .about { padding: 3.5rem 0; }
  .services, .calendar { padding: 3.5rem 0; }
  .cal-grid { padding: 0 1.2rem; gap: 1.2rem; }
  .rates-list li { padding: 0.75rem 0.95rem; }
  .rate-val { font-size: 1.2rem; }
  .book-form-title { font-size: 1.5rem; }
  .calendar .book { padding: 0 1.2rem; }
  .nav-inner { padding: 0 1.2rem; }
}
@media (max-width: 460px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0.5rem; }
  .hero-badges { flex-direction: column; gap: 0.4rem; }
}

/* Navbar keeps a solid-ish veil for legibility */
.navbar.scrolled { background: rgba(6, 6, 8, 0.82); backdrop-filter: blur(12px); }

/* ═════════ REAL LOGO IMAGE (transparent PNG) ═════════ */
.brand-logo {
  height: 108px;
  width: auto;
  display: block;
  /* Negative margins: the logo overflows the bar visually but only
     occupies 78px of layout height, so the header doesn't grow.
     Asymmetric so the crown doesn't clip against the top edge. */
  margin: -6px 0 -24px;
}
.brand-logo--footer { height: 118px; }
/* Keep the header compact: trim navbar padding so a bigger logo
   doesn't grow the header height. */
.navbar { padding: 0.35rem 0; }
.navbar.scrolled { padding: 0.3rem 0; }
@media (max-width: 720px) {
  .brand-logo { height: 80px; margin: -5px 0 -17px; }
}

/* ══════════ FLEET PHOTO CARDS ══════════ */
.fleet-more-head { margin-top: 5rem; }

.fleet-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2rem;
}
.fleet-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.fleet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}
.fc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.fc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.fleet-card:hover .fc-media img { transform: scale(1.05); }
.fc-tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: rgba(7, 7, 8, 0.78);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.fc-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.fc-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.fc-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; }
.fc-features { list-style: none; margin-bottom: 1.3rem; }
.fc-features li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 0.35rem;
}
.fc-features li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.72rem; top: 0.15rem; }
.fc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.fc-specs { list-style: none; display: flex; gap: 1.4rem; }
.fc-specs li { text-align: center; }
.fc-specs strong { display: block; color: var(--gold); font-family: var(--font-serif); font-size: 1.15rem; }
.fc-specs span { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* Escalade extra photos in the 3D panel */
.vi-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin: 1.1rem 0 1.3rem; }
.vi-gallery img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--line); display: block;
}

/* ══════════ VEHICLE PICKER (booking) ══════════ */
.veh-pick { max-width: 1150px; margin: 0 auto 2rem; padding: 0 2rem; text-align: center; }
.veh-pick-label {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.veh-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.veh-pill {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 0.4rem 1.1rem 0.4rem 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.veh-pill img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; display: block; }
.veh-pill:hover { border-color: rgba(212, 175, 55, 0.55); color: var(--white); }
.veh-pill.is-active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
  border-color: var(--gold);
  color: var(--white);
}

.cal-grid--single { grid-template-columns: 1fr; max-width: 760px; }

@media (max-width: 900px) {
  .fleet-cards { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .fleet-more-head { margin-top: 2.6rem; }
  .fleet-cards { padding: 0 1.2rem; gap: 1.2rem; }
  .veh-pick { padding: 0 1.2rem; }
  .veh-pill { font-size: 0.72rem; }
  .veh-pill img { width: 36px; height: 36px; }
}

/* ══════════ 3D VIEWER MODEL TABS ══════════ */
.mv-tabs {
  display: flex; justify-content: center; gap: 0.8rem;
  max-width: 1150px; margin: 0 auto 1.6rem; padding: 0 2rem;
  flex-wrap: wrap;
}
.mv-tab {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 0.65rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.mv-tab:hover { border-color: rgba(212, 175, 55, 0.55); color: var(--white); }
.mv-tab.is-active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  border-color: var(--gold);
  color: #1a1405;
}
.vi-gallery--single { grid-template-columns: 1fr; }
@media (max-width: 720px) {
  .mv-tab { padding: 0.5rem 1.1rem; font-size: 0.68rem; }
}

/* Only ONE vehicle panel visible at a time (tabs switch them) */
.vehicle-info[hidden] { display: none !important; }
.footer-credit { font-size: 0.62rem; opacity: 0.45; margin-top: 0.3rem; }
.footer-credit a { text-decoration: underline; }
