/* ============== TOKENS ============== */
:root {
  --bg: #0a0a0c;
  --bg-soft: #111114;
  --bg-card: #15151a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f1ea;
  --text-dim: #a8a39a;
  --text-mute: #6f6a62;
  --gold: #caa45a;
  --gold-soft: #e6c98a;
  --gold-deep: #8a6f33;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.4rem; }

p { margin: 0; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
}

.accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 50%, var(--gold-deep));
  color: #1a1408;
  box-shadow: 0 10px 30px -10px rgba(202, 164, 90, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(202, 164, 90, 0.6);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}
.btn-link {
  color: var(--text-dim);
  padding: 0.5rem 0;
  border-radius: 0;
}
.btn-link:hover { color: var(--gold); }

/* ============== NAV ============== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 10, 12, 0.85);
  border-bottom-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  transition: all 0.5s var(--ease);
}
.brand-mark svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 10px rgba(202, 164, 90, 0.35));
  transition: transform 0.6s var(--ease);
}
.brand:hover .brand-mark svg {
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 6px 14px rgba(202, 164, 90, 0.55));
}
.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.brand-text span { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 6rem clamp(1.2rem, 4vw, 3rem) 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(202, 164, 90, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(80, 100, 200, 0.12), transparent 60%),
    linear-gradient(180deg, #0a0a0c 0%, #0e0e12 100%);
  z-index: -2;
}
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}
.hero-bg::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(202, 164, 90, 0.35), transparent 70%);
  top: -10%; left: -8%;
}
.hero-bg::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(60, 80, 160, 0.25), transparent 70%);
  bottom: -15%; right: -10%;
  animation-delay: -8s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, transparent 0, transparent 80px, rgba(255,255,255,0.015) 81px, transparent 82px);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  max-width: 920px;
  text-align: center;
  animation: fadeUp 1.1s var(--ease) both;
}
.hero-content .eyebrow { display: inline-block; }
.hero-content h1 { margin-bottom: 1.5rem; }
.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.lead strong { color: var(--text); font-weight: 500; }

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.hero-bullets li { display: flex; align-items: center; gap: 0.5rem; }
.hero-bullets span { color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============== SECTIONS ============== */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3rem);
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.section-sub {
  color: var(--text-dim);
  margin-top: 1.2rem;
  font-size: 1.05rem;
}

/* ============== SERVICES ============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.service-card {
  position: relative;
  padding: 2.2rem 1.8rem;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(202, 164, 90, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(202, 164, 90, 0.08);
  color: var(--gold);
  margin-bottom: 1.4rem;
  border: 1px solid rgba(202, 164, 90, 0.2);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 0.6rem; color: var(--text); }
.service-card p { color: var(--text-dim); font-size: 0.95rem; }

/* ============== VEHICULE ============== */
.vehicle {
  background: linear-gradient(180deg, transparent, rgba(202, 164, 90, 0.025), transparent);
}
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.vehicle-text p { color: var(--text-dim); margin-top: 1.2rem; max-width: 480px; }
.specs {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 480px;
}
.specs li {
  border-left: 1px solid var(--gold);
  padding-left: 1rem;
}
.specs strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text);
}
.specs span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-top: 0.2rem;
}

.vehicle-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.vehicle-card {
  position: relative;
  width: 100%;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.vehicle-glow {
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, var(--gold) 90deg, transparent 180deg, transparent 270deg, var(--gold) 360deg);
  opacity: 0.15;
  animation: rotate 12s linear infinite;
  z-index: 0;
}
.vehicle-card > * { position: relative; z-index: 1; }
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.vehicle-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
}
.vehicle-caption {
  text-align: center;
  margin-top: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ============== GALLERY ============== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-card);
  cursor: zoom-in;
  isolation: isolate;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.9) brightness(0.85);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 12, 0.85) 100%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.5s var(--ease);
}
.gallery-item figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  transform: translateY(6px);
  opacity: 0.92;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.gallery-item figcaption::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.6rem;
  transition: width 0.5s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) brightness(0.95);
}
.gallery-item:hover::after { opacity: 0.45; }
.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.gallery-item:hover figcaption::before { width: 32px; }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* Fallback si une photo ne charge pas */
.gallery-item.img-fallback,
.vehicle-card.img-fallback {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(202, 164, 90, 0.25), transparent 60%),
    linear-gradient(135deg, #1a1c22 0%, #0a0a0c 100%);
}
.gallery-item.img-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(202,164,90,0.04) 8px 16px);
}
.gallery-item.img-fallback figcaption {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item--tall { grid-row: span 2; }
  .gallery-item--wide { grid-column: span 2; }
}
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item--tall, .gallery-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}

