/* =====================================================
   AutoLoc France - Main Stylesheet
   ===================================================== */

/* Google Fonts are loaded in header.php */

/* =====================================================
   CSS Custom Properties
   ===================================================== */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #1e293b;
  --accent: #6b46c1;
  --accent-dark: #5b3aa8;
  --bg-main: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-tertiary: #f8fafc;
  --text-main: #1a1a2e;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --success: #059669;
  --alert: #dc2626;
  --warning: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 2px 12px rgba(0,0,0,0.06);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.75;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* =====================================================
   Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  line-height: 1.3;
  color: var(--text-main);
}

h1 { font-size: 32px; font-weight: 700; }
h2 { font-size: 24px; font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* =====================================================
   Container
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107,70,193,0.3);
  color: #ffffff;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 10px 20px;
  border: none;
}
.btn-ghost:hover {
  text-decoration: underline;
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  font-weight: 600;
}
.btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--primary);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
  text-decoration: none;
  color: #ffffff;
}

.btn-full { width: 100%; }
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-sm { padding: 8px 20px; font-size: 14px; }

/* =====================================================
   Header / Topbar
   ===================================================== */
.topbar {
  background: var(--secondary);
  height: 40px;
  display: flex;
  align-items: center;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar-left, .topbar-center, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}
.topbar a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover { color: #ffffff; text-decoration: none; }
.topbar [data-feather] { width: 14px; height: 14px; }
.lang-selector { display: flex; gap: 12px; font-size: 13px; }
.lang-selector a { color: rgba(255,255,255,0.7); }
.lang-selector a.active, .lang-selector a:hover { color: #ffffff; }

/* Main Header */
.site-header {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Logo */
.site-logo {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; color: var(--secondary); }
.site-logo span { color: var(--primary); }

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 400px;
  position: relative;
}
.header-search input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0 48px 0 20px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: var(--transition);
}
.header-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.header-search-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}
.header-search-btn [data-feather] { width: 18px; height: 18px; }

/* Main Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary);
  padding: 4px;
}
.hamburger [data-feather] { width: 24px; height: 24px; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-main);
  z-index: 2000;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary);
}
.mobile-menu nav ul {
  flex-direction: column;
  gap: 0;
}
.mobile-menu nav li {
  border-bottom: 1px solid var(--border);
}
.mobile-menu nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

/* =====================================================
   Read Progress Bar
   ===================================================== */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* =====================================================
   Skip to content
   ===================================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 20px; }

/* =====================================================
   Page Banner
   ===================================================== */
.page-banner {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--secondary);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,41,59,0.7);
}
.page-banner-content {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 12px;
}
.page-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* =====================================================
   Section Styles
   ===================================================== */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--bg-secondary); }
