:root {
  --black: #0D0D0D;
  --black2: #111111;
  --dark: #161616;
  --darker: #0a0a0a;
  --gold: #D4AF37;
  --gold2: #f0cc55;
  --gold-dim: rgba(212,175,55,0.15);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(212,175,55,0.18);
  --white: #ffffff;
  --grey: #aaaaaa;
  --grey2: #666;
  --radius: 20px;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: auto;
}

/* Supprime curseur personnalisé */
.cursor, .cursor-ring {
  display: none !important;
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-curtain-top, .loader-curtain-bot {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: #000000;
  z-index: 2;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.loader-curtain-top {
  top: 0;
  transform-origin: top;
}

.loader-curtain-bot {
  bottom: 0;
  transform-origin: bottom;
}

#loader.split .loader-curtain-top {
  transform: translateY(-100%);
}

#loader.split .loader-curtain-bot {
  transform: translateY(100%);
}

.loader-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, rgba(0,0,0,0.18) 3px, rgba(0,0,0,0.18) 4px);
  opacity: 0.5;
}

.loader-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, rgba(0,0,0,0.8) 100%);
}

.loader-center {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transform: scale(0.95);
}

#loader.content-in .loader-center {
  animation: contentReveal 0.8s 0.1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes contentReveal {
  0% { opacity: 0; transform: scale(0.9) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.loader-ring-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.loader-ring-svg {
  position: absolute;
  inset: 0;
  animation: spinRing 2.4s linear infinite;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.loader-ring-inner {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12), rgba(0,0,0,0.5));
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.loader-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 10px;
}

.loader-brand-gold {
  color: var(--gold);
}

.loader-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.6);
  margin-top: 12px;
  opacity: 0;
  animation: fadeInTagline 0.6s 0.9s forwards;
}

@keyframes fadeInTagline {
  to { opacity: 1; }
}

.loader-bar-wrap {
  margin-top: 36px;
  width: 240px;
  height: 2px;
  background: rgba(212,175,55,0.15);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.loader-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #fff, var(--gold));
  border-radius: 4px;
}

.loader-pct {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(212,175,55,0.5);
  margin-top: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-auth {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-signin {
  padding: 9px 22px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-signin:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-signin svg {
  width: 16px;
  height: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* HERO MODERN */
.hero-modern {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.1);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 1;
}

.hero-content-modern {
  position: relative;
  z-index: 5;
  max-width: 650px;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.18);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
  border: 1px solid rgba(212,175,55,0.3);
}

.hero-title-modern {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: 24px;
}

.hero-title-modern span {
  color: var(--gold);
  font-style: italic;
}

.hero-description-modern {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons-modern {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-premier {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

.btn-premier:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

.btn-second-modern {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.4);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-second-modern:hover {
  border-color: var(--gold);
  color: var(--gold);
  gap: 12px;
}

.hero-stats-modern {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat-item-modern {
  text-align: left;
}

.stat-number-modern {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-label-modern {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.section-title .gold {
  color: var(--gold);
}

section {
  padding: 100px 5%;
  position: relative;
}

section:nth-child(odd) {
  background: var(--dark);
}

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 5%;
  background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.02));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* CARS SECTION */
#cars {
  overflow: hidden;
}

.car-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.car-tab {
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--grey);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.car-tab.active, .car-tab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(212,175,55,0.25);
}

.cars-scroll-wrap {
  position: relative;
}

.cars-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0 30px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cars-scroll::-webkit-scrollbar {
  display: none;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(10px);
}

.scroll-btn:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.scroll-btn.left {
  left: -22px;
}

.scroll-btn.right {
  right: -22px;
}

.car-card {
  min-width: 280px;
  max-width: 280px;
  background: rgba(20,20,28,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: all 0.4s cubic-bezier(0.2,0.9,0.4,1.1);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 35px -12px rgba(212,175,55,0.2);
}

.car-img-wrap {
  height: 170px;
  overflow: hidden;
  background: #0f0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.car-card:hover .car-img-wrap img {
  transform: scale(1.05);
}

.car-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.car-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(212,175,55,0.2);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

.car-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.car-specs {
  display: flex;
  gap: 12px;
  color: var(--grey);
  font-size: 0.7rem;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.car-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}

.car-price span {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--grey);
}

.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn-book:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

/* HOW IT WORKS */
#how {
  padding: 100px 5%;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(212,175,55,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gold-dim);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.step-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-desc {
  color: var(--grey);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* WHY CHOOSE US */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-benefit-card {
  background: rgba(18,18,24,0.7);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(212,175,55,0.2);
  transition: all 0.3s;
  cursor: default;
}

.why-benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(25,25,32,0.85);
  box-shadow: 0 12px 25px -10px rgba(0,0,0,0.4);
}

.why-icon-large {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-text-modern {
  font-weight: 600;
  font-size: 1rem;
  color: #eee;
  letter-spacing: -0.2px;
}

.deco-stars-row {
  display: inline-flex;
  gap: 6px;
  background: rgba(212,175,55,0.12);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 12px;
  border: 1px solid rgba(212,175,55,0.25);
}

/* CONTACT */
#contact {
  padding: 100px 5%;
}

/* FOOTER */
footer {
  background: var(--darker);
  border-top: 1px solid var(--glass-border);
  padding: 70px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 14px;
}

.footer-desc {
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold);
  color: #000;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--grey);
  font-size: 0.85rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--grey2);
  font-size: 0.8rem;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 800;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: waBounce 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(22,22,22,0.98), rgba(13,13,13,0.98));
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 16px 24px;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1rem;
  flex-shrink: 0;
}

.toast-text {
  font-weight: 500;
  font-size: 0.9rem;
}

/* MODALS */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: linear-gradient(135deg, rgba(22,22,22,0.98), rgba(13,13,13,0.98));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 44px;
  width: min(460px, 90vw);
  animation: modalIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--grey);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.modal-close:hover {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-sub {
  color: var(--grey);
  font-size: 0.88rem;
}

.social-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
  transform: translateY(-2px);
}

