/*
Theme Name: CMALOC Ultra Vitrine v4
Theme URI: https://cmaloc.net
Author: CMALOC
Description: Thème vitrine sombre et épuré pour CMALOC – location premium & mobilité écoresponsable à La Réunion.
Version: 1.0.0
Text Domain: cmaloc-ultra
*/

:root {
  /* Palette anthracite + noir profond */
  --bg: #050505;
  --bg-soft: #101010;
  --bg-card: #151515;
  --bg-card-soft: #1b1b1b;

  --border-soft: #2a2a2a;

  --text-main: #f5f5f5;
  --text-muted: #b0b0b0;

  /* Accent discret (blanc cassé) */
  --accent: #ffffff;
  --accent-soft: #d8d8d8;

  /* Typo */
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;

  /* Rayons / ombres */
  --radius-card: 18px;
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.65);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: radial-gradient(circle at 10% 0%, #151515 0, #050505 55%, #000000 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Liens : jamais bleu */
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-soft);
}

/* Layout principal */
.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 16px 80px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5,5,5,0.96), rgba(5,5,5,0.88), transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Conteneur logo + texte dans le header */
.header-inner {
    background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(20,20,20,0.85));
    border-radius: 18px;
    padding: 10px 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.05);
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-main {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.logo-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.main-nav a:hover {
  color: var(--accent);
}
.main-nav a:hover::after {
  width: 100%;
}
/* ===== Logo dans le header ===== */

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Texte du logo (tu peux laisser comme tu avais) */
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-main {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
}
/* Bouton dossier */
.btn-dossier {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(to right, #1f1f1f, #0d0d0d);
  box-shadow: 0 14px 30px rgba(0,0,0,0.7);
}
.btn-dossier:hover {
  border-color: rgba(255,255,255,0.4);
}

/* Burger mobile */
.header-burger {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(10,10,10,0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-burger span {
  width: 16px;
  height: 1px;
  background: #fff;
  position: relative;
}
.header-burger span::before,
.header-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1px;
  background: #fff;
}
.header-burger span::before {
  top: -5px;
}
.header-burger span::after {
  top: 5px;
}

/* HERO Accueil */
.hero {
  padding: 40px 16px 60px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    text-shadow: 0 0 25px rgba(0,0,0,0.8);
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    from { opacity:0; transform: translateY(20px); }
    to   { opacity:1; transform: translateY(0); }
}
.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.18) 0, rgba(0,0,0,0.7) 48%, rgba(0,0,0,0.98) 100%);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero-title {
  font-size: clamp(1.8rem, 4.6vw, 2.6rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: 0.94rem;
  color: var(--text-muted);
  max-width: 460px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero-bullets span::before {
  content: "• ";
  color: var(--accent-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.btn-main {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: linear-gradient(135deg, #1a1a1a, #000000);
  box-shadow: 0 18px 40px rgba(0,0,0,0.85);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.btn-ghost {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.btn-ghost:hover {
  color: var(--accent);
  border-color: rgba(255,255,255,0.3);
}

.hero-note {
  margin-top: 8px;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Bloc visuel M2 */
.hero-visual {
  position: relative;
  border-radius: 30px;
  background: radial-gradient(circle at 20% 0, #444 0, #111 40%, #000 100%);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 240px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 10% 0, rgba(255,255,255,0.2) 0, transparent 45%),
              radial-gradient(circle at 80% 100%, rgba(255,255,255,0.14) 0, transparent 55%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-visual-inner {
  position: relative;
  z-index: 2;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.hero-car-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.hero-car-name {
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 600;
}
.hero-car-specs {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.hero-car-price {
  margin-top: 10px;
  font-size: 0.86rem;
}

/* Section titres génériques */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 16px 64px;
}

.section-title {
  font-size: 1.18rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
}

/* Grilles cartes */
.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Cartes génériques */
.card {
  background: radial-gradient(circle at 0 0, #222 0, #151515 35%, #101010 100%);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
}

.card-title {
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.card-muted {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Cartes véhicules */
.vehicle-card {
  background: radial-gradient(circle at 0 0, #2b2b2b 0, #121212 45%, #050505 100%);
  border-radius: 24px;
  border: 1px solid #262626;
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vehicle-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vehicle-name {
  font-size: 0.96rem;
  font-weight: 600;
}
.vehicle-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.vehicle-specs span {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3px 8px;
}

.vehicle-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vehicle-footer {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
}
.vehicle-price-strong {
  font-weight: 600;
}

/* Tableaux tarifs */
.tarif-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  margin-top: 8px;
}
.tarif-table th,
.tarif-table td {
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tarif-table th {
  text-align: left;
  font-weight: 500;
  color: var(--text-muted);
}

/* Sections texte long */
.text-block {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.text-block h3 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-main);
}
.text-block ul {
  margin-left: 16px;
}
.text-block li {
  margin-bottom: 4px;
}

/* Formulaires */
.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
}

.form-row {
  margin-bottom: 12px;
}
.form-row label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #2d2d2d;
  background: #080808;
  color: var(--text-main);
  font-size: 0.84rem;
}
.form-row textarea {
  min-height: 90px;
  resize: vertical;
}

/* Footer */
.site-footer {
  padding: 26px 16px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle at 0 0, #111 0, #050505 60%, #000 100%);
  color: var(--text-muted);
  font-size: 0.78rem;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 780px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 26px;
  }
  .hero-visual {
    order: -1;
  }
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
  .main-nav {
    display: none;
    position: fixed;
    inset: 56px 16px auto 16px;
    flex-direction: column;
    padding: 16px;
    background: rgba(5,5,5,0.98);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-soft);
  }
  .main-nav.is-open {
    display: flex;
  }
  .header-burger {
    display: flex;
  }
}
/* === SLIDER CMALOC' === */
.hero-gallery {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  border-radius: 0;
}

.hero-gallery-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlider 18s infinite;
}

/* --- Images du slider --- */
.hero-slide-1 {
  background-image: url('IMG_6598.JPG'); /* BMW M2 */
  animation-delay: 0s;
}
.hero-slide-2 {
  background-image: url('IMG_6595.JPG'); /* BMW iX */
  animation-delay: 6s;
}
.hero-slide-3 {
  background-image: url('12D39F5F-3F8F-4F67-A4D3-8685810F64D1.jpeg'); /* Fiat 500e */
  animation-delay: 12s;
}

@keyframes heroSlider {
  0% { opacity: 0; transform: scale(1.02); }
  5% { opacity: 1; transform: scale(1); }
  20% { opacity: 1; transform: scale(1); }
  30% { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.02); }
}

/* Effet luxueux : léger filtre sombre */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-gallery {
    height: 60vh;
  }
}
/* --- Raffinement du menu mobile --- */

nav ul li a {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #00aaff; /* léger accent CMALOC’ */
}

.menu-toggle,
.menu-icon {
  filter: brightness(1.2);
}

.mobile-menu {
  background: rgba(5, 5, 5, 0.92); /* effet vitré premium */
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px;
}

.mobile-menu li {
  margin: 10px 0;
  text-align: center;
}
/* --- Raffinement du menu mobile --- */

nav ul li a {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #00aaff; /* léger accent CMALOC’ */
}

.menu-toggle,
.menu-icon {
  filter: brightness(1.2);
}

.mobile-menu {
  background: rgba(5, 5, 5, 0.92); /* effet vitré premium */
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px;
}

.mobile-menu li {
  margin: 10px 0;
  text-align: center;
}
/* === CATALOGUE : CARTES VÉHICULES (version condensée) === */

.section-catalog-cards {
  padding-top: 2rem;
}

.catalog-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.vehicle-card {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 18px;
  max-width: 520px;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.vehicle-card:hover {
  transform: scale(1.01);
}

.vehicle-card-photo img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.vehicle-card-body {
  padding: 1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vehicle-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin: 0;
}

.vehicle-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

.vehicle-specs {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.9;
}

.vehicle-price {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0.6rem 0 0.3rem;
}

.vehicle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.btn-small {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-link {
  font-size: 0.82rem;
  text-decoration: underline;
  opacity: 0.85;
}

/* Sur écrans larges : 2 ou 3 cartes côte à côte */
@media (min-width: 900px) {
  .catalog-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .vehicle-card {
    flex: 0 1 300px;
  }

  .vehicle-card-photo img {
    height: 180px;
  }
}
/* === HERO GALLERY === */
.hero-gallery {
  position: relative;
  height: 80vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-gallery-inner {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slideHero 18s infinite alternate ease-in-out;
}

.hero-slide {
  flex: 1 0 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
}

/* Tes images personnalisées */
.hero-slide-1 { background-image: url('/wp-content/uploads/m2-bg.webp'); }
.hero-slide-2 { background-image: url('/wp-content/uploads/ix-bg.webp'); }
.hero-slide-3 { background-image: url('/wp-content/uploads/500e-bg.webp'); }

@keyframes slideHero {
  0%   { transform: translateX(0); }
  33%  { transform: translateX(0); }
  66%  { transform: translateX(-100%); }
  100% { transform: translateX(-200%); }
}

/* Option : ajout d’un voile noir semi-transparent pour lisibilité */
.hero-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.85));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.hero-overlay-content {
  color: #fff;
  max-width: 700px;
  padding: 0 1.5rem;
}

.hero-home-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-home-subtitle {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.hero-home-models {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1.8rem;
}
/* ===========================
   HERO ACCUEIL – SLIDER CARS
   =========================== */

.hero-gallery {
  position: relative;
  margin: 40px 0 32px;
  border-radius: 24px;
  overflow: hidden;
  height: 260px;          /* hauteur sur mobile */
  background: #000;
}

@media (min-width: 768px) {
  .hero-gallery {
    height: 360px;        /* un peu plus haut sur desktop */
  }
}

.hero-gallery-inner {
  display: flex;
  width: 300%;            /* 3 slides = 300 % */
  height: 100%;
  animation: heroSlide 18s infinite;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 1 : BMW M2 */
.hero-slide-1 {
  background-image: url('M2Faceavant.jpeg');
}

/* 2 : BMW iX */
.hero-slide-2 {
  background-image: url('iX.JPG');
}

/* 3 : Fiat 500e */
.hero-slide-3 {
  background-image: url('fiat500.JPG');
}

/* Petit dégradé pour que le texte du haut reste lisible */
.hero-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.15)
  );
  pointer-events: none;
}

/* Animation de défilement des 3 images */
@keyframes heroSlide {
  0%   { transform: translateX(0); }
  27%  { transform: translateX(0); }

  33%  { transform: translateX(-100%); }
  60%  { transform: translateX(-100%); }

  66%  { transform: translateX(-200%); }
  93%  { transform: translateX(-200%); }

  100% { transform: translateX(0); }
}
/* =====================
   PAGE TARIFS CMALOC'
   ===================== */

.page-tarifs {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.page-tarifs h1.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.page-tarifs h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.4rem;
}

.page-tarifs ul {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 1.2rem;
}

.page-tarifs li {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.tarifs-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}
/* Mise en page des scénarios */
.card.scenario {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.card.scenario:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.card.scenario .btn {
    display: inline-block;
    margin-top: 8px;
}

.card.scenario-final {
    background: linear-gradient(135deg, #101010, #181818);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
/* === Bouton "Constituer mon dossier" amélioré === */
.btn-scenario {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, #1a1a1a, #000000);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: all 0.25s ease;
}

.btn-scenario:hover {
  background: linear-gradient(135deg, #0045ff, #007bff);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.8);
}

.btn-scenario:active {
  transform: scale(0.97);
  opacity: 0.9;
}

/* Sur mobile : bouton pleine largeur */
@media (max-width: 768px) {
    .btn-scenario {
        width: auto;
        align-self: flex-start;
    }
}
/* Bouton des scénarios : plus discret et proportionné */
.card-scenario .btn-main {
    padding: 5px 14px;          /* moins haut, moins large */
    font-size: 0.65rem;         /* texte un peu plus petit */
    letter-spacing: 0.08em;     /* espacement un peu réduit */
    border-radius: 999px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #161616, #000000);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.25s ease;
}

.card-scenario .btn-main:hover {
  background: linear-gradient(135deg, #0045ff, #007bff);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 768px) {
  .card-scenario .card-title {
    font-size: 0.95rem;
  }
}
/* === CMALOC — Logo Header propre & équilibré === */

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff; /* Fond blanc du cercle */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Assure que le logo ne déborde pas */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Ombre premium */
}

.logo-mark img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}
/* -----------------------------
   CMALOC – Hero dynamique
------------------------------ */

.cmaloc-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
    background-color: #000;
}

.cmaloc-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.cmaloc-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.cmaloc-slide.active {
    opacity: 1;
}

.cmaloc-hero-text {
    position: absolute;
    bottom: 8%;
    left: 8%;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    animation: fadeInUp 1.4s ease;
}

.cmaloc-hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.cmaloc-hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Fade Up */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Effet Apple "Light Sweep" */
.cmaloc-light {
    position: absolute;
    top: 0;
    left: -50%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: sweep 5s infinite linear;
    pointer-events: none;
    mix-blend-mode: screen;
}

@keyframes sweep {
    0% { transform: translateX(-200%); }
    100% { transform: translateX(300%); }
}

/* Mobile */
@media (max-width: 768px) {
    .cmaloc-hero {
        height: 45vh;
    }
    .cmaloc-hero-text h1 {
        font-size: 1.6rem;
    }
    .cmaloc-hero-text p {
        font-size: 1rem;
    }
}
.cmaloc-banner-black {
    position: relative;
    width: 100%;
    height: 60px;
    background: #000;
    overflow: hidden;
}

/* Effet shimmer Apple */
.cmaloc-banner-black::before {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 300%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.04), transparent);
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0%   { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.cmaloc-banner-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.banner-subtitle {
    color: #777;
    opacity: 0.85;
    font-size: 12px;
    margin-top: -3px;
}

/* Mobile */
@media (max-width: 768px) {
    .cmaloc-banner-black { height: 40px; }
    .banner-title { font-size: 13px; }
    .banner-subtitle { font-size: 11px; }
}
.cmaloc-ribbon {
    width: 100%;
    height: 55px;
    overflow: hidden;
    background: #000;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    position: relative;
}

.cmaloc-ribbon-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 60px;
    animation: cmalocScroll 35s linear infinite;
}

.cmaloc-ribbon img {
    height: 45px;
    object-fit: contain;
    opacity: 0.9;
}

@keyframes cmalocScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* --- CMALOC RIBBON (Apple-style thin scrolling text) --- */
.cmaloc-ribbon {
    width: 100%;
    overflow: hidden;
    background: #000; /* fond noir premium */
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cmaloc-ribbon-track {
    display: inline-block;
    white-space: nowrap;
    animation: cmalocScroll 28s linear infinite;
}

.cmaloc-ribbon-track span {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    padding-right: 60px;
    opacity: 0.85;
    letter-spacing: 0.3px;
}

/* Défilement fluide & continu */
@keyframes cmalocScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* --- CMALOC VISION PRO TITANIUM RIBBON --- */

.cmaloc-ribbon {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;

    /* Fond titanium Vision Pro */
    background: linear-gradient(
        90deg,
        rgba(220, 220, 225, 0.18) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(220, 220, 225, 0.18) 100%
    );

    /* Effet verre + profondeur */
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    
    border-bottom: 1px solid rgba(255,255,255,0.10);
    border-top: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.15),
        inset 0 -1px 2px rgba(0,0,0,0.25),
        0 4px 25px rgba(0,0,0,0.45);

    z-index: 9999;
}

/* Le texte défilant version premium */
.cmaloc-ribbon-track {
    display: inline-block;
    white-space: nowrap;
    animation: cmalocTitaniumScroll 26s linear infinite;

    /* Style typographique Vision Pro */
    color: rgba(255,255,255,0.90);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.2px;

    text-shadow:
        0 0 8px rgba(255,255,255,0.45),
        0 0 4px rgba(255,255,255,0.25);

    padding-left: 100%;
}

@keyframes cmalocTitaniumScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Dégradés latéraux pour un effet Apple clean */
.cmaloc-ribbon::before,
.cmaloc-ribbon::after {
    content: "";
    position: absolute;
    top: 0;
    width: 70px;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

/* Fade gauche */
.cmaloc-ribbon::before {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0)
    );
}

/* Fade droite */
.cmaloc-ribbon::after {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0)
    );
}
/* ===========================
   CATALOGUE CMALOC PREMIUM
   =========================== */

.catalogue-wrapper {
    padding: 80px 5%;
    max-width: 1400px;
    margin: auto;
}

.catalogue-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-main);
}

.catalogue-subtitle {
    text-align: center;
    margin-top: 10px;
    color: #d4d4d4;
    font-size: 1.2rem;
}

/* GRID */
.catalogue-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 50px;
}

/* CARD */
.car-card {
    background: rgba(20,20,20,0.75);
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.55);
}

/* IMAGE */
.car-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* CONTENT */
.car-content {
    padding: 25px;
}

.car-content h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: white;
}

.car-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 18px;
    color: black;
    font-weight: 600;
}

.tag-sport { background: #ff5252; }
.tag-electric { background: #00d0ff; }
.tag-daily { background: #a8ff8d; }

/* DETAILS LIST */
.car-details {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    color: #e2e2e2;
    line-height: 1.6;
}

/* DESCRIPTION */
.car-description {
    color: #cfcfcf;
    margin-bottom: 20px;
}

/* PRICE */
.car-price {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #dcdcdc;
}

.car-price strong {
    display: block;
    font-size: 1.8rem;
    color: white;
}

/* BUTTON */
.car-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 14px;
    background: white;
    color: black;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.car-btn:hover {
    background: #e2e2e2;
}
/* ===========================
   TARIFS CMALOC PREMIUM
   =========================== */

.tarifs-wrapper {
    padding: 80px 5%;
    max-width: 1300px;
    margin: auto;
}

.tarifs-hero h1 {
    font-size: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 10px;
}

.tarifs-hero p {
    text-align: center;
    font-size: 1.2rem;
    color: #d4d4d4;
}

/* SECTION TITLE */
.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin: 60px 0 40px;
    color: white;
}

/* CATEGORY GRID */
.tarifs-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CATEGORY CARD */
.tarif-category-card {
    background: rgba(20,20,20,0.75);
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
}

.tarif-category-card h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
}

.category-desc {
    color: #cfcfcf;
    margin-bottom: 15px;
}

.category-list {
    color: #dcdcdc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.category-price strong {
    display: block;
    font-size: 1.5rem;
    margin-top: 10px;
    color: white;
}

/* TABLES */
.tarif-table-block {
    margin-top: 60px;
}

.tarif-table-block h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: white;
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

.tarif-table th {
    background: white;
    color: black;
    padding: 14px 12px;
    text-align: left;
    font-weight: bold;
}

.tarif-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #2a2a2a;
    color: #e4e4e4;
}

.tarif-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.05);
}