.section-dark { background: var(--secondary); }
.section-primary { background: var(--primary); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* Section title with underline */
.section-title {
  position: relative;
  margin-bottom: 32px;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin-top: 8px;
}

/* =====================================================
   Layout - Two Column (Content + Sidebar)
   ===================================================== */
.content-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* =====================================================
   Hero Section (Article à la une)
   ===================================================== */
.hero-article {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  margin-bottom: 32px;
}
.hero-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 12px;
}
.tag-alaune { background: var(--accent); color: #ffffff; }
.tag-journaliere { background: rgba(37,99,235,0.12); color: var(--primary); }
.tag-mensuelle { background: rgba(107,70,193,0.12); color: var(--accent); }
.tag-conseils { background: rgba(5,150,105,0.12); color: var(--success); }
.tag-comparatifs { background: rgba(220,38,38,0.12); color: var(--alert); }
.tag-guide { background: rgba(245,158,11,0.12); color: var(--warning); }

.hero-content h1 {
  color: #ffffff;
  font-size: 32px;
  max-width: 70%;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  margin-bottom: 16px;
  line-height: 1.3;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  flex-wrap: wrap;
}
.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-meta [data-feather] { width: 14px; height: 14px; }

/* =====================================================
   Share Bar
   ===================================================== */
.share-bar {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-bottom: 48px;
}
.share-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.share-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.share-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.share-btn:hover { opacity: 0.9; transform: translateY(-1px); text-decoration: none; color: #fff; }
.share-facebook { background: #1877F2; }
.share-twitter { background: #1DA1F2; }
.share-whatsapp { background: #25D366; }
.share-email { background: var(--text-secondary); }
.share-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.share-right select {
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 12px;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

/* =====================================================
   Article Cards
   ===================================================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.article-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.article-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-card-img-wrap {
  overflow: hidden;
}
.article-card-img-wrap img {
  transition: transform 0.3s ease;
}
.article-card:hover .article-card-img-wrap img {
  transform: scale(1.02);
}
.article-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-body .tag { margin-bottom: 10px; }
.article-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 8px;
  font-family: 'Roboto Slab', serif;
  transition: var(--transition);
}
.article-card:hover .article-card-title { color: var(--primary); }
.article-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  font-family: 'Roboto', sans-serif;
  margin-top: auto;
}
.article-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.article-card-meta [data-feather] { width: 12px; height: 12px; }

/* Horizontal Article Card */
.articles-list { display: flex; flex-direction: column; }
.article-card-horizontal {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  gap: 0;
  transition: var(--transition);
}
.article-card-horizontal:last-child { border-bottom: none; }
.article-card-horizontal:hover { opacity: 0.85; }
.article-card-horizontal-img {
  width: 280px;
  min-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
  flex-shrink: 0;
}
.article-card-horizontal-img-wrap {
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
  flex-shrink: 0;
  width: 280px;
  height: 180px;
}
.article-card-horizontal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.article-card-horizontal:hover .article-card-horizontal-img-wrap img { transform: scale(1.03); }
.article-card-horizontal-body {
  padding: 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-card-horizontal-body .tag { margin-bottom: 8px; }
.article-card-horizontal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 8px;
  font-family: 'Roboto Slab', serif;
}
.article-card-horizontal:hover .article-card-horizontal-title { color: var(--primary); }
.article-card-horizontal-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =====================================================
   CTA Encart
   ===================================================== */
.cta-encart {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 48px 0;
  text-align: center;
}
.cta-encart-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}
.cta-encart h2 {
  font-size: 22px;
  margin-bottom: 12px;
}
.cta-encart p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 24px;
}
.cta-encart .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   Pagination
   ===================================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border);
  background: var(--bg-main);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover { background: var(--bg-tertiary); text-decoration: none; color: var(--text-main); }
.page-btn.active { background: var(--primary); color: #ffffff; border-color: var(--primary); }
.page-btn.arrow { width: auto; padding: 0 12px; }
.page-btn [data-feather] { width: 16px; height: 16px; }

/* =====================================================
   Sidebar Blocks
   ===================================================== */
.sidebar { display: flex; flex-direction: column; gap: 0; }
.sidebar-block { margin-bottom: 32px; }

/* Estimation Rapide */
.sidebar-estimation {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sidebar-estimation-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.sidebar-estimation-header h3 {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
}
.sidebar-estimation-header .fa-gauge-high { color: rgba(255,255,255,0.7); font-size: 20px; }
.sidebar-estimation p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 20px;
}
.sidebar-estimation .form-control {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  height: 44px;
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  appearance: auto;
}
.sidebar-estimation .form-control option { background: var(--secondary); }
.sidebar-estimation .form-control:focus { border-color: rgba(255,255,255,0.5); }

/* Trending / Popular */
.sidebar-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.sidebar-card-header h3 {
  font-size: 18px;
  margin: 0;
}
.sidebar-card-header [data-feather] { width: 18px; height: 18px; }
.trend-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.trend-item:last-child { border-bottom: none; padding-bottom: 0; }
.trend-item:first-child { padding-top: 0; }
.trend-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-right: 12px;
  flex-shrink: 0;
  width: 40px;
}
.trend-content { flex: 1; }
.trend-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 4px;
  display: block;
  transition: var(--transition);
}
.trend-title:hover { color: var(--primary); text-decoration: none; }
.trend-views {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Roboto', sans-serif;
}
.trend-views [data-feather] { width: 12px; height: 12px; }

/* Popular with thumbs */
.popular-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.popular-item:last-child { border-bottom: none; padding-bottom: 0; }
.popular-item:first-child { padding-top: 0; }
.popular-thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.popular-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 4px;
  display: block;
  transition: var(--transition);
}
.popular-title:hover { color: var(--primary); text-decoration: none; }
.popular-views {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Roboto', sans-serif;
}
.popular-views [data-feather] { width: 12px; height: 12px; }

/* Categories sidebar */
.sidebar-categories {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-categories h3 { font-size: 18px; margin-bottom: 16px; }
.category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-main);
  transition: var(--transition);
  cursor: pointer;
}
.category-item:last-child { border-bottom: none; }
.category-item:hover { color: var(--primary); }
.category-item [data-feather] { width: 16px; height: 16px; color: var(--text-secondary); flex-shrink: 0; }
.category-item:hover [data-feather] { color: var(--primary); }
.category-count { margin-left: auto; font-size: 13px; color: var(--text-muted); }

