/* ========================================
   R7 CARS — r7cars.com
   Shared Stylesheet
   ======================================== */

/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
  --primary: #1B3A5C;
  --primary-dark: #0F2440;
  --accent: #E8A838;
  --accent-hover: #D4952E;
  --accent-light: #FFF3DC;
  --text: #1A1A2E;
  --text-light: #5A6577;
  --text-muted: #8E99A9;
  --bg: #FFFFFF;
  --bg-soft: #F7F9FC;
  --bg-card: #FFFFFF;
  --border: #E8ECF2;
  --shadow-sm: 0 2px 8px rgba(27,58,92,0.06);
  --shadow-md: 0 8px 30px rgba(27,58,92,0.08);
  --shadow-lg: 0 20px 60px rgba(27,58,92,0.12);
  --shadow-accent: 0 8px 30px rgba(232,168,56,0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ar: 'Noto Sans Arabic', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1400px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #FFFFFF;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

html[dir="rtl"] body { font-family: var(--font-ar); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] h4, html[dir="rtl"] h5, html[dir="rtl"] h6,
html[dir="rtl"] .nav-links a, html[dir="rtl"] .btn { font-family: var(--font-ar); }

/* RTL — éléments LTR forcés (logo, téléphone, email, paiement) */
html[dir="rtl"] .navbar .logo,
html[dir="rtl"] .payment-methods-grid,
html[dir="rtl"] .info-item p a[href^="tel:"],
html[dir="rtl"] .info-item p a[href^="mailto:"],
html[dir="rtl"] .cta-phone {
  direction: ltr;
  unicode-bidi: embed;
}

/* Footer pro RTL */
html[dir="rtl"] .footer-pro-top { direction: rtl; }
html[dir="rtl"] .footer-pro-logo { direction: ltr; }
html[dir="rtl"] a.contact-value[href^="tel:"],
html[dir="rtl"] a.contact-value[href^="mailto:"] {
  direction: ltr;
  unicode-bidi: bidi-override;
  display: inline-block;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

/* Backgrounds des sections */
.why-v2-section       { background: #FFF8F3; }
.faq-section          { background: #FFF8F3; }
.services-v2-section  { background: #FFF8F3; }
.testimonials-section { background: var(--bg-soft); }
.video-section        { background: var(--primary-dark); }

@media (max-width: 1440px) {
  .container { max-width: 1280px; padding: 0 32px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 24px; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232,168,56,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(15, 36, 64, 0.05);
  border-bottom: none;
  transition: all 0.3s ease;
}

/* Sur la page d'accueil (hero image), la navbar démarre transparente */
.has-hero-image .navbar {
  background: transparent;
  box-shadow: none;
}
.navbar.scrolled,
.has-hero-image .navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(27,58,92,0.06);
}

/* Liens navbar visibles par défaut (pages sans hero) */
.navbar .nav-links a { color: var(--text); }
.navbar .nav-links a:hover,
.navbar .nav-links a.active { color: var(--accent); }
.navbar .logo { color: var(--primary-dark); }
.navbar .logo span { color: var(--accent); }

/* Sur hero: liens blancs */
.has-hero-image .navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.has-hero-image .navbar:not(.scrolled) .nav-links a:hover,
.has-hero-image .navbar:not(.scrolled) .nav-links a.active { color: var(--accent); }
.has-hero-image .navbar:not(.scrolled) .logo { color: #fff; }
.has-hero-image .navbar:not(.scrolled) .logo span { color: var(--accent); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  padding: 0 40px;
}

@media (max-width: 1440px) {
  .nav-inner { max-width: 1280px; padding: 0 32px; }
}

@media (max-width: 1024px) {
  .nav-inner { padding: 0 24px; }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  transition: color 0.3s ease;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: #fff;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
/* NAV DROPDOWN — Langue + Devise combinées */
.nav-dropdown { position: relative; }

/* Default: dark style (pages without hero) */
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav-dropdown-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,168,56,0.06);
}
.nav-dropdown-btn .sep { opacity: 0.4; }

/* Transparent hero: white style (index.html, hero pages not scrolled) */
.has-hero-image .navbar:not(.scrolled) .nav-dropdown-btn {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
.has-hero-image .navbar:not(.scrolled) .nav-dropdown-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* After scroll: back to dark */
.navbar.scrolled .nav-dropdown-btn {
  background: var(--bg-soft);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: none;
}
.navbar.scrolled .nav-dropdown-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,168,56,0.06);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(15,36,64,0.18);
  border: 1px solid var(--border);
  padding: 14px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 2000;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-section { padding: 4px 0; }

.dropdown-label {
  font-size: 0.67rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px 7px;
}

.dropdown-options { display: flex; flex-direction: column; gap: 2px; }

.dropdown-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.18s ease;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
}
.dropdown-option:hover { background: rgba(232,168,56,0.08); color: var(--accent); }
.dropdown-option.active { background: var(--accent); color: #fff; font-weight: 700; }

.dropdown-option .flag { font-size: 1.05rem; line-height: 1; }

.dropdown-option .curr-icon {
  width: 22px;
  height: 22px;
  background: rgba(15,36,64,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.dropdown-option.active .curr-icon { background: rgba(255,255,255,0.2); color: #fff; }

.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
.nav-cta { padding: 8px 18px; font-size: 0.78rem; white-space: nowrap; min-width: auto; }
.navbar.scrolled .logo { color: var(--primary); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }
.navbar.scrolled .mobile-toggle span { background: var(--primary); }
.has-hero-image .navbar:not(.scrolled) .mobile-toggle span { background: #fff; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* ========================================
   PAGE HEADER (for inner pages)
   ======================================== */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(170deg, #FFFFFF 0%, #F0F5FB 40%, #E8F0F9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-article-page {
  padding-top: 140px !important;
}
.page-header.with-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 160px 0 80px;
}
.page-header.with-bg::before { display: none; }
.page-header.with-bg h1,
.page-header.with-bg p,
.page-header.with-bg .breadcrumb span { color: #fff; }
.page-header.with-bg .breadcrumb a { color: var(--accent); }
.page-header.with-bg .breadcrumb > span:not(:first-child) { color: rgba(255,255,255,0.7); }
.page-header::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.page-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--accent); font-weight: 600; }
.breadcrumb span { color: var(--text-muted); }

/* ========================================
   HERO SECTION (index only)
   ======================================== */
.hero {
  position: relative;
  padding: 130px 0 80px;
  background: linear-gradient(135deg, rgba(15,36,64,0.55) 0%, rgba(27,58,92,0.4) 50%, rgba(15,36,64,0.6) 100%), url('images/hero-bg.jpg') center 30%/110% auto no-repeat;
  overflow: hidden;
  min-height: auto;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { background-size: 110% auto; background-position: center 30%; }
  100% { background-size: 115% auto; background-position: center 35%; }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232,168,56,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(27,58,92,0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,58,92,0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 460px;
  gap: 50px;
  align-items: center;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.hero-grid > div:first-child {
  max-width: 100%;
  padding-left: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--accent-light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-hover);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: #fff;
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 8px;
  background: rgba(232,168,56,0.2);
  border-radius: 4px;
  z-index: -1;
}
.hero-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat {
  flex: 1;
}
.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px 0;
  line-height: 1;
}
.hero-stat h3 span { color: var(--accent); }
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin: 0; }

/* Animated car strip */
.hero-car-strip {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 70px;
  margin: 0 0 28px 0;
  padding-left: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 4px;
}
.road-line {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  height: 3px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.7) 0px,
    rgba(255,255,255,0.7) 16px,
    transparent 16px,
    transparent 32px
  );
  border-radius: 2px;
  z-index: 1;
}
.moving-car {
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: 2;
  animation: driveCarLoop 10s linear infinite;
  will-change: transform;
  filter: drop-shadow(0 4px 10px rgba(27,58,92,0.25));
}
.moving-car svg {
  width: 170px;
  height: auto;
  display: block;
}
html[dir="rtl"] .moving-car {
  left: 0;
  animation: driveCarLoopRtl 10s linear infinite;
}
html[dir="rtl"] .moving-car svg { transform: scaleX(-1); }
@keyframes driveCarLoop {
  0%   { transform: translateX(-180px); }
  100% { transform: translateX(570px); }
}
@keyframes driveCarLoopRtl {
  0%   { transform: translateX(570px); }
  100% { transform: translateX(-180px); }
}

/* ========================================
   FORM CARD
   ======================================== */
.contact-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
  opacity: 0.15;
}
#reservation { scroll-margin-top: 100px; }
.hero-form-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 20px 60px rgba(15,36,64,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  width: 100%;
  max-width: 460px;
  margin-top: 0;
  z-index: 2;
  position: relative !important;
  top: auto !important;
  scroll-margin-top: 100px;
  animation: none !important;
  transform: none !important;
}
.hero-form-card::before {
  display: none;
}
/* Neutralise fade-up transform sur la carte — backdrop-filter + translateY = bug stacking context */
.hero-form-card.fade-up,
.hero-form-card.fade-up.visible {
  transform: none !important;
  opacity: 1 !important;
}
/* Highlight pulse quand on click Réserver */
@keyframes highlightForm {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(15,36,64,0.25);
  }
  25% {
    transform: scale(1.03);
    box-shadow: 0 25px 80px rgba(232,168,56,0.5), 0 0 0 4px rgba(232,168,56,0.4);
  }
  50% {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(232,168,56,0.4), 0 0 0 6px rgba(232,168,56,0.3);
  }
  75% {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(232,168,56,0.4), 0 0 0 4px rgba(232,168,56,0.3);
  }
}
.hero-form-card.highlight {
  animation: highlightForm 1.5s ease-in-out !important;
}
.hero-form-card .form-title { font-size: 1.2rem; }
.hero-form-card .form-subtitle { font-size: 0.82rem; margin-bottom: 20px; }
.hero-form-card .form-grid { gap: 12px; }
.hero-form-card .form-row { gap: 12px; }
.hero-form-card .form-group label { font-size: 0.7rem; letter-spacing: 0.4px; }
.hero-form-card .form-group input,
.hero-form-card .form-group select,
.hero-form-card .form-group textarea { padding: 10px 14px; font-size: 0.85rem; border-radius: 10px; }
.hero-form-card .form-group textarea { min-height: 60px; }
.hero-form-card .form-submit { padding: 12px; font-size: 0.9rem; margin-top: 4px; }
.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.form-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(232,168,56,0.1);
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
  justify-content: center;
}
.form-success {
  display: none;
  padding: 20px;
  background: #E8F9EE;
  border-radius: var(--radius);
  color: #1B7A3D;
  text-align: center;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 70px 0; }
.section + .section { border-top: 1px solid rgba(15,36,64,0.04); }
.section-soft { background: var(--bg-soft); }

/* Section-specific backgrounds (alternance) */
.gallery-section   { background: var(--bg-soft); }
.partners-section  { background: var(--bg); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--accent-light);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ========================================
   FLEET CARDS
   ======================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 40px 0;
  justify-content: start;
  align-content: start;
}
.fleet-card-pro {
  max-width: 100%;
}