/* ============== BOOKING ============== */
.booking {
  position: relative;
}
.booking-form {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.field .optional { text-transform: none; letter-spacing: 0.04em; color: var(--text-mute); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  transition: all 0.3s var(--ease);
  font-size: 0.95rem;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-mute);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(202, 164, 90, 0.1);
}
.field input:invalid:not(:placeholder-shown) {
  border-color: rgba(220, 80, 80, 0.4);
}
.field textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.field select option { background: var(--bg-card); color: var(--text); }
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) hue-rotate(15deg) saturate(2);
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--gold);
  min-height: 1.4em;
}
.form-note.error { color: #ff8a80; }
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.legal {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 0.5rem;
}

/* ============== CONTACT ============== */
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(202, 164, 90, 0.15), transparent 60%),
    linear-gradient(135deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-card p { color: var(--text-dim); margin-top: 1rem; }
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ============== FOOTER ============== */
.footer {
  border-top: 1px solid var(--line);
  margin-top: 4rem;
  padding: 3rem clamp(1.2rem, 4vw, 3rem);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin: 0;
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--text-mute);
  margin: 0;
}
.footer-info {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-info p { margin: 0.2rem 0; }
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-align: right;
}
.footer-credit {
  grid-column: 1 / -1;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}
.credit-line {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.agilecorp-link {
  --agc-red: #e54d3a;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(229, 77, 58, 0.25);
  background: rgba(229, 77, 58, 0.04);
  color: var(--agc-red);
  transition: all 0.4s var(--ease);
}
.agilecorp-mark {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.agilecorp-mark svg {
  width: 30px; height: 30px;
  transition: transform 0.6s var(--ease);
}
.agilecorp-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-align: left;
}
.agc-word {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  display: inline-flex;
}
.agc-agile { color: #f4f1ea; }
.agc-corp { color: var(--agc-red); margin-left: 0.18em; }
.agilecorp-wordmark em {
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-top: 0.3rem;
  text-transform: lowercase;
}
.agilecorp-link:hover {
  border-color: var(--agc-red);
  background: rgba(229, 77, 58, 0.1);
  box-shadow: 0 8px 24px -10px rgba(229, 77, 58, 0.5);
}
.agilecorp-link:hover .agilecorp-mark svg {
  transform: translateY(-2px) scale(1.08);
}

/* ============== FAB WHATSAPP ============== */
.fab-whatsapp {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.6);
  z-index: 90;
  transition: transform 0.3s var(--ease);
  animation: pulse 2.4s ease-in-out infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.08);
}
@keyframes pulse {
  0% { box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============== COOKIE BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 110;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(15, 15, 18, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.6);
  padding: 1.2rem 1.4rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.cookie-banner[data-visible="true"] {
  transform: translateY(0);
  opacity: 1;
}
.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
}
.cookie-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.cookie-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.55;
}
.cookie-more {
  display: inline;
  margin-left: 0.3rem;
  padding: 0;
  font: inherit;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}
.cookie-more:hover { color: var(--gold-soft); }
.cookie-details {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.cookie-details p { margin: 0 0 0.55rem; }
.cookie-details p:last-child { margin-bottom: 0; }
.cookie-details strong { color: var(--text); font-weight: 500; }
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.7rem 1.3rem;
  font-size: 0.85rem;
}
.footer-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-mute);
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link:hover { color: var(--gold); }

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0.6rem;
    left: 0.6rem;
    right: 0.6rem;
    padding: 1rem;
  }
  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
  /* Évite que le FAB WhatsApp masque la bannière */
  .cookie-banner[data-visible="true"] ~ .fab-whatsapp { transform: translateY(-90px); }
}

/* ============== REVEAL ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .vehicle-grid { grid-template-columns: 1fr; gap: 3rem; }
  .specs { max-width: 100%; }
  .contact-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .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); }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(10, 10, 12, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    gap: 1.2rem;
  }
  .booking-form { grid-template-columns: 1fr; }
  .hero-bullets { gap: 1rem; flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .specs { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
