:root {
  --black: #030303;
  --black-soft: #070707;
  --anthracite: #111214;
  --anthracite-light: #1b1d20;
  --gray: #8e8e8e;
  --light-gray: #e8e8e8;
  --white: #ffffff;
  --soft: #f4f4f4;
  --line-dark: rgba(255,255,255,0.12);
  --line-light: rgba(0,0,0,0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: white;
  color: black;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 92px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 3, 3, 0.76);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 50;
  transition: 0.35s ease;
}

.header.scrolled {
  height: 78px;
  background: rgba(3, 3, 3, 0.94);
}

.logo img {
  height: 58px;
  width: auto;
  display: block;
}

nav a {
  margin: 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #d6d6d6;
  font-weight: 700;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: white;
  transition: 0.3s ease;
}

nav a:hover {
  color: white;
}

nav a:hover::after {
  width: 100%;
}

.call-btn {
  padding: 13px 22px;
  border: 1px solid white;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 700;
  transition: 0.25s ease;
}

.call-btn:hover {
  background: white;
  color: black;
}

.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 6% 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("hero.jpg") center/cover no-repeat;
  opacity: 0.32;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(255,255,255,0.09), transparent 26%),
    linear-gradient(to right, rgba(0,0,0,0.94), rgba(0,0,0,0.42)),
    linear-gradient(to top, rgba(0,0,0,0.94), rgba(0,0,0,0.08));
}

.hero-glow {
  position: absolute;
  top: 18%;
  right: 4%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255,255,255,0.045);
  filter: blur(55px);
}

.hero-visual {
  position: absolute;
  top: 120px;
  right: 6%;
  width: 45%;
  height: 55%;
  opacity: 0.9; /* plus visible */
  filter: none; /* enlève le flou */
}



@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  max-width: 980px;
  z-index: 3;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 800;
  margin-bottom: 20px;
}

.center { text-align: center; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(86px, 12vw, 178px);
  line-height: 0.78;
  letter-spacing: -6px;
  text-shadow: 0 30px 70px rgba(0,0,0,0.75);
}

.subtitle {
  margin-top: 24px;
  font-size: clamp(24px, 3vw, 42px);
  color: #e6e6e6;
  font-family: "Cormorant Garamond", serif;
}

.hero-buttons {
  margin-top: 42px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 30px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid white;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn.light {
  background: white;
  color: black;
}

.btn.ghost {
  background: transparent;
  color: white;
}

.btn.dark {
  background: black;
  color: white;
  border-color: black;
}

.btn.light-map {
  background: white;
  color: black;
  border-color: white;
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.86;
}

.hero-info {
  position: absolute;
  bottom: 40px;
  right: 6%;
  z-index: 4;
  display: flex;
  gap: 36px;
  background: rgba(0,0,0,0.68);
  padding: 22px 30px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}

.hero-info span {
  display: block;
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 7px;
}

.hero-info strong {
  font-size: 14px;
  color: white;
}

.cinema {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: black;
}

.cinema img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.88), transparent 55%),
    linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

.cinema-text {
  position: absolute;
  left: 6%;
  bottom: 80px;
  z-index: 2;
  max-width: 720px;
}

.cinema-text h2 {
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.9;
}

.section {
  padding: 120px 6%;
  background: var(--white);
  color: var(--black);
}

.center-title {
  text-align: center;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.92;
  margin-bottom: 74px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #111;
  border-left: 1px solid #111;
}

.service-card {
  min-height: 350px;
  padding: 52px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  background: white;
  transition: 0.35s ease;
}

.service-card:hover {
  background: #f1f1f1;
  transform: translateY(-10px);
}

.service-card span {
  color: #777;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 52px;
  font-size: 36px;
  line-height: 0.95;
}

.service-card p {
  margin-top: 22px;
  line-height: 1.75;
  color: #444;
}

.vehicles {
  padding: 125px 6%;
  background: var(--anthracite);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  align-items: center;
}

.vehicle-text h2 {
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.88;
}

.vehicle-text p {
  margin-top: 30px;
  color: #cfcfcf;
  line-height: 1.9;
  max-width: 560px;
  font-size: 17px;
}

.vehicle-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vehicle-gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.35s ease;
}

.vehicle-gallery img:hover {
  transform: scale(1.025);
}

.vehicle-gallery img:first-child {
  grid-column: span 2;
  height: 430px;
}

.reviews {
  padding: 120px 0;
  background: #f5f5f5;
  color: var(--black);
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 24px;
  padding: 0 6%;
  animation: slideReviews 46s linear infinite;
}