/* CSS-based filtering — cards always stay in 3-col grid */
.fleet-grid[data-filter] .fleet-card-pro { display: none; }
.fleet-grid[data-filter="all"] .fleet-card-pro,
.fleet-grid[data-filter="eco"] .fleet-card-pro[data-cat="eco"],
.fleet-grid[data-filter="berline"] .fleet-card-pro[data-cat="berline"],
.fleet-grid[data-filter="suv"] .fleet-card-pro[data-cat="suv"],
.fleet-grid[data-filter="premium"] .fleet-card-pro[data-cat="premium"],
.fleet-grid[data-filter="utilitaire"] .fleet-card-pro[data-cat="utilitaire"] { display: flex; }
.fleet-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.fleet-img {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-soft), #E3EBF5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 2;
}
html[dir="rtl"] .fleet-badge { right: auto; left: 16px; }
.fleet-body { padding: 24px; }
.fleet-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.fleet-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}
.fleet-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.fleet-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-soft);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}
.fleet-feat svg { width: 14px; height: 14px; color: var(--accent); }
.fleet-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.fleet-price .price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}
.fleet-price .price small { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); }
.fleet-price .btn { padding: 10px 22px; font-size: 0.82rem; }

/* ========================================
   FLEET CARDS PRO (flotte.html)
   ======================================== */
