/* ==========================================================================
   SOLUTION AUTOMOBILE - DESIGN SYSTEM & LUXURY STYLE (VERSION ORIGINELLE)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #235c48;
  --color-primary-bright: #2a7258;
  --color-primary-hover: #1c4b3a;
  --color-gold: #d4af37;
  --color-gold-light: #f3e5ab;
  --bg-main: #0a0d0c;
  --bg-card: #121815;
  --bg-card-hover: #18221c;
  --bg-glass: rgba(18, 24, 21, 0.75);
  --border-glass: rgba(42, 114, 88, 0.25);
  --border-gold: rgba(212, 175, 55, 0.3);
  --text-main: #f8faf9;
  --text-muted: #9aa8a2;
  --text-dim: #6c7c75;
  --transition-smooth: all 0.3s ease;
  --shadow-lux: 0 15px 35px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(42, 114, 88, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px; /* Restauration de l'échelle d'origine */
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.04em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px; /* Largeur standard de la première version */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Top VIP Bar --- */
.top-bar {
  background-color: #050706;
  border-bottom: 1px solid rgba(42, 114, 88, 0.15);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  width: 13px;
  height: 13px;
  color: var(--color-primary-bright);
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

.lang-btn.active, .lang-btn:hover {
  color: var(--color-gold);
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 13, 12, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px; /* Hauteur d'origine */
}

.brand-logo img {
  max-height: 150px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: var(--transition-smooth);
}

.brand-logo:hover img {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-bright), var(--color-gold));
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-smooth);
}

/* --- Buttons System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  border: none;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-bright), var(--color-primary));
  color: #fff;
  box-shadow: 0 4px 15px rgba(35, 92, 72, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #328667, var(--color-primary-bright));
  box-shadow: 0 6px 20px rgba(42, 114, 88, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.04);
  transform: translateY(-1px);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 3.5rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroZoom 18s infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,13,12,0.75) 0%, rgba(10,13,12,0.55) 50%, rgba(10,13,12,0.92) 100%),
              radial-gradient(circle at 70% 30%, rgba(35,92,72,0.25) 0%, transparent 60%);
}

.hero-content {
  max-width: 850px;
}

.hero-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(42, 114, 88, 0.18);
  border: 1px solid var(--border-glass);
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.accent-emerald {
  color: #4ade80;
  text-shadow: 0 0 25px rgba(74, 222, 128, 0.25);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding: 1.5rem 1.8rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  backdrop-filter: blur(15px);
  margin-bottom: 1.8rem;
}

.stat-item .stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item .stat-num .accent {
  color: var(--color-gold);
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Quick Search Box */
.hero-search-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 1.2rem;
  backdrop-filter: blur(15px);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0.8rem;
  align-items: flex-end;
}

.search-field label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.search-select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: rgba(10, 13, 12, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.search-select:hover, .search-select:focus {
  border-color: var(--color-primary-bright);
}

/* --- General Section Layouts --- */
.section {
  padding: 5.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--text-main), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Glass panel */
.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  box-shadow: var(--shadow-lux);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .search-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
}