/* MOBILE FIX */
@media (max-width: 600px) {
    .tarif-table th, .tarif-table td {
        padding: 12px 8px;
    }
}
/* ===========================
       SERVICES CMALOC
   =========================== */

.services-wrapper {
    padding: 80px 5%;
    max-width: 1300px;
    margin: auto;
}

/* HERO */
.services-hero h1 {
    font-size: 3rem;
    text-align: center;
    color: white;
}

.services-hero p {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 10px;
    color: #d4d4d4;
}

/* SECTION TITLE */
.services-section {
    margin-top: 80px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 600;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* SERVICE CARD */
.service-card {
    background: rgba(20,20,20,0.75);
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}

.service-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 12px;
}

.service-card p {
    color: #cfcfcf;
    line-height: 1.6;
}

/* APP BLOCK */
.service-app-block {
    background: rgba(30,30,30,0.75);
    padding: 40px;
    border-radius: 14px;
    border: 1px solid #2d2d2d;
    max-width: 800px;
    margin: auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.service-app-block p {
    color: #dcdcdc;
    line-height: 1.8;
}
/* ===========================
       À PROPOS CMALOC
   =========================== */

.apropos-wrapper {
    padding: 80px 5%;
    max-width: 1300px;
    margin: auto;
}

.apropos-hero h1 {
    font-size: 3rem;
    text-align: center;
    color: white;
}

.apropos-hero p {
    text-align: center;
    margin-top: 10px;
    color: #d4d4d4;
    font-size: 1.2rem;
}

/* BLOCK */
.apropos-block {
    background: rgba(20,20,20,0.75);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #1f1f1f;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    color: #dcdcdc;
    line-height: 1.8;
}

/* GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    background: rgba(25,25,25,0.7);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.value-card h3 {
    color: white;
    margin-bottom: 12px;
}

.value-card p {
    color: #cfcfcf;
}
/* ===========================
       CONTACT CMALOC
   =========================== */

.contact-wrapper {
    padding: 80px 5%;
    max-width: 1100px;
    margin: auto;
}

.contact-hero h1 {
    font-size: 3rem;
    text-align: center;
    color: white;
}

.contact-hero p {
    text-align: center;
    color: #d4d4d4;
    margin-top: 10px;
}

/* SECTION */
.contact-section {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 780px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}

/* FORM */
.contact-form-container {
    background: rgba(20,20,20,0.75);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid #1f1f1f;
}

.contact-form label {
    color: white;
    margin-top: 20px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    margin-top: 8px;
    background: #111;
    border: 1px solid #333;
    color: white;
}

.contact-btn {
    margin-top: 25px;
    padding: 14px 18px;
    border-radius: 12px;
    background: white;
    color: black;
    font-weight: 600;
    width: 100%;
    border: none;
}

.contact-btn:hover {
    background: #e2e2e2;
}

/* INFOS */
.contact-infos {
    background: rgba(25,25,25,0.75);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
}

.contact-infos h3 {
    color: white;
    margin-bottom: 15px;
}

.contact-infos p {
    color: #cfcfcf;
    margin-bottom: 10px;
}
/* ===========================
       DOSSIER CMALOC (NEW)
   =========================== */

.dossier-hero h1 {
    font-size: 3rem;
    color: white;
    text-align: center;
}

.dossier-hero p {
    text-align: center;
    color: #d4d4d4;
    margin-bottom: 40px;
}

/* SUCCESS MESSAGE */
.dossier-success {
    background: rgba(0,180,70,0.15);
    border: 1px solid #00d556;
    color: #baffc9;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 35px;
}

/* GRID */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media(max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.card {
    background: rgba(20,20,20,0.7);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #1f1f1f;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}

.card-title {
    font-size: 1.9rem;
    margin-bottom: 12px;
    color: white;
}

.card-text, .list {
    color: #dcdcdc;
    line-height: 1.7;
}

.card-subtitle {
    color: white;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* FORM */
.form-label {
    color: white;
    display: block;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    border-radius: 12px;
    background: #111;
    border: 1px solid #333;
    color: white;
}

.btn-primary {
    margin-top: 20px;
    background: white;
    color: black;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 600;
    border: none;
    width: 100%;
}

.btn-primary:hover {
    background: #e2e2e2;
}

.form-note {
    font-size: 0.9rem;
    color: #bfbfbf;
    margin-top: 10px;
}

/* LIST */
.list {
    margin-left: 18px;
}
.list li {
    margin-bottom: 8px;
}
/* ===============================
   Police CMALOC — Pages légales
   =============================== */

.legal-page, .legal-page * {
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.2px;
    line-height: 1.7;
}
/* ===========================
   PAGE LÉGALE CMALOC
   =========================== */

.legal-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 30px;
    background: rgba(20,20,20,0.65);
    border-radius: 16px;
    border: 1px solid #222;
    box-shadow: 0 10px 35px rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
}

.legal-page h1 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 25px;
    color: white;
}

.legal-page h2 {
    font-size: 1.7rem;
    margin-top: 35px;
    color: white;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 20px;
    color: #ededed;
}

.legal-page p,
.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 20px;
}

.legal-page hr {
    border: none;
    border-top: 1px solid #333;
    margin: 25px 0;
}
/* ===========================
   CGV CMALOC
   =========================== */

.legal-page h1 {
    font-size: 2.5rem;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    color: #fff;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    color: #ddd;
}
/* PAGE LEGALE */
.legal-wrapper { 
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    color: #f5f5f5;
}

.legal-container h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.legal-container h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #ffffff;
}