.fleet-card-pro {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.fleet-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15,36,64,0.15);
  border-color: var(--accent);
}
.fleet-card-img {
  position: relative;
  height: 220px;
  background: var(--bg-soft);
  overflow: hidden;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card-pro:hover .fleet-card-img img { transform: scale(1.08); }
.fleet-badge-status {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #27AE60;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.fleet-badge-status .dot {
  width: 8px; height: 8px;
  background: #27AE60;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.fleet-badge-popular {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.whatsapp-quick {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  transition: all 0.3s;
  z-index: 2;
}
.whatsapp-quick:hover { transform: scale(1.1); background: #1DA851; }
.fleet-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fleet-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}
.fleet-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 4px 0;
}
.fleet-year { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.fleet-rating { text-align: right; flex-shrink: 0; }
.fleet-rating .stars { color: #FFC107; font-size: 0.85rem; letter-spacing: 1px; display: block; }
.rating-num { font-size: 0.78rem; font-weight: 700; color: var(--primary); }
.rating-count { color: var(--text-muted); font-weight: 500; }
.fleet-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-light);
}
.spec-item svg { color: var(--accent); flex-shrink: 0; }
.fleet-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.include-tag {
  font-size: 0.72rem;
  color: #27AE60;
  font-weight: 600;
  background: rgba(39,174,96,0.1);
  padding: 4px 10px;
  border-radius: 50px;
}
.fleet-trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
}
.trust-badge.urgency { color: #E74C3C; }
.pulse-dot {
  width: 8px; height: 8px;
  background: #E74C3C;
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}
.fleet-pricing-block {
  padding: 14px 0;
  border-top: 1px dashed var(--border);
  margin-bottom: 14px;
}
.price-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-dark);
}
.price-amount small { font-size: 0.85rem; font-weight: 700; color: var(--accent); }
.price-period { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.deposit-info { display: block; font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }
.fleet-actions { display: grid; grid-template-columns: 1fr 1.2fr; gap: 10px; margin-top: auto; }
.btn-sm { padding: 11px 18px; font-size: 0.82rem; }

/* ========================================
   CAR DETAIL PAGES (car/*.html)
   ======================================== */
.car-detail-page {
  padding-top: 140px !important;
  padding-bottom: 60px;
  background: var(--bg-soft);
  min-height: 60vh;
  position: relative;
  z-index: 1;
}
.car-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  padding: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.car-breadcrumb a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
.car-breadcrumb a:hover { color: var(--accent); }
.car-breadcrumb span { color: var(--text-muted); }
.car-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.car-gallery { margin-bottom: 32px; }
.main-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  height: 340px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.gallery-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(15,36,64,0.7);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}
.thumbnails { display: flex; gap: 8px; }
.thumb {
  flex: 1;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.thumb.active { border-color: var(--accent); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { border-color: var(--accent); opacity: 0.9; }
.car-info-block { background: var(--bg); border-radius: 16px; padding: 28px; border: 1px solid var(--border); }
.car-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
}
.car-category {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.car-info-block h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0;
}
.car-rating-big { text-align: right; flex-shrink: 0; }
.stars-big { color: #FFC107; font-size: 1.2rem; letter-spacing: 2px; display: block; }
.rating-text { font-size: 0.82rem; color: var(--text-light); font-weight: 600; }
.car-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.car-specs-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.car-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-soft);
  border-radius: 12px;
  gap: 8px;
}
.car-spec-item svg { color: var(--accent); }
.car-spec-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.car-spec-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.car-includes-section h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.car-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.car-include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}
.car-include-item svg { color: #27AE60; flex-shrink: 0; }
/* Booking widget */
.car-booking-widget {
  position: sticky;
  top: 100px;
  background: var(--bg);
  border-radius: 20px;
  border: 2px solid var(--accent);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15,36,64,0.12);
}
.widget-header {
  background: var(--primary-dark);
  padding: 24px;
  text-align: center;
}
.widget-price-main {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.widget-price-main small { font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 400; }
.widget-price-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.widget-body { padding: 24px; }
.widget-info-list {
  list-style: none;
  padding: 0; margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.widget-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-light);
  font-weight: 500;
}
.widget-info-list svg { color: var(--accent); flex-shrink: 0; }
.widget-book-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.widget-book-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
.widget-whatsapp-btn {
  width: 100%;
  padding: 13px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.widget-whatsapp-btn:hover { background: #1DA851; }
.widget-deposit {
  text-align: center;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.widget-free-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #27AE60;
  font-weight: 600;
  margin-top: 10px;
}
/* Car year badge */
.car-year { font-size: 0.78rem; font-weight: 500; color: var(--text-muted); margin-left: 6px; }
/* Rating in widget */
.widget-rating { display: flex; align-items: center; gap: 6px; justify-content: center; color: rgba(255,255,255,0.85); font-size: 0.8rem; margin-top: 6px; }
.widget-rating span.stars { color: #FFC107; }
.widget-rating .reviews { color: rgba(255,255,255,0.5); }
/* Spec label/value aliases */
.spec-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.spec-value { font-size: 0.85rem; font-weight: 700; color: var(--primary-dark); display: block; margin-top: 2px; }
.car-spec-item svg { color: var(--accent); width: 22px; height: 22px; flex-shrink: 0; }
/* Includes section */
.car-includes-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.car-includes-section h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 14px; }
.car-includes-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.car-includes-list li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-light); font-weight: 500; }
.car-includes-list svg { color: #27AE60; flex-shrink: 0; width: 16px; height: 16px; }
/* ========================================
   BOOKING CALCULATOR (car detail pages)
   ======================================== */
.booking-calculator {
  background: var(--bg);
  border-radius: 20px;
  border: 2px solid var(--accent);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,36,64,0.12);
  position: sticky;
  top: 100px;
}
.calc-price-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 28px 24px 24px;
  text-align: center;
  color: #fff;
}
.calc-price { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 8px; }
.calc-price .amount { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 900; color: var(--accent); }
.calc-price small { font-size: 1rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.calc-price .period { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.calc-rating { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 4px; }
.calc-rating .stars { color: #FFC107; font-size: 0.95rem; letter-spacing: 1px; }
.calc-rating-text { color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 600; }
.calc-form { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.calc-form .form-group label {
  font-size: 0.72rem; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 6px;
}
.calc-form .form-group input,
.calc-form .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.9rem; background: var(--bg-soft);
  font-family: inherit; transition: all 0.3s; box-sizing: border-box;
}
.calc-form .form-group input:focus,
.calc-form .form-group select:focus { outline: none; border-color: var(--accent); background: #fff; }
/* .calc-body — replaces .calc-form for new calculator */
.calc-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.calc-body .form-group label {
  font-size: 0.72rem; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 6px;
}
.calc-body .form-group input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.9rem; background: var(--bg-soft);
  font-family: inherit; transition: all 0.3s; box-sizing: border-box;
}
.calc-body .form-group input:focus { outline: none; border-color: var(--accent); background: #fff; }

/* Availability status */
.availability-status { min-height: 0; transition: min-height 0.2s; }
.avail-loading {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted); padding: 10px 14px;
  background: var(--bg-soft); border-radius: 10px;
}
.avail-spinner {
  width: 14px; height: 14px; border: 2px solid var(--border);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin 0.8s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.avail-ok {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: #1E8449;
  background: #E8F5E9; border-radius: 10px; padding: 10px 14px;
}
.avail-ok svg { color: #1E8449; flex-shrink: 0; }
.avail-no {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: #C0392B;
  background: #FDEDEC; border-radius: 10px; padding: 10px 14px;
}
.avail-no svg { flex-shrink: 0; }
.avail-no a { color: #C0392B; font-weight: 700; text-decoration: underline; }
.avail-error {
  font-size: 0.8rem; color: var(--text-muted); padding: 8px 0;
}

/* Calc result block */
.calc-result {
  background: linear-gradient(135deg, rgba(232,168,56,0.08), rgba(232,168,56,0.03));
  border: 1px solid rgba(232,168,56,0.25);
  border-radius: 14px; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 0;
}
.calc-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-light);
  padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.calc-row:last-child { border-bottom: none; }
.calc-row strong { font-weight: 700; color: var(--primary); }
.calc-subtotal { font-weight: 600; color: var(--text); }

/* Discount row */
.calc-discount { position: relative; }
.discount-line {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px dashed rgba(39,174,96,0.3);
}
.discount-label { display: flex; align-items: center; gap: 6px; font-size: 0.83rem; color: #1E8449; }
.discount-icon { font-size: 0.95rem; }
.discount-value { font-weight: 700 !important; color: #1E8449 !important; font-size: 0.9rem; }
.discount-badge {
  position: absolute; top: 6px; right: -10px;
  background: linear-gradient(135deg, #27AE60, #1E8449);
  color: #fff; font-family: var(--font-heading); font-size: 0.65rem;
  font-weight: 800; padding: 3px 8px; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(39,174,96,0.35);
}

/* Total row */
.calc-total {
  padding: 10px 0 7px !important;
  border-top: 2px solid var(--accent) !important;
  border-bottom: none !important;
  margin-top: 4px;
}
.calc-total > span { font-weight: 700; font-size: 0.9rem; color: var(--primary-dark); }
.total-pricing { display: flex; align-items: baseline; gap: 8px; }
.old-price {
  font-size: 0.82rem; color: var(--text-muted);
  text-decoration: line-through; font-weight: 500;
}
.new-price {
  font-family: var(--font-heading); font-size: 1.3rem !important;
  font-weight: 900 !important; color: var(--accent) !important;
}

/* Deposit row */
.calc-deposit { font-size: 0.78rem !important; color: var(--text-muted) !important; }
.calc-deposit strong { color: var(--text-muted) !important; font-weight: 600 !important; font-size: 0.78rem !important; }

/* Savings message */
.calc-savings {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: #1E8449; font-weight: 600;
  background: #E8F5E9; border-radius: 8px;
  padding: 8px 12px; margin-top: 4px;
}
.calc-savings strong { color: #1E8449; }

/* Calc actions — btn-form-reserve now has flex layout */
.calc-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-form-reserve {
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-form-reserve:disabled { cursor: not-allowed; }

/* Legacy .calc-summary still in use on some pages */
.calc-summary {
  background: linear-gradient(135deg,rgba(232,168,56,0.1),rgba(232,168,56,0.05));
  border: 1px solid rgba(232,168,56,0.3);
  border-radius: 12px; padding: 16px; margin: 4px 0;
}
.summary-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 5px 0; color: var(--text-light); }
.summary-row.total {
  font-weight: 800; color: var(--primary-dark); font-size: 1.15rem;
  padding-top: 12px; margin-top: 8px; border-top: 2px solid var(--accent);
}
.btn-whatsapp-green {
  background: #25D366; color: #fff !important; border: none;
  padding: 14px 20px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; transition: all 0.3s; text-decoration: none;
}
.btn-whatsapp-green:hover { background: #1DA851; transform: translateY(-2px); }
.btn-form-reserve {
  background: var(--accent); color: #fff; border: none;
  padding: 14px 20px; border-radius: 50px; font-weight: 700;
  font-size: 0.9rem; cursor: pointer; transition: all 0.3s;
  font-family: var(--font-heading);
}
.btn-form-reserve:hover { background: var(--accent-hover); transform: translateY(-2px); }
.calc-trust-info { padding: 16px 24px 20px; border-top: 1px solid var(--border); margin-top: 4px; }
.trust-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-light); padding: 6px 0;
}
.trust-line svg { flex-shrink: 0; color: #27AE60; }
.calc-call { text-align: center; padding: 16px 24px; background: var(--bg-soft); }
.calc-call-text { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.calc-call-number {
  font-family: var(--font-heading); font-size: 1.1rem;
  font-weight: 800; color: var(--primary); text-decoration: none;
  display: block;
}
.calc-call-number:hover { color: var(--accent); }

/* ========================================
   BOOKING MODAL (car pages)
   ======================================== */
.booking-modal { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.booking-modal.active { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(15,36,64,0.75); backdrop-filter: blur(5px); }
.modal-content {
  position: relative; background: #fff; border-radius: 20px;
  padding: 36px; max-width: 540px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--bg-soft);
  font-size: 1.5rem; cursor: pointer; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }
.modal-header h2 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary-dark); margin-bottom: 4px; }
.modal-header p { color: var(--accent); font-weight: 700; margin-bottom: 24px; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal-form label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 6px; display: block; }
.modal-form input, .modal-form select, .modal-form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.9rem; font-family: inherit;
  box-sizing: border-box; transition: border-color 0.2s;
}
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus { outline: none; border-color: var(--accent); }
.modal-success { text-align: center; padding: 20px 0; }
.modal-success h3 { color: #27AE60; font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 8px; }
.modal-success p { color: var(--text-light); font-size: 0.9rem; }

/* ========================================
   CAR DETAIL SECTIONS (car-section)
   ======================================== */
.car-section {
  background: var(--bg); border-radius: 20px;
  padding: 32px; margin-bottom: 24px;
  border: 1px solid var(--border);
}
.car-section h2 {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 800; color: var(--primary-dark);
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}
.specs-grid-full { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.spec-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; background: var(--bg-soft); border-radius: 12px;
}
.spec-icon {
  font-size: 1.5rem; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,168,56,0.15); border-radius: 10px; flex-shrink: 0;
}
.spec-row .spec-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.spec-row strong { color: var(--primary-dark); font-size: 0.95rem; }
.includes-grid-pro { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.include-item-pro {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: rgba(39,174,96,0.08);
  border-radius: 12px; border-left: 3px solid #27AE60;
}
.include-item-pro h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); margin: 0 0 4px 0; }
.include-item-pro p { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.car-reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-card-pro {
  background: var(--bg-soft); padding: 22px;
  border-radius: 14px; border-left: 3px solid var(--accent);
}
.review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.review-card-head h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin: 0; color: var(--primary-dark); }
.review-date { font-size: 0.78rem; color: var(--text-muted); }
.review-card-head .review-stars { color: #FFC107; margin-left: auto; font-size: 0.95rem; }
.review-card-pro > p { font-size: 0.88rem; color: var(--text-light); font-style: italic; line-height: 1.7; margin: 0; }

/* Legacy review styles (kept for compat) */
.car-reviews-section { margin-top: 40px; }
.car-reviews-section h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 20px; }
.review-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-bottom: 14px; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.reviewer-name { font-weight: 700; color: var(--primary-dark); font-size: 0.9rem; }
.reviewer-date { font-size: 0.72rem; color: var(--text-muted); }
.review-stars { color: #FFC107; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 8px; }
.review-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }
/* Contact note below widget */
.widget-contact-note { text-align: center; margin-top: 16px; font-size: 0.78rem; color: var(--text-muted); }
.widget-call-link { display: block; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 800; color: var(--primary); text-decoration: none; margin-top: 4px; }
.widget-call-link:hover { color: var(--accent); }
@media (max-width: 768px) { .specs-grid-full, .includes-grid-pro { grid-template-columns: 1fr; } .modal-form .form-row { grid-template-columns: 1fr; } }
.similar-cars {
  margin-top: 60px;
  padding: 50px 0;
}

.similar-cars h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 30px;
  text-align: center;
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.similar-card {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.similar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 36, 64, 0.15);
  border-color: var(--accent);
}

.similar-card-img {
  position: relative;
  height: 200px;
  background: var(--bg-soft);
  overflow: hidden;
}

.similar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.similar-card:hover .similar-card-img img {
  transform: scale(1.08);
}

.similar-card-img .badge-status {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #27AE60;
  display: flex;
  align-items: center;
  gap: 5px;
}

.similar-card-img .badge-status .dot {
  width: 7px;
  height: 7px;
  background: #27AE60;
  border-radius: 50%;
}

.similar-card-img .badge-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.similar-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.similar-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 12px;
}

.similar-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0;
}

.similar-card-rating {
  text-align: right;
  flex-shrink: 0;
}

.similar-card-rating .stars-mini {
  color: #FFC107;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  display: block;
}

.similar-card-rating .rating-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
}

.similar-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.similar-card-price {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.similar-card-price .amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-dark);
}

.similar-card-price .amount small {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

.similar-card-price .period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.similar-card-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8px;
  margin-top: 14px;
}

.similar-card-actions .btn-similar-outline {
  padding: 11px 14px;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.similar-card-actions .btn-similar-outline:hover {
  background: var(--primary);
  color: #fff;
}

.similar-card-actions .btn-similar-primary {
  padding: 11px 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.similar-card-actions .btn-similar-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .similar-grid {
    grid-template-columns: 1fr;
  }
  .similar-cars h2 {
    font-size: 1.5rem;
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .car-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .car-booking-widget { position: static; }
  .car-detail-right {
    position: static !important;
    top: auto !important;
    order: 99;
  }
  .booking-calculator {
    position: static !important;
    top: auto !important;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .car-detail-page {
    padding-top: 100px !important;
    padding-bottom: 60px;
  }
  .car-breadcrumb {
    font-size: 0.78rem;
    margin-bottom: 20px;
  }
  .car-detail-grid {
    gap: 24px;
  }
  .car-specs-full { grid-template-columns: repeat(2, 1fr); }
  .car-includes-grid { grid-template-columns: 1fr; }
  .car-includes-list { grid-template-columns: 1fr; }
  .fleet-card-pro { max-width: 100%; }
  .fleet-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-actions { grid-template-columns: 1fr; }
  .car-detail-right {
    order: 99;
    margin-top: 20px;
  }
  .booking-calculator {
    border-radius: 16px;
    border-width: 1.5px;
  }
  .calc-price-header {
    padding: 24px 20px 20px;
  }
  .calc-price .amount {
    font-size: 2.2rem;
  }
  .calc-form {
    padding: 20px;
  }
  .calc-form .form-group input,
  .calc-form .form-group select {
    padding: 14px 16px;
    font-size: 1rem;
  }
  .btn-whatsapp-green,
  .btn-form-reserve {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  .calc-trust-info {
    padding: 16px 20px 20px;
  }
}

/* Mobile Sticky CTA Bar */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }
  .mobile-sticky-cta .price-mobile {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
  }
  .mobile-sticky-cta .price-mobile small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
  }
  .mobile-sticky-cta .btn-cta-mobile {
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }
}
/* WhatsApp float above sticky CTA only on pages that have it */
@media (max-width: 768px) {
  body:has(.mobile-sticky-cta) .whatsapp-float {
    bottom: 82px !important;
  }
}
@media (min-width: 769px) {
  .mobile-sticky-cta {
    display: none;
  }
}

/* ========================================
   WHY V2 — Pourquoi R7 CARS
   ======================================== */
.why-v2-section {
  padding: 55px 0;
  background: #FFF8F3;
  position: relative;
  overflow: hidden;
}
.why-v2-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(232,168,56,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15,36,64,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.why-v2-section > * { position: relative; z-index: 1; }
.why-v2-section .section-header { margin-bottom: 50px; }
.why-v2-section .section-header h2 { font-size: 2.4rem; margin-bottom: 12px; }
.why-v2-section .section-header p { font-size: 1rem; }

/* Stats banner */
.why-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--primary);
  border-radius: 20px;
  padding: 36px 30px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.why-stat-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 4px;
}
.why-stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: inline;
}
.why-stat-plus {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: inline;
  margin-left: 2px;
}
.why-stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.why-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* Cards grid — 4 colonnes en ligne */
.why-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}
.why-v2-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(15,36,64,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: left;
  transition: var(--transition);
}
.why-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.why-v2-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}
.why-v2-icon svg { width: 22px; height: 22px; }
.why-v2-card:hover .why-v2-icon {
  background: var(--accent);
  color: #fff;
}
.why-v2-content { width: 100%; }
.why-v2-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 8px;
}
.why-v2-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.why-v2-content p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 12px;
}
.why-v2-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  width: 100%;
}
.metric-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}
.metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========================================
   STEPS — avec voiture animée
   ======================================== */