/* Facebook button en or */
.social-btn.facebook {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: #000 !important;
  border: none !important;
}

.divider-or {
  text-align: center;
  color: var(--grey2);
  font-size: 0.8rem;
  margin: 16px 0;
  position: relative;
}

.divider-or::before,
.divider-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--glass-border);
}

.divider-or::before {
  left: 0;
}

.divider-or::after {
  right: 0;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-input::placeholder {
  color: var(--grey2);
}

.btn-auth {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: none;
  border-radius: 12px;
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.btn-auth:hover {
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
  transform: translateY(-2px);
}

.auth-switch {
  text-align: center;
  color: var(--grey);
  font-size: 0.82rem;
  margin-top: 16px;
}

.auth-switch a {
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
}

/* BOOKING MODAL */
.booking-modal .modal-box {
  width: min(520px, 92vw);
}

.car-preview {
  background: rgba(212,175,55,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.car-preview-img {
  width: 80px;
  height: 50px;
  object-fit: contain;
}

.car-preview-info .car-preview-name {
  font-weight: 700;
  font-size: 1rem;
}

.car-preview-info .car-preview-price {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* CACHE FEATURED */
#featured,
.featured-cars,
section#featured,
.featured-grid,
.nav-links li:nth-child(3),
.nav-links a[href="#featured"] {
  display: none !important;
}

/* ===== RESPONSIVE BOOKING MODAL POUR TOUS LES TÉLÉPHONES ===== */
@media (max-width: 768px) {
  .booking-modal .modal-box {
    width: 95% !important;
    padding: 20px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }
  
  .modal-title {
    font-size: 1.4rem !important;
  }
  
  .modal-sub {
    font-size: 0.8rem !important;
  }
  
  .car-preview {
    flex-direction: row !important;
    gap: 12px !important;
    padding: 12px !important;
  }
  
  .car-preview-img {
    width: 70px !important;
    height: 50px !important;
  }
  
  .form-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  .form-group {
    width: 100% !important;
    margin-bottom: 12px !important;
  }
  
  .form-label {
    font-size: 0.7rem !important;
  }
  
  .form-input {
    font-size: 16px !important;
    padding: 10px 14px !important;
  }
  
  .btn-auth {
    padding: 12px !important;
    font-size: 0.9rem !important;
  }
  
  .modal-close {
    top: 12px !important;
    right: 12px !important;
    width: 30px !important;
    height: 30px !important;
  }
}

/* Pour très petits téléphones (moins de 400px) */
@media (max-width: 400px) {
  .booking-modal .modal-box {
    width: 98% !important;
    padding: 15px !important;
  }
  
  .car-preview {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .car-preview-img {
    width: 80px !important;
    height: 60px !important;
  }
  
  .modal-title {
    font-size: 1.2rem !important;
  }
  
  .form-input {
    font-size: 14px !important;
    padding: 8px 12px !important;
  }
}

/* Fix pour empêcher le zoom sur les inputs iOS */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 16px 5%;
  }
  .nav-links, .nav-auth {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
  section {
    padding: 60px 4% !important;
  }
  .cars-scroll-wrap .scroll-btn {
    display: none;
  }
  .cars-scroll {
    overflow-x: auto;
  }
  .car-card {
    min-width: 260px;
  }
  .hero-content-modern {
    text-align: center;
    max-width: 100%;
  }
  .hero-description-modern {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons-modern {
    justify-content: center;
  }
  .hero-stats-modern {
    justify-content: center;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .car-tab {
    padding: 6px 16px;
    font-size: 0.7rem;
  }
  .why-benefit-card {
    padding: 1rem;
  }
  .why-icon-large {
    font-size: 1.6rem;
  }
  .why-text-modern {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .car-tab {
    padding: 6px 16px;
    font-size: 0.7rem;
  }
  .car-card {
    min-width: 240px;
  }
  .why-benefit-card {
    padding: 1rem !important;
  }
  .why-icon-large {
    font-size: 1.6rem;
  }
  .why-text-modern {
    font-size: 0.85rem;
  }
  .footer-logo {
    font-size: 1.4rem;
  }
  .nav-logo {
    font-size: 1.2rem;
  }
  .btn-signin {
    padding: 6px 14px;
    font-size: 0.7rem;
  }
}

@media (min-width: 1920px) {
  .container, section {
    max-width: 1600px;
    margin: 0 auto;
  }
}

/* OPTIMISATION IMAGES FAST LOAD */
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.car-img-wrap {
  background: #0a0a0a;
  min-height: 170px;
}

.car-img-wrap img {
  transition: transform 0.2s ease-out;
}

.car-card:hover .car-img-wrap img {
  transform: scale(1.03);
}

.hero-background {
  content-visibility: auto;
}

/* SCROLLBAR GOLD */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}