.legal-container p, li {
    line-height: 1.6;
    opacity: 0.9;
}

/* FOOTER */

.footer {
    background: #050505;
    padding: 40px 20px;
    color: #ccc;
    text-align: center;
}

.footer a {
    color: #ffffff;
}

.footer-container {
    max-width: 900px;
    margin: auto;
}

.footer-copy {
    margin-top: 20px;
    opacity: 0.6;
    font-size: 0.9rem;
}
/* ----- STYLE DES PAGES LÉGALES ----- */

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-container {
    background: #111;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Titres */
.legal-container h1 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #fff;
}

.legal-container h2 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #e0e0e0;
}

/* Paragraphes */
.legal-container p {
    line-height: 1.6;
    color: #cfcfcf;
    font-size: 1rem;
}

/* Liens */
.legal-container a {
    color: #7ab8ff;
    text-decoration: none;
    font-weight: 500;
}
.legal-container a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .legal-container {
        padding: 20px;
    }
    .legal-container h1 {
        font-size: 1.7rem;
    }
}
/* WRAPPER GLOBAL */
.tarifs-wrapper, 
.legal-wrapper, 
.dossier-wrapper {
    max-width: 880px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* BULLES PREMIUM (toutes les sections) */
.tarifs-section,
.legal-container,
.dossier-section {
    background: rgba(20,20,20,0.9);
    padding: 28px;
    border-radius: 18px;
    margin-bottom: 28px;
    border: 1.3px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 40px rgba(0,0,0,0.45);
    backdrop-filter: blur(5px);
}

/* TITRES PREMIUM */
h1, h2, h3 {
    font-family: "Inter", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #ffffff;
}

h1 {
    font-size: 2rem;
    margin-bottom: 18px;
}

h2 {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 1.25rem;
    color: #dcdcdc;
}

h3 {
    margin-bottom: 6px;
    font-size: 1.15rem;
    color: #cacaca;
}

/* PARAGRAPHES PREMIUM */
p, li {
    color: #c8c8c8;
    font-size: 0.98rem;
    line-height: 1.55;
    font-family: "Inter", sans-serif;
}

/* LISTES */
ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

li {
    margin-bottom: 4px;
}

/* FORMULAIRES (Dossier) */
input, textarea, select {
    width: 100%;
    background: #0f0f0f;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 8px;
    font-size: 0.95rem;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

input:focus, textarea:focus, select:focus {
    border-color: #666;
}

/* BOUTON PREMIUM */
button,
input[type="submit"] {
    background: linear-gradient(135deg, #1d1d1d, #2a2a2a);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: "Inter", sans-serif;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: 0.25s ease;
}

button:hover,
input[type="submit"]:hover {
    background: #3a3a3a;
    transform: translateY(-1px);
}

/* BLOCS CONTACT PREMIUM */
.contact-block {
    background: rgba(18,18,18,0.85);
    padding: 18px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.07);
    font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 600px) {
    .tarifs-section,
    .legal-container,
    .dossier-section {
        padding: 22px;
        border-radius: 14px;
    }

    h1 {
        font-size: 1.6rem;
    }

    p, li {
        font-size: 0.95rem;
    }

    input, textarea, select {
        font-size: 0.92rem;
    }
}