/* ========================================
   STEPS V2 — How it works
   ======================================== */
.steps-v2-section {
  padding: 90px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.steps-v2-section .section-header {
  margin-bottom: 80px;
}

.steps-v2-wrapper {
  position: relative;
  padding: 0 20px;
}

.steps-v2-line {
  position: absolute;
  top: 60px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(15, 36, 64, 0.15) 0,
    rgba(15, 36, 64, 0.15) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.steps-v2-car {
  position: absolute;
  top: 35px;
  left: calc(16.66% - 45px);
  z-index: 3;
  animation: driveAcrossSteps 9s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(15, 36, 64, 0.2));
}

@keyframes driveAcrossSteps {
  0%, 8% {
    left: calc(16.66% - 45px);
  }
  25%, 33% {
    left: calc(50% - 45px);
  }
  50%, 58% {
    left: calc(83.33% - 45px);
  }
  75%, 83% {
    left: calc(50% - 45px);
  }
  100% {
    left: calc(16.66% - 45px);
  }
}

.steps-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.step-v2-card {
  text-align: center;
  padding: 0 10px;
}

.step-v2-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-v2-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px dashed;
  border-radius: 50%;
}

.step-icon-1 { background: #0F6E56; color: #fff; }
.step-icon-1::before { border-color: #0F6E56; opacity: 0.35; }

.step-icon-2 { background: #E8A838; color: #fff; }
.step-icon-2::before { border-color: #E8A838; opacity: 0.4; }

.step-icon-3 { background: #1B3A5C; color: #fff; }
.step-icon-3::before { border-color: #1B3A5C; opacity: 0.35; }

.step-v2-card:hover .step-v2-icon {
  transform: translateY(-4px) scale(1.03);
}

.step-v2-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.step-num-v2 {
  color: var(--primary-dark);
}

.step-v2-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* Steps Grid — saas.html & other pages */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.steps-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .steps-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .steps-grid,
  .steps-grid-4 { grid-template-columns: 1fr; gap: 24px; }
}

.step-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,58,92,0.10);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .steps-v2-section { padding: 60px 0; }
  .steps-v2-section .section-header { margin-bottom: 50px; }
  .steps-v2-grid { grid-template-columns: 1fr; gap: 50px; }
  .steps-v2-line, .steps-v2-car { display: none; }
  .step-v2-icon { width: 100px; height: 100px; margin-bottom: 20px; }
  .step-v2-icon svg { width: 36px; height: 36px; }
  .step-v2-card h3 { font-size: 1.15rem; }
  .step-v2-card p { font-size: 0.88rem; }
}

/* ========================================
   TESTIMONIALS — Google Reviews Style
   ======================================== */
.testimonials-section {
  background: var(--bg-soft);
  padding: 70px 0;
}
.testimonials-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.overall-stars {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: var(--bg);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.big-rating {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stars-row {
  color: #FFC107;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.based-on {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.testimonials-title-block .section-tag { margin-bottom: 12px; }
.testimonials-title-block h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.15;
  margin-bottom: 12px;
}
.testimonials-title-block p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 540px;
}
.all-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.88rem;
}
.all-reviews-btn svg { background: #fff; border-radius: 50%; padding: 2px; }
.reviews-wrapper {
  position: relative;
  padding: 0 30px;
}
.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.stars-mini {
  color: #FFC107;
  font-size: 1rem;
  letter-spacing: 1px;
}
.review-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}
.review-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-info { flex: 1; min-width: 0; }
.author-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}
.review-date { font-size: 0.76rem; color: var(--text-muted); }
.verified-tag { flex-shrink: 0; }
.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--primary);
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-arrow:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}
.review-prev { left: -10px; }
.review-next { right: -10px; }

/* ========================================
   DESTINATIONS
   ======================================== */
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 280px; cursor: pointer; transition: var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover img { transform: scale(1.1); }
.dest-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(15,36,64,0.9));
  color: #fff;
}
.dest-overlay h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.dest-distance { font-size: 0.85rem; color: var(--accent); font-weight: 600; }

/* ========================================
   SERVICES V2 — Services Inclus
   ======================================== */
.services-v2-section {
  padding: 80px 0;
  background: #FFF8F3;
  position: relative;
  overflow: hidden;
}
.services-v2-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.service-v2-card {
  background: var(--bg);
  border-radius: 18px;
  padding: 32px 24px 28px;
  border: 1.5px solid transparent;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(15, 36, 64, 0.04);
  overflow: hidden;
}
.service-v2-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--accent), #FFD863);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-v2-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(15, 36, 64, 0.15);
}
.service-v2-card:hover::before {
  transform: scaleX(1);
}
.service-v2-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #27AE60, #1E8449);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}
.service-v2-card:nth-child(3) .service-v2-badge,
.service-v2-card:nth-child(4) .service-v2-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 4px 12px rgba(15, 36, 64, 0.3);
}
.service-v2-card:nth-child(7) .service-v2-badge,
.service-v2-card:nth-child(8) .service-v2-badge {
  background: linear-gradient(135deg, var(--accent), #D4952E);
  box-shadow: 0 4px 12px rgba(232, 168, 56, 0.3);
}
.service-v2-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232,168,56,0.15), rgba(232,168,56,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.service-v2-card:hover .service-v2-icon {
  background: linear-gradient(135deg, var(--accent), #FFD863);
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
}
.service-v2-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.service-v2-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-section { padding: 50px 0; }
.gallery-section .section-header { margin-bottom: 30px; }
.gallery-section .section-header h2 { font-size: 1.8rem; margin-bottom: 6px; }
.gallery-section .section-header p { font-size: 0.88rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 36, 64, 0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.lightbox {
  display: none; position: fixed; z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92); align-items: center;
  justify-content: center; padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 12px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 3rem; cursor: pointer; line-height: 1; }

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,36,64,0.75) 0%, rgba(15,36,64,0.55) 50%, rgba(27,58,92,0.75) 100%);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.video-tag {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.video-content h2 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.video-content h2 em {
  color: var(--accent);
  font-style: normal;
  position: relative;
}

.video-content h2 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 4px;
  z-index: -1;
}

.video-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.video-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .video-section { min-height: 440px; }
  .video-content h2 { font-size: 2rem; }
  .video-content p { font-size: 0.95rem; }
  .video-actions { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .video-actions .btn { width: 100%; justify-content: center; }
}