.review-track:hover {
  animation-play-state: paused;
}

.review {
  min-width: 395px;
  background: white;
  border: 1px solid #ddd;
  padding: 40px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.review:hover {
  transform: scale(1.045);
}

.stars {
  letter-spacing: 4px;
  color: #111;
  font-size: 14px;
}

.review h3 {
  margin-top: 24px;
  font-size: 34px;
}

.review p {
  margin-top: 16px;
  color: #333;
  line-height: 1.8;
}

@keyframes slideReviews {
  from { transform: translateX(0); }
  to { transform: translateX(-65%); }
}

.booking {
  padding: 120px 6%;
  background: white;
  color: black;
}

form {
  max-width: 920px;
  margin: auto;
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input, textarea {
  width: 100%;
  padding: 19px;
  border: 1px solid #111;
  background: white;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

form button {
  justify-self: center;
  margin-top: 18px;
}

.map-section {
  padding: 105px 6%;
  background: var(--anthracite-light);
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 50px;
  align-items: center;
}

.map-section h2 {
  font-size: 62px;
}

.map-section p {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 30px;
}

.map-section iframe {
  width: 100%;
  height: 440px;
  border: 0;
  filter: grayscale(100%) contrast(1.05);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  background: white;
  color: black;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

footer {
  padding: 54px 6%;
  background: #030303;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

footer h3 {
  font-size: 36px;
}

footer p {
  margin-top: 8px;
  color: #cfcfcf;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  nav a {
    margin: 0 7px;
    font-size: 11px;
  }

  .hero-visual {
    width: 38%;
  }
}

@media (max-width: 950px) {
  .header {
    position: static;
    height: auto;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
  }

  nav {
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 7px;
  }

  .hero {
    min-height: 86vh;
    padding-bottom: 60px;
  }

  .hero-visual {
    display: none;
  }

  .hero-info {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
    flex-direction: column;
    gap: 18px;
  }

  .hero-content {
    margin-bottom: 0;
  }

  .services-grid,
  .vehicles,
  .map-section,
  .form-row,
  footer {
    grid-template-columns: 1fr;
  }

  .vehicle-gallery {
    grid-template-columns: 1fr;
  }

  .vehicle-gallery img:first-child {
    grid-column: span 1;
  }

  .review {
    min-width: 315px;
  }

  h1 {
    letter-spacing: -3px;
  }

  .cinema,
  .cinema img {
    height: 520px;
    min-height: 520px;
  }
}
/* =========================
   PAGE À PROPOS — ULTRA PRO
========================= */

.about-hero {
  min-height: 100vh;
  position: relative;
  padding: 180px 6% 110px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #030303;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url("voitures-nuit.jpg") center/cover no-repeat;
  opacity: 0.36;
  transform: scale(1.05);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0.38)),
    linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.about-hero h1 {
  font-size: clamp(64px, 9vw, 138px);
  line-height: 0.82;
  letter-spacing: -5px;
}

.about-hero p:not(.tag) {
  max-width: 720px;
  margin-top: 30px;
  color: #e1e1e1;
  font-size: 19px;
  line-height: 1.85;
}

.about-hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about-story {
  padding: 130px 6%;
  background: #f4f4f4;
  color: #030303;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-story h2 {
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.9;
  letter-spacing: -2px;
}

.about-story-text p:not(.tag) {
  margin-top: 28px;
  color: #333;
  line-height: 1.9;
  font-size: 17px;
}

.about-story-text strong {
  color: #000;
}

.about-quote {
  background: #030303;
  color: white;
  padding: 56px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.about-quote span {
  font-family: "Cormorant Garamond", serif;
  font-size: 110px;
  line-height: 0.5;
  color: #777;
}

.about-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  margin-top: 18px;
}

.about-quote strong {
  margin-top: 30px;
  color: #cfcfcf;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.about-team {
  background: #030303;
  color: white;
  padding: 120px 6%;
  display: grid;
  gap: 80px;
}

.team-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.team-card.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.team-card.reverse .team-image {
  order: 2;
}

.team-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255,255,255,0.14);
}

.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.55), transparent),
    linear-gradient(to right, rgba(0,0,0,0.22), transparent);
}

.team-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: 0.55s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.045);
}

.team-content h2 {
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.85;
}

.team-content p:not(.tag) {
  margin-top: 30px;
  color: #d4d4d4;
  line-height: 1.9;
  font-size: 17px;
  max-width: 690px;
}

.team-content blockquote {
  margin-top: 34px;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,0.35);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.15;
  color: white;
}

.about-values {
  padding: 120px 6%;
  background: white;
  color: black;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #111;
  border-left: 1px solid #111;
}