/* Ad placeholder */
.sidebar-ad {
  width: 300px;
  height: 250px;
  background: var(--bg-secondary);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 auto 32px;
}

/* Newsletter sidebar */
.sidebar-newsletter {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sidebar-newsletter h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}
.sidebar-newsletter p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 16px;
}
.sidebar-newsletter input {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 14px;
  margin-bottom: 10px;
  outline: none;
}
.sidebar-newsletter .btn {
  width: 100%;
  background: #ffffff;
  color: var(--primary);
  font-weight: 600;
}
.sidebar-newsletter .btn:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--primary);
}

/* =====================================================
   Vehicle Cards
   ===================================================== */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vehicles-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vehicle-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.vehicle-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-secondary);
}
.vehicle-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.vehicle-card:hover .vehicle-card-img-wrap img { transform: scale(1.03); }
.vehicle-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}
.badge-new { background: var(--success); }
.badge-popular { background: var(--warning); }
.badge-electric { background: var(--primary); }

.vehicle-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vehicle-card-body h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.vehicle-year {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Roboto', sans-serif;
  margin-bottom: 14px;
}
.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 16px;
}
.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}
.vehicle-spec i { color: var(--primary); width: 14px; }
.vehicle-separator {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.vehicle-prices { margin-bottom: 20px; }
.vehicle-price-daily {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.vehicle-price-monthly {
  font-size: 14px;
  color: var(--text-secondary);
}

/* =====================================================
   Testimonials
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-quote {
  font-size: 64px;
  color: var(--border);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 12px;
  display: block;
}
.testimonial-text {
  font-size: 16px;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}
.testimonial-separator {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}
.testimonial-author {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.stars { color: var(--warning); font-size: 14px; letter-spacing: 2px; }

/* =====================================================
   FAQ Accordion
   ===================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: start;
}
.faq-item {
  background: var(--bg-main);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-main);
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-question [data-feather] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}
.faq-item.open .faq-question [data-feather] { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* FAQ page full-width */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list .faq-item { width: 100%; }
.faq-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 16px;
  font-size: 20px;
}
.faq-category-title:first-child { margin-top: 0; }
.faq-category-title i { color: var(--primary); }
.faq-category-title [data-feather] { width: 20px; height: 20px; color: var(--primary); }

/* =====================================================
   Contact Section
   ===================================================== */
.contact-section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  color: rgba(255,255,255,0.7);
}
.contact-info h2 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 16px;
}
.contact-info > p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #ffffff;
}
.contact-detail [data-feather] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-form-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* =====================================================
   Forms
   ===================================================== */
.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}
label .required { color: var(--alert); margin-left: 2px; }
.form-control {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 16px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
  background: var(--bg-main);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
textarea.form-control {
  height: auto;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.6;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}
.form-note a { color: var(--text-muted); text-decoration: underline; }

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: #0f172a;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Roboto Slab', serif;
}
.footer-logo {
  font-family: 'Roboto Slab', serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  display: inline-block;
}
.footer-logo span { color: var(--primary); }
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-col ul li {
  margin-bottom: 0;
}
.footer-col ul a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 2.2;
  transition: var(--transition);
}
.footer-col ul a:hover { color: #ffffff; text-decoration: none; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item [data-feather] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-separator {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0;
}
.footer-copyright {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: 'Roboto', sans-serif;
}
.footer-lang { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.footer-lang a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-lang a:hover { color: #ffffff; }
.footer-lang span { color: rgba(255,255,255,0.25); }

/* =====================================================
   Page: Tarifs - Tabs
   ===================================================== */
.tarif-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.tarif-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-family: 'Open Sans', sans-serif;
}
.tarif-tab [data-feather] { width: 18px; height: 18px; }
.tarif-tab.active {
  background: var(--primary);
  color: #ffffff;
}
.tarif-panel { display: none; }
.tarif-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Table */
.tarif-table-wrap { overflow-x: auto; }
.tarif-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.tarif-table thead th {
  background: var(--secondary);
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
.tarif-table tbody tr:nth-child(even) { background: var(--bg-tertiary); }
.tarif-table tbody tr:nth-child(odd) { background: var(--bg-main); }
.tarif-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
}
.tarif-table .price {
  font-weight: 700;
  color: var(--primary);
}
.tarif-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
  text-align: right;
}