/* ========================================
   PARTNERS
   ======================================== */
.partners-grid { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.partner-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-heading);
  color: var(--text-muted); font-size: 1.1rem; transition: var(--transition);
}
.partner-circle:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.05); }

/* ========================================
   FAQ — image left + accordion right
   ======================================== */
.faq-section { background: #FFF8F3; padding: 80px 0; }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.faq-image { position: relative; }
.faq-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(15,36,64,0.25));
}

.faq-content .section-tag {
  color: var(--accent);
  background: transparent;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 16px;
  display: inline-block;
}

.faq-content h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.15;
  margin-bottom: 40px;
}

/* Scoped to .faq-section to avoid conflict with saas.html FAQ */
.faq-section .faq-list {
  display: flex; flex-direction: column; gap: 0;
  max-width: none; margin: 0;
}
.faq-section .faq-item {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(15,36,64,0.1);
  border-radius: 0;
  overflow: visible;
  transition: none;
}
.faq-section .faq-item:first-child { border-top: 1px solid rgba(15,36,64,0.1); }
.faq-section .faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: left;
  transition: color 0.3s;
  gap: 0;
}
html[dir="rtl"] .faq-section .faq-question { text-align: right; }
.faq-section .faq-question:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.4s ease;
  margin-left: 20px;
}
html[dir="rtl"] .faq-chevron { margin-left: 0; margin-right: 20px; }
.faq-section .faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}
.faq-section .faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-section .faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
  padding: 0 40px 0 0;
}
html[dir="rtl"] .faq-section .faq-answer p { padding: 0 0 0 40px; }

@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-image { max-width: 500px; margin: 0 auto; }
  .faq-content h2 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .faq-section { padding: 60px 0; }
  .faq-content h2 { font-size: 1.6rem; margin-bottom: 24px; }
  .faq-section .faq-question { font-size: 0.92rem; padding: 18px 0; }
  .faq-section .faq-answer p { padding-right: 0; font-size: 0.88rem; }
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl); padding: 60px 50px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.newsletter-content h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.newsletter-content p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin: 0; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1; padding: 16px 20px; border-radius: 50px;
  border: none; font-size: 0.95rem; font-family: inherit; outline: none;
}
.newsletter-form button { white-space: nowrap; }

/* ---- Airport section: flight animation ---- */
#service-aeroport { overflow: hidden; }

.flight-anim {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 90px;
  pointer-events: none;
  z-index: 0;
}
.flight-dashed-path {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.flight-plane-icon {
  position: absolute;
  top: 18px;
  opacity: 0;
  animation: planeGo 10s cubic-bezier(.4, 0, .6, 1) 0.5s infinite;
}
.flight-dest-marker {
  position: absolute;
  right: 80px;
  top: 48px;
  width: 12px;
  height: 12px;
}
.flight-pulse-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
}
.flight-pulse-ring {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  position: absolute;
  top: 0; left: 0;
  animation: ringPulse 2.2s ease-out infinite;
}
.flight-pulse-ring::after {
  content: '';
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  position: absolute;
  top: 0; left: 0;
  animation: ringPulse 2.2s ease-out 0.8s infinite;
}

@keyframes planeGo {
  0%   { left: -50px; top: 60px; opacity: 0; }
  7%   { opacity: 0.55; }
  30%  { top: 20px; }
  55%  { top: 28px; }
  93%  { opacity: 0.5; }
  100% { left: calc(100% + 50px); top: 52px; opacity: 0; }
}
@keyframes ringPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(4); opacity: 0; }
}