.value-card {
  min-height: 330px;
  padding: 48px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  background: white;
  transition: 0.35s ease;
}

.value-card:hover {
  background: #f1f1f1;
  transform: translateY(-8px);
}

.value-card span {
  color: #777;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
}

.value-card h3 {
  margin-top: 52px;
  font-size: 36px;
  line-height: 0.95;
}

.value-card p {
  margin-top: 22px;
  color: #444;
  line-height: 1.75;
}

.about-testimonials {
  padding: 120px 6%;
  background: #f5f5f5;
  color: #030303;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quote-card {
  background: white;
  border: 1px solid #ddd;
  padding: 42px;
  min-height: 310px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.quote-card:hover {
  transform: translateY(-8px);
}

.quote-card p {
  margin-top: 24px;
  color: #333;
  line-height: 1.8;
  font-size: 17px;
}

.quote-card strong {
  display: block;
  margin-top: 26px;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.about-cta {
  min-height: 520px;
  padding: 120px 6%;
  background:
    linear-gradient(to right, rgba(0,0,0,0.92), rgba(0,0,0,0.45)),
    url("interieur.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
}

.about-cta h2 {
  max-width: 900px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.9;
}

@media (max-width: 950px) {
  .about-hero {
    min-height: 85vh;
    padding-top: 100px;
  }

  .about-story,
  .team-card,
  .team-card.reverse,
  .values-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .team-card.reverse .team-image {
    order: 0;
  }

  .team-image,
  .team-image img {
    min-height: 420px;
    height: 420px;
  }

  .about-quote {
    min-height: auto;
    padding: 38px;
  }

  .value-card {
    min-height: auto;
  }
}
/* =========================
   PAGE RESERVATION
========================= */

.reservation-page {
  min-height: 90vh;
  position: relative;
  padding: 160px 6% 100px;
  display: flex;
  align-items: flex-end;
  background: #030303;
  overflow: hidden;
}

.reservation-bg {
  position: absolute;
  inset: 0;
  background: url("routewhite.jpeg") center/cover no-repeat;
  opacity: 0.0; /* moins agressif */
  transform: none;
}

.reservation-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 35%, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(to right, rgba(0,0,0,0.96), rgba(0,0,0,0.42)),
    linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.reservation-intro {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.reservation-intro h1 {
  font-size: clamp(70px, 10vw, 145px);
  line-height: 0.78;
  letter-spacing: -5px;
}

.reservation-intro p:not(.tag) {
  margin-top: 28px;
  color: #ddd;
  font-size: 18px;
  line-height: 1.85;
  max-width: 680px;
}

.booking-page {
  padding: 120px 6%;
  background: white;
  color: black;
}

.booking-page form {
  position: relative;
  max-width: 960px;
  margin: auto;
  display: grid;
  gap: 18px;
  background: rgba(255,255,255,0.96);
  padding: 46px;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 35px 90px rgba(0,0,0,0.14);
  overflow: hidden;
}

.booking-page form::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.07), transparent);
  animation: luxuryShine 5s infinite;
  pointer-events: none;
}

@keyframes luxuryShine {
  0% { left: -120%; }
  45% { left: 130%; }
  100% { left: 130%; }
}

.booking-page input,
.booking-page textarea,
.booking-page select {
  width: 100%;
  padding: 19px;
  border: 1px solid #111;
  background: white;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: 0.25s ease;
}

.booking-page input:focus,
.booking-page textarea:focus,
.booking-page select:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

.booking-page textarea {
  min-height: 160px;
  resize: vertical;
}

.position-note {
  text-align: center;
  margin-top: 10px;
  color: #777;
  font-size: 14px;
}

.reservation-help {
  padding: 100px 6%;
  background: #111214;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  color: white;
}

.reservation-help div {
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.3s ease;
}

.reservation-help div:hover {
  transform: translateY(-8px);
  background: #1b1d20;
}

.reservation-help span {
  font-size: 14px;
  color: #888;
  letter-spacing: 2px;
}

.reservation-help h3 {
  margin-top: 22px;
  font-size: 34px;
}

.reservation-help p {
  margin-top: 15px;
  color: #ccc;
  line-height: 1.7;
}

@media (max-width: 950px) {
  .reservation-page {
    min-height: 80vh;
    padding-top: 100px;
  }

  .reservation-intro h1 {
    font-size: 64px;
    letter-spacing: -2px;
  }

  .booking-page form {
    padding: 28px;
  }

  .form-row,
  .reservation-help {
    grid-template-columns: 1fr;
  }
}