/* Options grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.option-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.option-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.option-icon { font-size: 32px; color: var(--primary); margin-bottom: 14px; }
.option-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.option-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 14px; }
.option-price { font-size: 18px; font-weight: 700; color: var(--text-main); }

/* Compare table */
.compare-box {
  background: var(--bg-main);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 48px 0;
}
.compare-box h2 { margin-bottom: 24px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: var(--bg-secondary);
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}
.compare-table th:first-child { background: transparent; }
.compare-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}
.compare-table td:first-child { font-weight: 600; color: var(--text-main); }
.compare-table .check { color: var(--success); }
.compare-table .cross { color: var(--alert); }
.compare-conclusion {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
}

/* =====================================================
   Page: About
   ===================================================== */
.about-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Counters */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.counter-item i, .counter-item .fa { font-size: 36px; color: var(--primary); margin-bottom: 12px; }
.counter-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Roboto Slab', serif;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.counter-label { font-size: 14px; color: var(--text-secondary); }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.value-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.value-icon [data-feather] { width: 48px; height: 48px; color: var(--primary); }
.value-item h3 { font-size: 20px; }
.value-item p { font-size: 15px; color: var(--text-secondary); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { text-align: center; }
.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(20%);
  margin: 0 auto 16px;
  border: 3px solid var(--border);
}
.team-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--primary); margin-bottom: 8px; font-weight: 600; }
.team-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Agencies */
.agencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.agency-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.agency-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.agency-city { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-main); }
.agency-detail {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.agency-detail [data-feather] { width: 14px; height: 14px; margin-top: 2px; flex-shrink: 0; }

/* =====================================================
   Page: Contact
   ===================================================== */
.contact-main-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 28px;
}

.coords-card {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.coords-card h3 { font-size: 18px; margin-bottom: 20px; }
.coord-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.coord-item:last-child { margin-bottom: 0; }
.coord-item [data-feather] { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.coord-item-title { font-weight: 600; font-size: 15px; color: var(--text-main); }
.coord-item-text { font-size: 14px; color: var(--text-secondary); }

.map-placeholder {
  border-radius: var(--radius-lg);
  height: 250px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: center;
}

.quick-response {
  background: #eff6ff;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.quick-response i { font-size: 32px; color: var(--primary); flex-shrink: 0; margin-top: 4px; }
.quick-response h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.quick-response p { font-size: 14px; color: var(--text-secondary); margin: 0; }

/* =====================================================
   Article Page Styles
   ===================================================== */
.article-header { margin-bottom: 32px; }
.article-header h1 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.article-chapeau {
  font-size: 18px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.article-meta-full {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Roboto', sans-serif;
  flex-wrap: wrap;
}
.article-meta-full .author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-main);
}
.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.article-meta-full span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-meta-full [data-feather] { width: 14px; height: 14px; }
.article-separator { color: var(--border); }

.article-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
}
.article-img-caption {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-bottom: 32px;
}

/* Reading progress bar */
#reading-progress { display: none; }
.article-page #reading-progress { display: block; }

/* Table of Contents */
.toc {
  background: var(--bg-tertiary);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
  margin-bottom: 40px;
}
.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.toc-title { font-weight: 700; font-size: 16px; color: var(--text-main); }
.toc-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}
.toc ol { padding-left: 20px; list-style: decimal; }
.toc ol li { margin-bottom: 8px; }
.toc ol li a {
  font-size: 14px;
  color: var(--primary);
  line-height: 1.5;
}
.toc ol li a:hover { text-decoration: underline; }