/* ---- Footer mid strip (newsletter + paiements) ---- */
.footer-mid-strip {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.footer-mid-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
/* Newsletter inline */
.footer-newsletter-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-nl-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  font-weight: 500;
}
.footer-newsletter-inline input {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 0.83rem;
  font-family: inherit;
  outline: none;
  width: 200px;
}
.footer-newsletter-inline input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-inline input:focus { border-color: var(--accent); background: rgba(255,255,255,0.11); }
.btn-footer-nl { padding: 8px 18px !important; font-size: 0.83rem !important; }
/* Payment icons */
.footer-pay-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-pay-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.footer-pay-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}
.fp-icon {
  width: 38px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 5px;
  font-family: var(--font-heading);
  font-weight: 900; color: #fff;
  font-size: 0.46rem; text-align: center; letter-spacing: 0.3px;
  transition: opacity 0.2s; cursor: default;
}
.fp-icon:hover { opacity: 0.75; }
.fp-icon.logo-visa { background: #1A1F71; }
.fp-icon.logo-mastercard { background: #000; position: relative; overflow: hidden; }
.fp-icon.logo-mastercard::before {
  content: ''; width: 12px; height: 12px; background: #EB001B;
  border-radius: 50%; position: absolute; left: 5px; z-index: 1;
}
.fp-icon.logo-mastercard::after {
  content: ''; width: 12px; height: 12px; background: #F79E1B;
  border-radius: 50%; position: absolute; right: 5px; mix-blend-mode: screen;
}
.fp-icon.logo-amex { background: #2E77BC; font-size: 0.34rem; }
.fp-icon.logo-apple { background: #000; font-size: 0.68rem; }
.fp-icon.logo-google { background: #fff; color: #5F6368; border: 1px solid rgba(0,0,0,0.15); font-size: 0.62rem; }
.fp-icon.logo-cash { background: #27AE60; font-size: 0.48rem; }
.fp-icon.logo-bank { background: #0277BD; font-size: 0.3rem; }
@media (max-width: 768px) {
  .footer-mid-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-newsletter-inline input { width: 160px; }
}

/* ========================================
   BLOG
   ======================================== */
.blog-filters { display:flex; gap:12px; justify-content:center; margin-bottom:40px; flex-wrap:wrap; }
.blog-filter-btn { padding:10px 22px; border:1.5px solid var(--border); border-radius:50px; background:var(--bg); cursor:pointer; font-size:0.88rem; font-weight:600; color:var(--text); transition:var(--transition); font-family:var(--font-body); }
.blog-filter-btn.active, .blog-filter-btn:hover { background:var(--primary); color:#fff; border-color:var(--primary); }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.blog-card { background:var(--bg); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); transition:var(--transition); cursor:pointer; text-decoration:none; color:inherit; display:block; }
.blog-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--accent); }
.blog-card-img { position:relative; height:220px; overflow:hidden; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
.blog-card:hover .blog-card-img img { transform:scale(1.08); }
.blog-card-badge { position:absolute; top:14px; left:14px; background:var(--accent); color:#fff; padding:5px 12px; border-radius:50px; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; }
html[dir="rtl"] .blog-card-badge { left:auto; right:14px; }
.blog-card-body { padding:22px 20px; }
.blog-card-body h3 { font-family:var(--font-heading); font-size:1.15rem; font-weight:800; color:var(--primary-dark); margin-bottom:10px; line-height:1.3; }
.blog-card-body p { color:var(--text-light); font-size:0.88rem; line-height:1.6; margin-bottom:14px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.blog-card-meta { display:flex; gap:12px; font-size:0.78rem; color:var(--text-muted); border-top:1px solid var(--border); padding-top:14px; }

/* Article pages */
.article-hero { position:relative; min-height:500px; display:flex; align-items:flex-end; padding:180px 0 60px; background-size:cover; background-position:center; }
.article-hero::before { content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(15,36,64,0.4), rgba(15,36,64,0.85)); }
.article-hero .container { position:relative; z-index:1; max-width:900px; }
.article-hero-badge { display:inline-block; background:var(--accent); color:#fff; padding:6px 16px; border-radius:50px; font-size:0.78rem; font-weight:700; text-transform:uppercase; margin-bottom:16px; }
.article-hero h1 { font-family:var(--font-heading); font-size:3rem; font-weight:900; color:#fff; line-height:1.15; margin-bottom:20px; }
.article-hero-meta { display:flex; gap:24px; color:rgba(255,255,255,0.85); font-size:0.88rem; flex-wrap:wrap; }
.article-hero-meta span { display:flex; align-items:center; gap:6px; }
.article-body { max-width:800px; margin:0 auto; padding:80px 24px; }
.article-intro { font-size:1.15rem; line-height:1.7; color:var(--text); margin-bottom:40px; font-weight:500; padding-left:24px; border-left:3px solid var(--accent); }
html[dir="rtl"] .article-intro { padding-left:0; padding-right:24px; border-left:none; border-right:3px solid var(--accent); }
.article-body h2 { font-family:var(--font-heading); font-size:1.8rem; font-weight:800; color:var(--primary-dark); margin:40px 0 16px; }
.article-body p { color:var(--text-light); line-height:1.8; margin-bottom:18px; font-size:1rem; }
.article-body ul { margin:16px 0 20px 20px; }
.article-body ul li { color:var(--text-light); line-height:1.8; margin-bottom:8px; }
html[dir="rtl"] .article-body ul { margin-left:0; margin-right:20px; }
.tip-box { background:var(--accent-light); border-left:4px solid var(--accent); border-radius:12px; padding:24px 28px; margin:30px 0; display:flex; gap:16px; align-items:flex-start; }
html[dir="rtl"] .tip-box { border-left:none; border-right:4px solid var(--accent); }
.tip-box-icon { font-size:1.6rem; flex-shrink:0; }
.tip-box-content h4 { font-family:var(--font-heading); font-weight:800; color:var(--primary-dark); margin-bottom:6px; font-size:1rem; }
.tip-box-content p { color:var(--text); margin:0; font-size:0.92rem; }
.article-cta { background:linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius:var(--radius-xl); padding:50px 40px; text-align:center; margin:50px 0; }
.article-cta h3 { font-family:var(--font-heading); font-size:1.8rem; color:#fff; margin-bottom:12px; }
.article-cta p { color:rgba(255,255,255,0.85); margin-bottom:24px; }
.related-articles { background:var(--bg-soft); padding:80px 0; }
.related-articles h2 { text-align:center; margin-bottom:40px; font-family:var(--font-heading); font-size:1.8rem; font-weight:800; color:var(--primary-dark); }

@media (max-width:1024px) { .blog-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:768px) {
  .blog-grid { grid-template-columns:1fr; }
  .article-hero h1 { font-size:2rem; }
  .article-body { padding:50px 20px; }
  .article-body h2 { font-size:1.4rem; }
  .article-cta { padding:36px 24px; }
  .article-cta h3 { font-size:1.4rem; }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(rgba(15,36,64,0.85), rgba(27,58,92,0.9)), url('images/keys-handover.jpg') center/cover;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(232,168,56,0.1);
  border-radius: 50%;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}
.cta-phone svg { color: var(--accent); }

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { padding-top: 20px; }
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.contact-info > p { color: var(--text-light); font-size: 1rem; margin-bottom: 36px; line-height: 1.8; }
.info-items { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { color: var(--accent); width: 22px; height: 22px; }
.info-item h4 { font-weight: 700; color: var(--primary); margin-bottom: 4px; font-size: 0.95rem; }
.info-item p { color: var(--text-light); font-size: 0.9rem; }
.info-item a { color: var(--accent); font-weight: 600; }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.social-link svg { width: 20px; height: 20px; }

/* ========================================
   GOOGLE MAP
   ======================================== */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 40px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ========================================
   FOOTER PRO
   ======================================== */
.footer-pro {
  background: linear-gradient(135deg, #0A1628 0%, #1B3A5C 100%);
  color: #fff;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.footer-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 20%, #E8A838 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, #E8A838 0%, transparent 30%);
  pointer-events: none;
}
.footer-pro .container {
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-pro-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr 1.3fr;
  gap: 40px;
  padding: 70px 0 50px;
}

/* Brand */
.footer-pro-brand { padding-right: 20px; }
.footer-pro-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-pro-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #E8A838, #D4952E);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 900; color: #fff;
  box-shadow: 0 8px 20px rgba(232,168,56,0.4);
}
.footer-pro-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 900;
  color: #E8A838; letter-spacing: 2px;
}
.footer-pro-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem; line-height: 1.7;
  margin-bottom: 24px; max-width: 320px;
}
.footer-pro-social { display: flex; gap: 10px; }
.social-link-pro {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link-pro:hover {
  background: #E8A838; border-color: #E8A838; color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232,168,56,0.4);
}

/* Column titles */
.footer-pro-title {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 800; color: #fff;
  margin: 0 0 20px 0;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: 0.5px;
}
.title-bar {
  width: 28px; height: 3px;
  background: linear-gradient(to right, #E8A838, transparent);
  border-radius: 2px;
}

/* Nav links */
.footer-pro-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-pro-links li { margin: 0; padding: 0; }
.footer-pro-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem; text-decoration: none;
  transition: all 0.3s ease;
  display: flex; align-items: center; gap: 8px; padding: 4px 0;
}
.footer-pro-links a svg {
  color: #E8A838; opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease; flex-shrink: 0;
}
.footer-pro-links a:hover { color: #E8A838; padding-left: 6px; }
.footer-pro-links a:hover svg { opacity: 1; transform: translateX(0); }
.link-pro-highlight { color: #E8A838 !important; font-weight: 700; }
.link-pro-highlight svg { opacity: 1 !important; transform: translateX(0) !important; }

/* Contact list */
.footer-pro-contact {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.footer-pro-contact li { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon-box {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(232,168,56,0.12);
  border: 1px solid rgba(232,168,56,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #E8A838; flex-shrink: 0;
}
.footer-pro-contact li > div:last-child {
  display: flex; flex-direction: column; gap: 2px;
}
.contact-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
}
.contact-value {
  color: rgba(255,255,255,0.85); font-size: 0.85rem;
  font-weight: 500; text-decoration: none; transition: color 0.3s;
}
a.contact-value:hover { color: #E8A838; }

/* Bottom bar */
.footer-pro-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  position: relative; z-index: 1;
}
.footer-pro-bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-pro-bottom p {
  color: rgba(255,255,255,0.5); font-size: 0.82rem; margin: 0;
}
.footer-made {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-pro-top { grid-template-columns: repeat(2, 1fr); gap: 36px 30px; }
  .footer-pro-brand { grid-column: 1 / -1; padding-right: 0; }
}
@media (max-width: 640px) {
  .footer-pro .container { padding: 0 20px; }
  .footer-pro-top { grid-template-columns: 1fr; gap: 30px; padding: 50px 0 30px; }
  .footer-pro-brand { text-align: center; }
  .footer-pro-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .footer-pro-social { justify-content: center; }
  .footer-pro-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-pro-bottom p { font-size: 0.76rem; }
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: floatBtn 3s ease-in-out infinite;
}
html[dir="rtl"] .whatsapp-float { right: auto; left: 24px; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes floatBtn { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, var(--bg-soft), #E3EBF5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: var(--radius);
}
.value-item svg { flex-shrink: 0; color: var(--accent); width: 24px; height: 24px; margin-top: 2px; }
.value-item h4 { font-weight: 700; color: var(--primary); font-size: 0.95rem; margin-bottom: 4px; }
.value-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ========================================
   FLEET PAGE — FILTERS
   ======================================== */
.fleet-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--bg-soft);
  color: var(--text-light);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .reviews-track { grid-template-columns: repeat(3, 1fr); }
}

/* --- WIDE (max-width: 1200px) --- */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr 420px; gap: 30px; }
  .hero h1 { font-size: 2.4rem; }
}

/* --- TABLET (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .nav-cta { padding: 6px 14px; font-size: 0.72rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-form-card { max-width: 480px; margin: 0 auto; }
  .why-v2-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .why-v2-card { padding: 20px 16px; }
  .why-v2-content h3 { font-size: 0.92rem; }
  .services-v2-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .reviews-track { grid-template-columns: repeat(2, 1fr); }
  .testimonials-top { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .overall-stars { justify-content: center; }
  .testimonials-title-block p { margin-left: auto; margin-right: auto; }
  .testimonials-title-block h2 { font-size: 1.8rem; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-card { grid-template-columns: 1fr; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
}

/* --- MOBILE (max-width: 768px) --- */
@media (max-width: 768px) {
  /* Navbar */
  .nav-inner { height: 64px; }
  .navbar .logo { font-size: 1.2rem; }
  .navbar .logo svg { width: 30px; height: 30px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-actions { gap: 10px; }
  .nav-dropdown-btn { padding: 6px 10px; font-size: 0.75rem; }
  .mobile-toggle { display: flex; }
  .mobile-toggle span { width: 22px; height: 2px; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid var(--accent);
    z-index: 999;
  }
  .nav-links.active a { color: var(--text) !important; font-size: 1rem; }
  .nav-links.active a:hover,
  .nav-links.active a.active { color: var(--accent) !important; }
  .nav-links.active a.nav-pro { color: var(--accent) !important; }

  /* Hero */
  .hero .container { padding-left: 20px; padding-right: 20px; }
  .hero {
    padding: 110px 0 50px;
    background-size: cover !important;
    background-position: center center !important;
    animation: none;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 1.7rem; line-height: 1.2; }
  .hero-text { font-size: 0.9rem; }
  /* Hero buttons — côte à côte en mobile */
  .hero-buttons {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px;
    width: 100%;
  }
  .hero-buttons .btn {
    flex: 1;
    padding: 13px 16px !important;
    font-size: 0.82rem !important;
    white-space: nowrap;
    min-width: 0;
    text-align: center;
    justify-content: center;
  }
  .hero-buttons .btn svg { width: 16px; height: 16px; }
  .hero-stats {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 16px;
    margin-top: 30px;
    padding-top: 24px;
    justify-content: space-between;
  }
  .hero-stat {
    flex: 1;
    min-width: 0;
  }
  .hero-stat h3 { font-size: 1.6rem; }
  .hero-stat p { font-size: 0.72rem; line-height: 1.3; }
  .hero-form-card {
    padding: 24px;
    margin-top: 20px;
    max-width: 100%;
    margin-left: 0;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255,255,255,0.98) !important;
    position: static !important;
    transform: none !important;
  }
  .hero-car-strip { max-width: 100%; height: 60px; }
  .moving-car svg { width: 130px; }
  @keyframes driveCarLoop {
    0%   { transform: translateX(-150px); }
    100% { transform: translateX(100vw); }
  }

  /* General */
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 30px; }
  .section-header h2 { font-size: 1.8rem; }
  .hero { padding: 100px 0 50px; }
  .container { padding: 0 16px; }
  .form-row { grid-template-columns: 1fr; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0; }

  /* Why v2 — mobile */
  .why-v2-section { padding: 40px 0; }
  .why-v2-section .section-header h2 { font-size: 1.7rem; }
  .why-stats-row { flex-wrap: wrap; gap: 20px; padding: 24px 20px; margin-bottom: 32px; }
  .why-stat-divider { display: none; }
  .why-stat-num { font-size: 2.2rem; }
  .why-v2-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .why-v2-card { padding: 20px 16px; }

  /* Services v2 — handled below at 640px */

  /* Steps — handled in steps block above */

  /* Testimonials */
  .testimonials-top { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .overall-stars { justify-content: center; padding: 18px 24px; max-width: 280px; margin: 0 auto; }
  .big-rating { font-size: 2.6rem; }
  .testimonials-title-block h2 { font-size: 1.6rem; }
  .testimonials-title-block p { font-size: 0.9rem; max-width: 100%; }
  .all-reviews-btn { padding: 12px 24px; font-size: 0.82rem; }
  .reviews-wrapper { padding: 0; }
  .reviews-track { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 22px 20px; }
  .review-text { font-size: 0.85rem; }
  .review-arrow { display: none; }

  /* New sections */
  .destinations-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .partner-circle { width: 64px; height: 64px; font-size: 0.9rem; }
  .partners-grid { gap: 16px; }
  .newsletter-card { padding: 40px 24px; }

  /* CTA */
  .cta-content h2 { font-size: 1.8rem; }
  .cta-actions { flex-direction: column; align-items: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }


  /* Pages internes */
  .page-header { padding: 100px 0 40px !important; }
  .page-header h1 { font-size: 1.8rem; }
  .blog-article-page { padding-top: 100px !important; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero-stats {
    gap: 10px;
  }
  .hero-stat h3 {
    font-size: 1.4rem;
  }
  .hero-stat p {
    font-size: 0.68rem;
  }
}


/* Hero buttons — très petit écran */
@media (max-width: 380px) {
  .hero-buttons { gap: 8px; }
  .hero-buttons .btn {
    padding: 12px 12px !important;
    font-size: 0.75rem !important;
  }
}

/* Gallery + Services v2 — small mobile (640px) */
@media (max-width: 640px) {
  .gallery-section { padding: 40px 0; }
  .gallery-section .section-header h2 { font-size: 1.4rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; max-width: 100%; }
}
@media (max-width: 640px) {
  .services-v2-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-v2-card {
    padding: 24px 20px;
  }
  .service-v2-icon {
    width: 52px;
    height: 52px;
  }
}

/* Why v2 — breakpoints intermédiaires */
@media (max-width: 900px) {
  .why-v2-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }
}
@media (max-width: 640px) {
  .why-v2-grid { grid-template-columns: 1fr !important; }
}

/* RTL mobile fixes */
@media (max-width: 768px) {
  html[dir="rtl"] .steps-grid { direction: rtl; }
  html[dir="rtl"] .why-v2-grid { direction: rtl; }
  html[dir="rtl"] .step-card { text-align: center; }
  html[dir="rtl"] .why-v2-card { flex-direction: row-reverse; }
}

/* ========================================
   BOOKING MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-popup {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.modal-overlay.active .modal-popup {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #1ABC9C;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-transform: uppercase;
}
.modal-close:hover { background: #16a085; }

/* Header */
.modal-header { margin-bottom: 28px; }
.modal-step-badge {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.modal-car-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}
.modal-car-badge svg { color: var(--accent); }

/* Progress dots */
.modal-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.2s ease, transform 0.2s ease;
}
.progress-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}
.progress-dot.done {
  background: var(--accent);
}

/* Step sections */
.modal-step { display: none; }
.modal-step.active { display: block; }
.step-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
  margin: 24px 0 16px;
}
.step-section-title:first-child { margin-top: 0; }

/* Modal form */
.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.modal-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.modal-form-group input.error,
.modal-form-group select.error { border-color: #E74C3C; }
.modal-error-msg {
  font-size: 0.78rem;
  color: #E74C3C;
  display: none;
  margin-top: 2px;
}
.modal-error-msg.show { display: block; }
.modal-info-box {
  background: var(--accent-light);
  border: 1px solid rgba(232,168,56,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Extras checkboxes */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.extra-item:hover { border-color: var(--accent); background: var(--accent-light); }
.extra-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }
.extra-item label { font-size: 0.85rem; font-weight: 500; cursor: pointer; margin: 0; }

/* Confirm checkboxes */
.confirm-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.confirm-item input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
.confirm-item label { font-size: 0.85rem; color: var(--text); cursor: pointer; line-height: 1.5; }

/* Footer buttons */
.modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.btn-modal-prev {
  background: #E74C3C;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}
.btn-modal-prev:hover { background: #c0392b; }
.btn-modal-next {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex: 1;
  transition: background 0.2s ease;
}
.btn-modal-next:hover { background: var(--accent-hover); }
.btn-modal-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  transition: background 0.2s ease;
}
.btn-modal-submit:hover { background: var(--accent-hover); }
.btn-modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success state */
.modal-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}
.modal-success.show { display: block; }
.modal-success-icon {
  width: 64px; height: 64px;
  background: #1ABC9C;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

/* RTL adjustments */
html[dir="rtl"] .modal-close { right: auto; left: 16px; }
html[dir="rtl"] .step-section-title { border-left: none; border-right: 3px solid var(--accent); padding-left: 0; padding-right: 10px; }
html[dir="rtl"] .modal-car-badge { direction: rtl; }

/* Mobile modal */
@media (max-width: 768px) {
  .modal-popup { padding: 24px 20px; }
  .modal-form-row { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .modal-footer { flex-wrap: wrap; }
  .btn-modal-prev { width: 100%; }
  .btn-modal-next { width: 100%; }
}

/* ========================================
   SAAS LANDING PAGE — R7 Rental Pro
   ======================================== */

/* Hero SaaS */
.saas-hero {
  padding: 160px 0 100px;
  background: linear-gradient(rgba(15,36,64,0.72), rgba(15,36,64,0.58)), url('images/saas-hero.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.saas-hero-inner {
  max-width: 740px;
  position: relative;
  z-index: 1;
}
.saas-hero .hero-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
}
.saas-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.saas-hero h1 em { font-style: normal; color: var(--accent); }
.saas-hero .hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.8;
}
.saas-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.saas-hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.saas-hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.saas-hero-stat h3 span { color: var(--accent); }
.saas-hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-top: 4px; }

/* Pain Point Cards */
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pain-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  border-top: 4px solid #E74C3C;
  transition: var(--transition);
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pain-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: #FFF0EE;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-icon svg { width: 28px; height: 28px; color: #E74C3C; }
.pain-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.pain-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* Dashboard / Mobile Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.showcase-grid.reverse { direction: rtl; }
.showcase-grid.reverse > * { direction: ltr; }
html[dir="rtl"] .showcase-grid.reverse { direction: ltr; }
html[dir="rtl"] .showcase-grid.reverse > * { direction: rtl; }
.showcase-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.showcase-content > p { color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.check-list li svg { flex-shrink: 0; color: var(--accent); width: 20px; height: 20px; }
.showcase-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow-lg);
}
.showcase-image img { width: 100%; height: 100%; object-fit: cover; }

/* Feature Cards */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
html[dir="rtl"] .feature-card::after { transform-origin: right; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 60px; height: 60px;
  margin-bottom: 20px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--accent); }
.feature-icon svg { width: 28px; height: 28px; color: var(--accent); transition: color var(--transition); }
.feature-card:hover .feature-icon svg { color: #fff; }
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* Pricing Toggle */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.pricing-toggle-label { font-size: 0.95rem; font-weight: 600; color: var(--text-light); }
.pricing-toggle-label.active-label { color: var(--primary); }
.pricing-toggle {
  position: relative;
  width: 56px; height: 28px;
  background: var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  flex-shrink: 0;
}
.pricing-toggle.yearly { background: var(--accent); }
.pricing-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.pricing-toggle.yearly::after { transform: translateX(28px); }
.pricing-save-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  background: #E8F9EE;
  color: #1B7A3D;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.pro {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: scale(1.03);
}
.pricing-card.pro:hover { transform: scale(1.03) translateY(-4px); }
.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-card.pro .pricing-name { color: var(--accent); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}
.pricing-card.pro .pricing-price .amount { color: var(--accent); }
.pricing-price .currency { font-size: 1.1rem; font-weight: 700; color: var(--text-light); margin-right: 2px; }
.pricing-price .period { font-size: 0.85rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; min-height: 40px; line-height: 1.6; }
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.pricing-features li svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--accent); }
.pricing-features li.muted { color: var(--text-muted); }
.pricing-features li.muted svg { color: var(--text-muted); opacity: 0.4; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s ease;
}
html[dir="rtl"] .faq-question { text-align: right; }
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.3s ease;
}
.faq-item.open .faq-icon { background: var(--accent); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; color: var(--text-light); transition: color 0.2s ease; }
.faq-item.open .faq-icon svg { color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 16px 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}

/* Demo Form */
.demo-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 700px;
  margin: 0 auto;
}
.demo-form-grid { display: grid; gap: 16px; }
.demo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Single Plan Pricing */
.single-plan-wrap {
  display: flex;
  justify-content: center;
}
.pricing-card.single-plan {
  max-width: 500px;
  width: 100%;
  transform: none;
}
.pricing-card.single-plan:hover { transform: translateY(-6px); }
.single-plan .pricing-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.single-plan-price {
  font-family: var(--font-heading);
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  color: var(--primary-dark) !important;
  line-height: 1;
}
.single-plan .pricing-price {
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}
.single-plan-period {
  display: flex;
  flex-direction: column;
  padding-bottom: 4px;
  gap: 2px;
}
.single-plan-period .currency { font-size: 1rem; font-weight: 700; color: var(--text-light); }
.single-plan-period .period { font-size: 0.9rem; color: var(--text-muted); }
.single-plan-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 32px;
}
.single-plan-features li svg { color: var(--accent); }
@media (max-width: 600px) {
  .single-plan-features { grid-template-columns: 1fr; }
  .single-plan-price { font-size: 2.8rem !important; }
}

/* ========================================
   ENTREPRISES PAGE
   ======================================== */

/* Trust Logos */
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.trust-logo-item:hover { transform: translateY(-4px); }
.trust-logo-circle {
  width: 80px; height: 80px;
  background: var(--bg-soft);
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-light);
  transition: var(--transition);
}
.trust-logo-item:hover .trust-logo-circle {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent-hover);
}
.trust-logo-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 90px;
  line-height: 1.4;
}

/* Corporate Offer Cards */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.offer-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  text-align: center;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.offer-card.popular { border-color: var(--accent); box-shadow: var(--shadow-accent); }
.offer-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.offer-duration {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.offer-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.offer-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-hover);
  margin-bottom: 24px;
  padding: 10px 16px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: inline-block;
}
.offer-card .btn { width: 100%; justify-content: center; }

/* Checkbox Group */
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  color: var(--text);
}
.checkbox-group label:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent-hover);
  font-weight: 600;
}
.checkbox-group input[type="checkbox"] { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .offer-card.popular { transform: none; }
}
@media (max-width: 768px) {
  .trust-logos { gap: 20px; }
  .trust-logo-circle { width: 64px; height: 64px; font-size: 0.88rem; }
}

/* Nav Pro accent link */
.nav-links a.nav-pro { color: var(--accent) !important; font-weight: 700; }
.nav-links a.nav-pro:hover { color: var(--accent-hover) !important; }
.nav-links a.nav-pro.active { color: var(--accent) !important; }

/* Nav Airport link */
.nav-links a.nav-airport { font-weight: 600; }
.has-hero-image .navbar:not(.scrolled) .nav-links a.nav-airport { color: rgba(255,255,255,0.92) !important; }
.has-hero-image .navbar:not(.scrolled) .nav-links a.nav-airport:hover { color: var(--accent) !important; }
/* Mobile menu open: force dark regardless of hero */
.has-hero-image .navbar:not(.scrolled) .nav-links.active a.nav-airport { color: var(--text) !important; }

/* ========================
   LEGAL PAGE
   ======================== */
.legal-page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 100px 0 50px;
  text-align: center;
}
.legal-page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.legal-page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}
.legal-page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.legal-page-hero .breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.legal-page-hero .breadcrumb span { color: rgba(255,255,255,0.4); }

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  padding: 60px 0 80px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.legal-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-sidebar a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.legal-sidebar a:hover,
.legal-sidebar a.active {
  background: var(--accent-light);
  color: var(--accent-hover);
  border-left-color: var(--accent);
}