/* Article Body */
.article-body { font-size: 16px; color: var(--text-main); line-height: 1.8; }
.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  font-family: 'Roboto Slab', serif;
}
.article-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  font-family: 'Roboto Slab', serif;
}
.article-body p { margin-bottom: 24px; }
.article-body img {
  width: 100%;
  border-radius: var(--radius);
  margin: 32px 0;
}
.article-body ul { margin-bottom: 24px; padding-left: 0; }
.article-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}
.article-body ul li::before {
  content: '';
  display: none;
}
.article-body .check-list li .check-icon {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-box {
  background: #eff6ff;
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.info-box p { margin: 0; font-size: 15px; }
.warning-box {
  background: #fef2f2;
  border-left: 4px solid var(--alert);
  padding: 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.warning-box p { margin: 0; font-size: 15px; color: var(--text-main); }
blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--accent);
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
}
.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.article-gallery img { border-radius: var(--radius); width: 100%; }

/* Author box */
.author-box {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-box-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box-info h4 { font-size: 18px; margin-bottom: 4px; }
.author-box-role { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
.author-box-bio { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }

/* Comments */
.comments-section { margin-top: 48px; }
.comments-section h2 { margin-bottom: 32px; }
.comment-form { background: var(--bg-tertiary); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 40px; }
.comment-list { display: flex; flex-direction: column; gap: 24px; }
.comment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.comment-body { flex: 1; }
.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.comment-author { font-weight: 600; font-size: 15px; color: var(--text-main); }
.comment-date { font-size: 13px; color: var(--text-muted); font-family: 'Roboto', sans-serif; }
.comment-text { font-size: 15px; color: var(--text-main); line-height: 1.7; margin-bottom: 8px; }
.comment-reply { background: none; border: none; font-size: 13px; color: var(--primary); font-weight: 600; cursor: pointer; }
.comment-reply:hover { text-decoration: underline; }
.comment-nested { margin-left: 48px; margin-top: 16px; }

/* =====================================================
   Legal Pages
   ===================================================== */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0;
}
.legal-content h1 { margin-bottom: 32px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.legal-content h2 { font-size: 20px; margin-top: 40px; margin-bottom: 16px; color: var(--primary); }
.legal-content h3 { font-size: 17px; margin-top: 24px; margin-bottom: 10px; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 24px; list-style: disc; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content strong { color: var(--text-main); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.legal-content table th { background: var(--bg-secondary); padding: 12px 16px; text-align: left; font-weight: 600; border: 1px solid var(--border); }
.legal-content table td { padding: 12px 16px; border: 1px solid var(--border); font-size: 14px; color: var(--text-secondary); }

/* =====================================================
   FAQ Search Bar
   ===================================================== */
.faq-search-wrap {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}
.faq-search-wrap input {
  width: 100%;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0 56px 0 24px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.faq-search-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1), 0 2px 12px rgba(0,0,0,0.06);
}
.faq-search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  display: flex;
}
.faq-search-icon [data-feather] { width: 22px; height: 22px; }

/* Category Filter Tags */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-family: 'Open Sans', sans-serif;
}
.filter-tag.active {
  background: var(--primary);
  color: #ffffff;
}
.filter-tag:hover:not(.active) {
  background: var(--border);
}

/* =====================================================
   Filter Bar (vehicules)
   ===================================================== */
.filter-bar {
  background: var(--bg-main);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-top: -40px;
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-bar select {
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 16px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  cursor: pointer;
  flex: 1;
  min-width: 140px;
  transition: var(--transition);
}
.filter-bar select:focus { border-color: var(--primary); }

/* =====================================================
   Info Block (véhicules page)
   ===================================================== */
.info-block {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 48px 0;
}
.info-block-items { display: flex; flex-direction: column; gap: 32px; }
.info-block-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.info-block-icon { font-size: 40px; color: var(--primary); flex-shrink: 0; }
.info-block-item h3 { font-size: 18px; margin-bottom: 6px; }
.info-block-item p { font-size: 15px; color: var(--text-secondary); margin: 0; }

/* =====================================================
   Encart Contact Rapide
   ===================================================== */
.faq-contact-encart {
  text-align: center;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 48px;
}
.faq-contact-encart h3 { font-size: 22px; margin-bottom: 12px; }
.faq-contact-encart p { color: var(--text-secondary); margin-bottom: 24px; }

/* =====================================================
   Utilities
   ===================================================== */
.text-center { text-align: center; }
.text-white { color: #ffffff; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-48 { margin-top: 48px; }
.mt-32 { margin-top: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex-wrap { flex-wrap: wrap; }

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Results counter */
.results-count {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Accessibility */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