.legal-content {
  max-width: 780px;
}

.legal-section {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}

.legal-section:last-child { margin-bottom: 0; }

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}

.legal-section h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 8px;
}

.legal-section p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 8px 0 20px 20px;
  list-style: disc;
}

.legal-section ul li {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.legal-section strong {
  color: var(--primary);
  font-weight: 700;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.legal-table th {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
}

.legal-table td {
  padding: 11px 16px;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: var(--bg-soft); }
.legal-table td strong { color: var(--primary); font-weight: 700; }

.legal-info-box {
  background: var(--accent-light);
  border: 1px solid rgba(232,168,56,0.3);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
}
.legal-info-box p {
  color: var(--primary);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

/* Footer legal links */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--accent); }

/* Legal responsive */
@media (max-width: 1024px) {
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .legal-sidebar { position: relative; top: auto; }
  .legal-sidebar ul { flex-direction: row; flex-wrap: wrap; }
  .legal-sidebar a { border-left: none; border-bottom: 3px solid transparent; }
  .legal-sidebar a:hover,
  .legal-sidebar a.active { border-left-color: transparent; border-bottom-color: var(--accent); }
}
@media (max-width: 768px) {
  .legal-page-hero { padding: 90px 0 40px; }
  .legal-page-hero h1 { font-size: 1.7rem; }
  .legal-section h2 { font-size: 1.35rem; }
  .legal-table th, .legal-table td { padding: 10px 12px; font-size: 0.82rem; }
  .footer-legal-links { gap: 6px 14px; }
}

/* ========================================
   PAYMENT SECTION
   ======================================== */
.payment-section {
  padding: 60px 0;
  background: var(--bg);
  text-align: center;
}

.payment-section .section-header {
  margin-bottom: 40px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 12px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
  min-width: 0;
}

.payment-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 36, 64, 0.12);
  border-color: var(--accent);
}

.payment-method .payment-logo {
  width: 64px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.payment-method .logo-visa { background: #1A1F71; }

.payment-method .logo-mastercard {
  background: #000;
  position: relative;
  overflow: hidden;
}
.payment-method .logo-mastercard::before {
  content: '';
  width: 22px;
  height: 22px;
  background: #EB001B;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  z-index: 1;
}
.payment-method .logo-mastercard::after {
  content: '';
  width: 22px;
  height: 22px;
  background: #F79E1B;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  mix-blend-mode: screen;
}

.payment-method .logo-amex { background: #2E77BC; font-size: 0.58rem; }
.payment-method .logo-apple { background: #000; font-size: 0.9rem; }
.payment-method .logo-google {
  background: #fff;
  color: #5F6368;
  border: 1px solid #E0E0E0;
  font-size: 0.85rem;
}
.payment-method .logo-cash { background: #27AE60; }
.payment-method .logo-bank { background: #0277BD; font-size: 0.58rem; }

.payment-method .payment-name {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .payment-methods-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .payment-section { padding: 40px 0; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .payment-method { padding: 14px 12px; }
  .payment-method .payment-logo { width: 54px; height: 38px; font-size: 0.68rem; }
  .payment-method .payment-name { font-size: 0.75rem; }
}

/* ========================
   SaaS Responsive */
@media (max-width: 1024px) {
  .saas-hero h1 { font-size: 2.6rem; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card.pro { transform: none; }
  .pricing-card.pro:hover { transform: translateY(-4px); }
  .showcase-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .saas-hero { padding: 120px 0 60px; }
  .saas-hero h1 { font-size: 2rem; }
  .saas-hero-actions { flex-direction: column; align-items: flex-start; }
  .saas-hero-stats { gap: 24px; }
  .saas-hero-stat h3 { font-size: 1.6rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; gap: 30px; }
  .showcase-grid.reverse { direction: ltr; }
  .showcase-image { height: 240px; }
  .demo-form-card { padding: 28px 20px; }
  .demo-form-row { grid-template-columns: 1fr; }
}

/* ========================================
   STICKY CTA — CAR PAGES MOBILE
   ======================================== */
@media (max-width: 768px) {
  /* On car pages (sticky CTA present): push similar-cars above the bar */
  body:has(.mobile-sticky-cta) .similar-cars {
    padding-bottom: 90px;
  }
}


/* ========================================
   À PROPOS — DIFFÉRENCIATEURS
   ======================================== */
.about-diff-section {
  padding: 70px 0;
  background: #F7F9FC;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.diff-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 36, 64, 0.12);
  border-color: var(--accent);
}

.diff-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232,168,56,0.15), rgba(232,168,56,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
}

.diff-card:hover .diff-icon {
  background: linear-gradient(135deg, var(--accent), #FFD863);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
}

.diff-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 10px 0;
}

.diff-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .diff-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-diff-section { padding: 50px 0; }
}

/* ========================================
   ENTREPRISES — CORPORATE BENEFITS
   ======================================== */
.corporate-benefits-section {
  padding: 60px 0;
  background: #FFFFFF;
}

.corporate-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), #FFD863);
  transition: width 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 36, 64, 0.1);
  border-color: var(--accent);
}

.benefit-card:hover::before { width: 100%; }

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,168,56,0.15), rgba(232,168,56,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
  transition: all 0.4s ease;
}

.benefit-icon svg { width: 22px; height: 22px; }

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--accent), #FFD863);
  color: #fff;
  transform: rotate(-5deg) scale(1.08);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 0 0 14px 0;
}

.benefit-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.benefit-metric .metric-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
}

.benefit-metric .metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 1200px) {
  .corporate-benefits-grid { gap: 14px; }
  .benefit-card { padding: 20px 16px; }
  .benefit-card h3 { font-size: 0.92rem; }
}
@media (max-width: 900px) {
  .corporate-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .corporate-benefits-grid { grid-template-columns: 1fr; }
  .corporate-benefits-section { padding: 50px 0; }
}

/* Mobile: dropdown menu adjusts position */
@media (max-width: 768px) {
  .nav-dropdown-menu { right: -20px; min-width: 230px; }
  .nav-dropdown-btn { padding: 6px 10px; font-size: 0.75rem; }
}

/* ========================================
   FINAL FIX: FULL-WIDTH SECTIONS
   ======================================== */

html {
  background: #FFFFFF !important;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  background: #FFFFFF !important;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Toutes les sections = full viewport width */
section,
.section,
footer,
header,
.navbar,
.hero,
.page-header,
.cta-section,
.video-section,
.newsletter-section,
.footer-pro,
.why-v2-section,
.steps-v2-section,
.faq-section,
.services-v2-section,
.payment-section,
.gallery-section,
.testimonials-section,
.destinations-section,
.fleet-preview-section,
.about-hero-section,
.about-story-section,
.about-differentiators-section,
.about-team-section,
.contact-hero,
.contact-info-section,
.contact-map-section,
.blog-hero,
.blog-grid-section {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* Navbar fixed — override le trick ci-dessus */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 1000;
}

/* Container centré inside les sections */
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
}

@media (max-width: 1440px) { .container { padding: 0 32px; } }
@media (max-width: 1024px) { .container { padding: 0 24px; } }
@media (max-width: 768px)  { .container { padding: 0 16px; } }

/* Backgrounds blancs par défaut */
section { background: #FFFFFF; }
.why-v2-section { background: #FFF8F3 !important; }
.faq-section { background: #FFF8F3 !important; }
.services-v2-section { background: #FFF8F3 !important; }
.testimonials-section { background: #F7F9FC !important; }
.video-section { background: var(--primary-dark) !important; }

/* Legal sections — inside .legal-layout grid, must NOT get full-width treatment */
.legal-section {
  width: auto !important;
  max-width: none !important;
  position: static !important;
  left: auto !important;
  right: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
