
/* ============================================
   Elar Drive FR - Luxury VTC Website
   Design: Deep Navy, Warm Gold/Champagne, Cream
   Style: Premium, Elegant, Sophisticated
   ============================================ */

:root {
  /* Core Colors - Ultra Brillant */
  --navy: #0A1A2F;
  --navy-light: #162B45;
  --navy-glow: rgba(10, 26, 47, 0.9);
  --silver: #C5A47E;
  --silver-light: #D4B896;
  --silver-glow: rgba(197, 164, 126, 0.8);
  --beige: #F7F3ED;
  --beige-light: #FAF7F2;
  --beige-glow: rgba(247, 243, 237, 0.8);
  --light-blue: #C5A47E;
  --light-blue-light: #D4B896;
  --light-blue-glow: rgba(197, 164, 126, 0.6);
  /* Accent Gradients */
  --grad-navy: linear-gradient(135deg, #0A1A2F 0%, #162B45 50%, #0A1A2F 100%);
  --grad-silver: linear-gradient(135deg, #C5A47E 0%, #E8D5B7 50%, #C5A47E 100%);
  --grad-beige: linear-gradient(135deg, #F7F3ED 0%, #FAF7F2 50%, #F7F3ED 100%);
  --grad-luxe: linear-gradient(135deg, #0A1A2F 0%, #162B45 40%, #C5A47E 100%);
  --grad-silver-glow: linear-gradient(135deg, #C5A47E 0%, #FFFFFF 25%, #E8D5B7 50%, #C5A47E 100%);
  /* Glossy Effects */
  --gloss-light: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
  --gloss-button: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 50%, rgba(0,0,0,0.1) 100%);
  --gloss-card: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  /* Text Colors */
  --text-dark: #0A1A2F;
  --text-light: #F7F3ED;
  --text-silver: #C5A47E;
  --text-muted: #8A8E96;
  --text-blue: #C5A47E;
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 26, 47, 0.15);
  --shadow-md: 0 4px 20px rgba(10, 26, 47, 0.2);
  --shadow-lg: 0 8px 40px rgba(10, 26, 47, 0.3);
  --shadow-glow: 0 0 30px rgba(197, 164, 126, 0.3);
  --shadow-gold: 0 4px 20px rgba(247, 243, 237, 0.3);
  /* Borders */
  --border-silver: 1px solid rgba(197, 164, 126, 0.3);
  --border-beige: 1px solid rgba(247, 243, 237, 0.3);
  --border-blue: 1px solid rgba(197, 164, 126, 0.3);
  
  /* Missing variable aliases - added for compatibility */
  --gold: #C5A47E;
  --gold-dark: #A8895E;
  --gold-light: #D4B896;
  --gold-glow: rgba(197, 164, 126, 0.8);
  --cream: #F7F3ED;
  --bg-dark: #0A1A2F;
  --bg-dark-2: #162B45;
  --bg-card: #ffffff;
  --border-light: 1px solid rgba(197, 164, 126, 0.15);
  --border: 1px solid rgba(197, 164, 126, 0.3);
  --text-body: #0A1A2F;
  --shadow: 0 4px 20px rgba(10, 26, 47, 0.2);
  --white: #ffffff;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
/* Typography */
  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  /* Layout */
  --max-width: 1400px;
  --header-height: 80px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  background: var(--beige-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
}

.text-center { text-align: center; }
.text-beige { color: var(--beige); }
.text-silver { color: var(--silver); }
.text-blue { color: var(--light-blue); }
.text-navy { color: var(--navy); }

/* ===== GLOSSY EFFECTS ===== */
.gloss-surface {
  position: relative;
  overflow: hidden;
}

.gloss-surface::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--gloss-light);
  pointer-events: none;
  border-radius: inherit;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.8s ease;
}

.shine:hover::before {
  left: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-navy);
  color: var(--beige);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-button);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-silver {
  background: var(--grad-silver);
  color: var(--navy);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-silver:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--beige);
  border: 2px solid var(--silver);
}

.btn-outline:hover {
  background: var(--silver);
  color: var(--navy);
}

.btn-blue {
  background: linear-gradient(135deg, #C5A47E 0%, #D4B896 50%, #C5A47E 100%);
  color: var(--navy);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 26, 47, 0.85);
  z-index: 10002 !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10002;
  transition: var(--transition);
  border-bottom: var(--border-silver);
}

.header.scrolled {
  height: 70px;
  background: rgba(10, 26, 47, 0.95);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--beige);
  letter-spacing: 2px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-silver-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.logo span.logo-text {
  background: var(--grad-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-silver);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--beige);
}

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

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}

.lang-btn {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  border-radius: 20px;
  transition: var(--transition-fast);
  text-transform: uppercase;
}

.lang-btn:hover {
  color: var(--beige);
}

.lang-btn.active {
  background: var(--grad-silver);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--beige);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 26, 47, 0.92) 0%, rgba(10, 26, 47, 0.75) 100%), url("https://media.base44.com/images/public/6a77499bba4a4c6b1f937e80/b63ea06c2_generated_image.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(197, 164, 126, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(197, 164, 126, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(247, 243, 237, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 26, 47, 0.3) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero h1 {
  color: var(--beige);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
  background: var(--grad-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--silver);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--beige);
  display: block;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.section-header h2 {
  color: var(--navy);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--grad-silver);
  border-radius: 3px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

.section-header.light h2 { color: var(--beige); }
.section-header.light p { color: var(--silver); }

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--beige-light);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--navy) 0%, transparent 100%);
  opacity: 0.05;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(197, 164, 126, 0.2);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-blue);
}

.service-card-image {
  height: 220px;
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-light);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--beige);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  z-index: 2;
}

.service-card-body {
  padding: 30px;
}

.service-card-body h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-blue);
  margin-bottom: 16px;
}

.service-card-price small {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--grad-silver);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.service-card-btn:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

/* ===== FLEET SECTION ===== */
.fleet {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.fleet::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(197, 164, 126, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(197, 164, 126, 0.08) 0%, transparent 50%);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.fleet-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.fleet-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: var(--gloss-light);
  pointer-events: none;
  border-radius: var(--radius) var(--radius) 0 0;
}

.fleet-card:hover {
  transform: translateY(-8px);
  border-color: var(--light-blue);
  box-shadow: var(--shadow-glow);
}

.fleet-card-image {
  height: 240px;
  background: var(--grad-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fleet-card-icon {
  font-size: 5rem;
  color: var(--silver);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.fleet-card-body {
  padding: 30px;
}

.fleet-card-body h3 {
  color: var(--beige);
  margin-bottom: 8px;
}

.fleet-card-tagline {
  color: var(--light-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.fleet-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--silver);
  font-size: 0.85rem;
}

.fleet-spec-icon {
  font-size: 1.1rem;
  color: var(--light-blue);
}

.fleet-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fleet-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--silver);
  border: 1px solid rgba(255,255,255,0.1);
}

.fleet-feature-icon {
  font-size: 0.9rem;
  color: var(--light-blue);
}

/* ===== BOOKING / CALCULATOR SECTION ===== */
.booking {
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--beige) 100%);
  position: relative;
}

.booking-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(197, 164, 126, 0.3);
}

.booking-header {
  background: var(--grad-navy);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-light);
}

.booking-header h2 {
  color: var(--beige);
  position: relative;
  z-index: 2;
}

.booking-header p {
  color: var(--silver);
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.booking-form {
  padding: 40px;
}

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

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group label .required {
  color: #dc3545;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 2px solid rgba(197, 164, 126, 0.4);
  border-radius: var(--radius-sm);
  background: var(--beige-light);
  color: var(--navy);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 4px rgba(197, 164, 126, 0.15);
  background: white;
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237BB3D9' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-section-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--beige);
}

/* Radio buttons */
.radio-group {
  display: flex;
  gap: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid rgba(197, 164, 126, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.radio-label:hover {
  border-color: var(--light-blue);
}

.radio-label input[type="radio"] {
  accent-color: var(--navy);
}

.radio-label:has(input:checked) {
  background: var(--grad-navy);
  color: var(--beige);
  border-color: var(--navy);
}

/* Stop toggle */
.stop-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
  background: rgba(10, 26, 47, 0.06);
  border: 1.5px dashed rgba(10, 26, 47, 0.4);
  border-radius: 8px;
  padding: 12px 18px;
  width: 100%;
  transition: background 0.2s, border-color 0.2s;
}

.stop-toggle:hover {
  background: rgba(10, 26, 47, 0.12);
  border-color: var(--navy);
  text-decoration: none;
}

/* ===== ESTIMATE BUTTON ===== */
.estimate-section {
  text-align: center;
  margin: 30px 0;
  padding: 30px;
  background: var(--beige);
  border-radius: var(--radius);
  border: 1px solid rgba(197, 164, 126, 0.3);
}

.estimate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--grad-navy);
  color: var(--beige);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.estimate-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-button);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.estimate-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.estimate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.estimate-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(247, 243, 237, 0.3);
  border-top-color: var(--beige);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ===== PRICE RESULTS ===== */
.price-results {
  display: none;
  margin-top: 30px;
}

.price-results.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

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

.price-vehicle-list {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.price-vehicle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: white;
  border: 2px solid rgba(197, 164, 126, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-fast);
}

.price-vehicle-card:hover {
  border-color: var(--light-blue);
  box-shadow: var(--shadow-md);
}

.price-vehicle-card.selected {
  border-color: var(--navy);
  background: var(--beige-light);
  box-shadow: var(--shadow-md);
}

.price-vehicle-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-vehicle-icon {
  width: 60px;
  height: 60px;
  background: var(--grad-navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--beige);
}

.price-vehicle-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.price-vehicle-specs {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-vehicle-amount {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}

.price-vehicle-amount small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.trip-info {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.trip-info-item {
  text-align: center;
}

.trip-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.trip-info-value {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

/* ===== CUSTOMER DETAILS FORM ===== */
.customer-details {
  display: none;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--beige);
}

.customer-details.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.payment-options {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.payment-option {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  border: 2px solid rgba(197, 164, 126, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-fast);
}

.payment-option:hover {
  border-color: var(--light-blue);
}

.payment-option.selected {
  border-color: var(--navy);
  background: var(--beige-light);
}

.payment-option-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-option-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.payment-note {
  display: none;
  padding: 16px;
  background: rgba(197, 164, 126, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-blue);
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.payment-note.show {
  display: block;
}

/* ===== QUOTE FORM MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 26, 47, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  background: var(--grad-navy);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.modal-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-light);
}

.modal-header h2 {
  color: var(--beige);
  position: relative;
  z-index: 2;
  font-size: 1.6rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--beige);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: var(--transition-fast);
  z-index: 2;
  position: relative;
}

.modal-close:hover {
  color: var(--light-blue);
  transform: rotate(90deg);
}

.modal-body {
  padding: 40px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--grad-beige);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 164, 126, 0.2);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 5rem;
  color: rgba(197, 164, 126, 0.15);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-star {
  color: #FFD700;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
}

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

/* ===== BLOG SECTION ===== */
.blog {
  background: var(--beige-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(197, 164, 126, 0.2);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 200px;
  background: var(--grad-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-light);
}

.blog-card-icon {
  font-size: 3rem;
  color: var(--beige);
  z-index: 2;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--light-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.blog-card-body h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.blog-card-link:hover {
  color: var(--light-blue);
  gap: 10px;
}

/* ===== ZONES SECTION ===== */
.zones {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.zones::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(197, 164, 126, 0.08) 0%, transparent 70%);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.zone-item {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--silver);
  font-size: 0.85rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.zone-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--light-blue);
  color: var(--beige);
  transform: translateY(-2px);
}

.zone-item-icon {
  color: var(--light-blue);
  font-size: 1.1rem;
}

.zone-distance {
  font-size: 0.7rem;
  color: var(--light-blue);
  display: block;
  width: 100%;
  margin-left: 0;
  text-align: right;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== ABOUT / FEATURES STRIP ===== */
.features-strip {
  background: var(--grad-navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.features-strip::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--beige);
  backdrop-filter: blur(10px);
}

.feature-title {
  color: var(--beige);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature-desc {
  color: var(--silver);
  font-size: 0.85rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--silver);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-silver);
  opacity: 0.3;
}

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

.footer-brand h3 {
  color: var(--beige);
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.footer-brand p {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  font-size: 1.1rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
  background: var(--grad-silver);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--beige);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: var(--beige-light);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  opacity: 1;
}

.footer-links a:hover {
  color: var(--light-blue);
  opacity: 1;
  padding-left: 4px;
}

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

.footer-contact-item span {
  color: var(--light-blue);
  font-size: 1.1rem;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: var(--light-blue);
}

/* ===== COOKIES BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  color: var(--silver);
  font-size: 0.85rem;
  max-width: 700px;
}

.cookie-text a {
  color: var(--light-blue);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.cookie-btn-accept {
  background: var(--grad-silver);
  color: var(--navy);
}

.cookie-btn-accept:hover {
  box-shadow: var(--shadow-md);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--silver);
}

.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  top: 100px;
  right: 24px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 4000;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.notification.show {
  display: flex;
}

.notification-success {
  background: #0A1A2F;
  color: var(--beige);
  border: 1px solid var(--light-blue);
}

.notification-error {
  background: #2A0A0A;
  color: #FFB4B4;
  border: 1px solid #FF6B6B;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  z-index: 1500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===== BLOG PAGE STYLES ===== */
.blog-hero {
  background: var(--grad-navy);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-light);
}

.blog-hero h1 {
  color: var(--beige);
  position: relative;
  z-index: 2;
}

.blog-hero .breadcrumb {
  color: var(--silver);
  margin-top: 16px;
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
}

.blog-hero .breadcrumb a {
  color: var(--light-blue);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.article-content h2 {
  color: var(--navy);
  margin: 40px 0 16px;
}

.article-content h3 {
  color: var(--navy-light);
  margin: 30px 0 12px;
}

.article-content h4 {
  color: var(--light-blue);
  margin: 20px 0 10px;
}

.article-content p {
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.article-content ul, .article-content ol {
  margin: 20px 0 20px 40px;
}

.article-content li {
  margin-bottom: 10px;
  color: var(--text-dark);
  list-style: disc;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--beige);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-cta {
  margin: 40px 0;
  padding: 30px;
  background: var(--grad-navy);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-light);
}

.article-cta p {
  color: var(--beige);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.article-cta .btn {
  position: relative;
  z-index: 2;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Only hide if JS is enabled - progressive enhancement */
html.js .fade-in {
  opacity: 0;
  transform: translateY(30px);
}

html.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HONEYPOT (Anti-spam) ===== */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    align-items: flex-start;
  }
  .nav-menu.active,
  .nav-menu.open {
    right: 0;
  }
  /* Drawer pour la structure .nav (page accueil) */
  #mainNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 90px 30px 30px;
    gap: 20px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    align-items: flex-start;
    z-index: 10001;
  }
  #mainNav.active {
    right: 0;
  }
  #mainNav .lang-switcher {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .menu-toggle {
    display: flex;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-row-3 {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .booking-form {
    padding: 24px;
  }
  .modal-body {
    padding: 24px;
  }
  .section {
    padding: 60px 0;
  }
  .zones-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-vehicle-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .zones-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .radio-group {
    flex-direction: column;
  }
  .payment-options {
    flex-direction: column;
  }
}

/* ===== PRINT ===== */
@media print {
  .header, .whatsapp-float, .cookie-banner, .nav, .menu-toggle {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
}

/* Blog Article Inline */
.blog-article-view{display:none;padding:40px 24px 60px;max-width:800px;margin:0 auto;padding-top:calc(var(--header-height) + 20px);}
.blog-article-view.active{display:block;animation:fadeIn .4s ease;}
.blog-article__meta time { display: none; }
.blog-article__header{margin-bottom:40px;padding-bottom:30px;border-bottom:3px solid var(--beige);}
.blog-article__meta{font-size:.85rem;color:var(--light-blue);font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px;}
.blog-article__lead{font-size:1.2rem;line-height:1.8;color:var(--text-dark);margin-top:20px;}
.blog-article__section{margin-bottom:40px;}
.blog-article__section h2{color:var(--navy);margin:30px 0 16px;}
.blog-article__section h3{color:var(--navy-light);margin:24px 0 12px;}
.blog-article__section h4{color:var(--light-blue);margin:20px 0 8px;}
.blog-article__section p{margin-bottom:16px;line-height:1.8;font-size:1.05rem;}
.blog-article__list{margin:16px 0 16px 32px;}
.blog-article__list li{margin-bottom:10px;list-style:disc;line-height:1.7;}
.blog-article__cta{margin:40px 0;padding:30px;background:var(--grad-navy);border-radius:var(--radius);text-align:center;position:relative;overflow:hidden;}
.blog-article__cta::after{content:"";position:absolute;top:0;left:0;right:0;height:50%;background:var(--gloss-light);}
.blog-article__cta p{color:var(--beige);margin-bottom:20px;position:relative;z-index:2;}
.blog-article__cta .btn{position:relative;z-index:2;}
.blog-article__note{padding:20px;background:var(--beige);border-radius:var(--radius-sm);border-left:4px solid var(--light-blue);margin:30px 0;}
.blog-article__note p{margin:0;}
.blog-article__link{color:var(--navy);font-weight:600;text-decoration:underline;}
.blog-article__link:hover{color:var(--light-blue);}
.blog-back{display:inline-flex;align-items:center;gap:8px;margin-bottom:24px;color:var(--navy);font-weight:600;cursor:pointer;border:none;background:none;font-size:.9rem;}
.blog-back:hover{color:var(--light-blue);}

  /* ===== MODAL OVERLAY PAGES ===== */
  .page-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    background: #fff;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
  }
  .page-overlay.active { display: block; }
  .page-overlay-close {
    position: fixed;
    top: 15px; right: 20px;
    z-index: 10001;
    background: #1a2942;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
  }
  .page-overlay-close:hover { background: #2a3952; }
  .page-overlay-content { max-width: 900px; margin: 0 auto; padding: 40px 20px; }

  /* ===== OVERLAY SCOPED STYLES ===== */
  #legalOverlay, #cgvOverlay, #blogNoelOverlay {
    font-family: var(--font-body);
    background: var(--beige-light);
    color: var(--text-dark);
    line-height: 1.8;
  }
  #legalOverlay .page-overlay-content, #cgvOverlay .page-overlay-content, #blogNoelOverlay .page-overlay-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  #legalOverlay h1, #cgvOverlay h1, #blogNoelOverlay h1 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
  }
  #legalOverlay h2, #cgvOverlay h2, #blogNoelOverlay h2 {
    color: var(--navy);
    font-size: 1.4em;
    margin: 30px 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--silver);
  }
  #legalOverlay h3, #cgvOverlay h3 {
    color: var(--navy);
    font-size: 1.15em;
    margin: 20px 0 8px;
  }
  #legalOverlay p, #cgvOverlay p, #blogNoelOverlay p {
    margin-bottom: 14px;
    font-size: 0.95em;
  }
  #legalOverlay ul, #cgvOverlay ul, #blogNoelOverlay ul {
    margin: 10px 0 16px 20px;
  }
  #legalOverlay li, #cgvOverlay li, #blogNoelOverlay li {
    margin-bottom: 6px;
    font-size: 0.92em;
  }
  #legalOverlay a, #cgvOverlay a, #blogNoelOverlay a {
    color: var(--light-blue);
  }
  #legalOverlay .lang-view, #cgvOverlay .lang-view, #blogNoelOverlay .lang-view,
  .blog-article-view .lang-view {
    display: none;
  }
  #legalOverlay .lang-view.active, #cgvOverlay .lang-view.active, #blogNoelOverlay .lang-view.active,
  .blog-article-view .lang-view.active {
    display: block;
  }
  #legalOverlay .lang-btn, #cgvOverlay .lang-btn, #blogNoelOverlay .lang-btn {
    padding: 6px 14px;
    border: 1px solid var(--navy);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 4px;
    margin: 3px;
    transition: all 0.2s;
  }
  #legalOverlay .lang-btn.active, #cgvOverlay .lang-btn.active, #blogNoelOverlay .lang-btn.active,
  #legalOverlay .lang-btn:hover, #cgvOverlay .lang-btn:hover, #blogNoelOverlay .lang-btn:hover {
    background: var(--navy);
    color: var(--white);
  }
  #legalOverlay .lang-btn-wrap, #cgvOverlay .lang-switcher-wrap, #cgvOverlay .lang-btn-wrap {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
  }
  #cgvOverlay .toc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
  }
  #cgvOverlay .toc-card a {
    display: block;
    padding: 4px 0;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.92em;
  }
  #cgvOverlay .toc-card a:hover {
    color: var(--light-blue);
  }
  #blogNoelOverlay .overlay-lang {
    display: none;
  }
  #blogNoelOverlay .overlay-lang.active {
    display: block;
  }
  #blogNoelOverlay .blog-lang-switcher {
    text-align: center;
    margin-bottom: 25px;
  }
  #legalOverlay .top-header, #cgvOverlay .top-header {
    text-align: center;
    padding: 40px 20px 25px;
    background: var(--navy);
    color: var(--white);
    margin: -40px -20px 30px;
    border-radius: 8px;
  }
  #legalOverlay .top-header h1, #cgvOverlay .top-header h1 {
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
  }
  #legalOverlay .top-header p, #cgvOverlay .top-header p {
    color: var(--silver);
    text-align: center;
    margin-bottom: 0;
  }
  #legalOverlay .legal-section, #cgvOverlay .cgv-section {
    margin-bottom: 30px;
  }
  #legalOverlay .back-link, #cgvOverlay .back-link {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
  }

  #blogNoelOverlay .lang-content {
    display: none;
  }
  #blogNoelOverlay .lang-content.active {
    display: block;
  }
  #blogNoelOverlay .blog-lang-btn {
    padding: 6px 14px;
    border: 1px solid var(--navy);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 4px;
    margin: 3px;
    transition: all 0.2s;
  }
  #blogNoelOverlay .blog-lang-btn.active,
  #blogNoelOverlay .blog-lang-btn:hover {
    background: var(--navy);
    color: var(--white);
  }
  #blogNoelOverlay .blog-header {
    background: linear-gradient(135deg, rgba(26,41,66,0.95) 0%, rgba(26,41,66,0.85) 100%), url('https://media.base44.com/images/public/6a77499bba4a4c6b1f937e80/6d3b936c2_generated_image.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px 50px;
    text-align: center;
    color: var(--white);
    margin: -40px -20px 30px;
    border-radius: 8px;
  }
  #blogNoelOverlay .blog-header h1 {
    color: var(--white);
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 12px;
  }
  #blogNoelOverlay .blog-header .subtitle {
    color: var(--silver);
    font-size: 1em;
  }
  #blogNoelOverlay .blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 0;
  }
  #blogNoelOverlay .blog-cta {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    margin: 30px -20px -40px;
    border-radius: 0 0 8px 8px;
  }
  #blogNoelOverlay .blog-cta a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--silver);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
  }

  #zoneOverlay .zone-detail-header {
    background: linear-gradient(135deg, rgba(26,41,66,0.95) 0%, rgba(26,41,66,0.85) 100%), url('https://media.base44.com/images/public/6a77499bba4a4c6b1f937e80/3cd4b74c4_generated_image.png');
    background-size: cover;
    background-position: center;
    padding: 50px 30px;
    text-align: center;
    color: var(--white);
    margin: -60px -20px 30px;
    border-radius: 8px;
  }
  #zoneOverlay .zone-detail-header h1 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2em;
    margin-bottom: 8px;
  }
  #zoneOverlay .zone-detail-header p {
    color: var(--silver);
    font-size: 1em;
  }
  #zoneOverlay .zone-detail-body {
    max-width: 700px;
    margin: 0 auto;
  }
  #zoneOverlay .zone-detail-body h2 {
    color: var(--navy);
    font-size: 1.4em;
    margin: 30px 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--silver);
  }
  #zoneOverlay .zone-detail-body p {
    margin-bottom: 14px;
    line-height: 1.8;
  }
  #zoneOverlay .zone-detail-body ul {
    margin: 10px 0 16px 20px;
  }
  #zoneOverlay .zone-detail-body li {
    margin-bottom: 6px;
  }
  #zoneOverlay .zone-cta {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 35px 20px;
    margin: 30px -20px -40px;
    border-radius: 0 0 8px 8px;
  }
  #zoneOverlay .zone-cta a {
    display: inline-block;
    padding: 14px 35px;
    background: var(--silver);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    font-size: 1em;
  }

  /* Overlay responsive */
  @media (max-width: 768px) {
    .page-overlay-content {
      padding: 30px 15px !important;
    }
    #zoneOverlay .zone-detail-header {
      padding: 35px 20px;
      margin: -30px -15px 25px;
    }
    #zoneOverlay .zone-cta {
      padding: 30px 15px;
      margin: 25px -15px -30px;
    }
    #blogNoelOverlay .blog-header {
      padding: 40px 15px 35px;
      margin: -30px -15px 25px;
    }
    #blogNoelOverlay .blog-cta {
      padding: 30px 15px;
      margin: 25px -15px -30px;
    }
    #legalOverlay .top-header, #cgvOverlay .top-header {
      padding: 30px 15px 20px;
      margin: -30px -15px 25px;
    }
    #blogNoelOverlay .blog-header h1,
    #zoneOverlay .zone-detail-header h1 {
      font-size: 1.4em;
    }
    #blogNoelOverlay .blog-header .subtitle,
    #zoneOverlay .zone-detail-header p {
      font-size: 0.9em;
    }
    #legalOverlay h1, #cgvOverlay h1 {
      font-size: 1.5em;
    }
    #legalOverlay h2, #cgvOverlay h2, #blogNoelOverlay h2 {
      font-size: 1.2em;
    }
    .page-overlay-close {
      top: 10px;
      right: 10px;
      padding: 8px 15px;
      font-size: 12px;
    }
  }
  @media (max-width: 480px) {
    .page-overlay-content {
      padding: 25px 12px !important;
    }
    .lang-switcher {
      gap: 2px;
    }
    .lang-btn {
      padding: 4px 8px;
      font-size: 0.75em;
    }
  }

/* ===== FAQ SECTION ===== */
.faq-section{padding:100px 0;background:var(--beige-light);position:relative}
.faq-search{max-width:500px;margin:0 auto 48px;position:relative}
.faq-search input{width:100%;padding:16px 24px 16px 52px;border:2px solid rgba(192,197,206,0.3);border-radius:50px;font-family:var(--font-body);font-size:1rem;color:var(--text-dark);background:#fff;box-shadow:var(--shadow-sm);transition:var(--transition-fast)}
.faq-search input:focus{outline:none;border-color:var(--light-blue);box-shadow:0 0 0 4px rgba(123,179,217,0.15)}
.faq-search-icon{position:absolute;left:20px;top:50%;transform:translateY(-50%);font-size:1.2rem;opacity:0.5}
.faq-category{margin-bottom:48px;max-width:1000px;margin-left:auto;margin-right:auto}
.faq-category-title{font-family:var(--font-head);font-size:1.6rem;color:var(--navy);margin-bottom:24px;padding-bottom:12px;border-bottom:2px solid var(--light-blue);display:inline-block}
.faq-item{background:#fff;border-radius:var(--radius);margin-bottom:12px;overflow:hidden;box-shadow:var(--shadow-sm);transition:var(--transition);border:1px solid rgba(192,197,206,0.15)}
.faq-item:hover{box-shadow:var(--shadow-md)}
.faq-item.open{box-shadow:var(--shadow-md);border-color:var(--light-blue)}
.faq-question{padding:20px 24px;cursor:pointer;display:flex;align-items:center;justify-content:space-between;font-weight:600;font-size:1.05rem;color:var(--navy);transition:var(--transition-fast)}
.faq-question:hover{color:var(--light-blue)}
.faq-question .q-text{flex:1;padding-right:16px}
.faq-question .icon{flex-shrink:0;width:32px;height:32px;border-radius:50%;background:var(--beige-light);display:flex;align-items:center;justify-content:center;font-size:1.2rem;transition:var(--transition);color:var(--navy)}
.faq-item.open .faq-question .icon{background:var(--navy);color:var(--beige);transform:rotate(180deg)}
.faq-answer{padding:0 24px;max-height:0;overflow:hidden;border-top:0 solid rgba(192,197,206,0.15);transition:max-height 0.3s ease,padding 0.3s ease}
.faq-item.open .faq-answer{max-height:600px;padding:16px 24px 24px;border-top:1px solid rgba(192,197,206,0.15)}
.faq-item .faq-question{cursor:pointer}
.faq-item .faq-question .icon{display:flex}
.faq-answer p{color:#555;font-size:0.98rem;line-height:1.8}
.faq-answer a{color:var(--light-blue);font-weight:500}.faq-answer a:hover{text-decoration:underline}
.faq-answer strong{color:var(--navy)}
.faq-cta{text-align:center;margin-top:40px;padding:40px}
.faq-cta .btn-cta{background:var(--grad-silver);color:var(--navy);padding:14px 36px;font-size:1rem;font-weight:700;border-radius:50px;border:none;cursor:pointer;transition:var(--transition);text-transform:uppercase;display:inline-flex}
.faq-cta .btn-cta:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(123,179,217,0.4)}


/* ===== ADDITIONAL STYLES FOR ELARDRIVE.FR PAGES ===== */

/* Hero additions */
.hero-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(180deg,rgba(10,26,47,0.5) 0%,rgba(10,26,47,0.8) 100%);z-index:1}
.hero-title{font-size:clamp(2.2rem,5vw,4rem);font-weight:800;color:var(--beige-light);margin-bottom:1rem;line-height:1.1;text-shadow:0 2px 20px rgba(0,0,0,0.5)}
.hero-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 20px;background:rgba(197,164,126,0.15);border:1px solid var(--silver);border-radius:50px;color:var(--silver-light);font-size:0.85rem;font-weight:600;letter-spacing:1px;text-transform:uppercase;margin-bottom:1.5rem}
.hero-features{display:flex;gap:2rem;flex-wrap:wrap;margin-top:2rem}
.hero-feature{display:flex;align-items:center;gap:8px;color:var(--beige-light);font-size:0.9rem}
.hero-feature::before{content:'✓';color:var(--silver);font-weight:bold}

/* Section additions */
.section-title{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:700;color:var(--navy);margin-bottom:0.5rem;text-align:center}
.section-subtitle{font-size:1.1rem;color:var(--text-muted);text-align:center;max-width:700px;margin:0 auto 2rem}
.section-tag{display:inline-block;padding:6px 16px;background:rgba(197,164,126,0.12);border:1px solid var(--silver);border-radius:50px;color:var(--silver);font-size:0.8rem;font-weight:600;letter-spacing:1px;text-transform:uppercase;margin-bottom:1rem}
.section-alt{background:var(--beige)}
.section-cream{background:var(--beige-light)}
.section-dark{background:var(--navy);color:var(--beige-light)}

/* Header/Nav additions */
.header-container{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:0 20px}
.logo-text{font-size:1.25rem;font-weight:700;color:var(--beige);text-decoration:none;letter-spacing:1px;white-space:nowrap;}
.logo-text span{color:var(--silver)}

/* Service page styles */
.service-page{padding:120px 0 60px;background:var(--beige-light)}
.service-page-container{max-width:900px;margin:0 auto;padding:40px 20px}
.service-page-header{text-align:center;margin-bottom:40px}
.service-page-content{font-size:1.05rem;line-height:1.8;color:var(--text-dark)}
.service-page-content h2{color:var(--navy);margin:2rem 0 1rem;font-size:1.6rem}
.service-page-content p{margin-bottom:1.2rem}
.service-page-content ul{margin-bottom:1.5rem;padding-left:1.5rem}
.service-page-content li{margin-bottom:0.5rem}
.service-page-img{width:100%;height:300px;object-fit:cover;border-radius:12px;margin:2rem 0;box-shadow:0 4px 20px rgba(0,0,0,0.1)}
.service-cta{text-align:center;margin:3rem 0;padding:2rem;background:var(--beige);border-radius:12px}
.service-card-link{text-decoration:none;color:inherit;display:block}

/* CTA section */
.cta-section{background:var(--grad-luxe);padding:60px 20px;text-align:center;color:var(--beige-light)}
.cta-box{max-width:700px;margin:0 auto}
.cta-buttons{display:flex;gap:1rem;justify-content:center;margin-top:1.5rem;flex-wrap:wrap}

/* Blog page styles */
.blog-page{padding:120px 0 60px;background:var(--beige-light)}
.blog-page-header{text-align:center;margin-bottom:40px}
.blog-page-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem;max-width:1200px;margin:0 auto;padding:0 20px}
.blog-card-img{width:100%;height:200px;object-fit:cover;border-radius:8px 8px 0 0}
.blog-pagination{display:flex;justify-content:center;gap:0.5rem;margin-top:3rem}
.blog-pagination a{padding:8px 16px;border:1px solid var(--silver);border-radius:6px;text-decoration:none;color:var(--navy);transition:var(--transition)}
.blog-pagination a:hover,.blog-pagination a.current{background:var(--navy);color:var(--beige-light);border-color:var(--navy)}

/* Article page styles */
.article-page{padding:120px 0 60px;background:var(--beige-light)}
.article-container{max-width:800px;margin:0 auto;padding:40px 20px}
.article-header{margin-bottom:2rem}
.article-hero-img{width:100%;height:400px;object-fit:cover;border-radius:12px;margin-bottom:2rem;box-shadow:0 4px 20px rgba(0,0,0,0.15)}
.article-body{font-size:1.05rem;line-height:1.8;color:var(--text-dark)}
.article-body h2{color:var(--navy);margin:2rem 0 1rem;font-size:1.5rem}
.article-body p{margin-bottom:1.2rem}
.article-category{display:inline-block;padding:4px 12px;background:var(--silver);color:var(--navy);border-radius:50px;font-size:0.8rem;font-weight:600;letter-spacing:1px;text-transform:uppercase;margin-bottom:1rem}
.article-date{color:var(--text-muted);font-size:0.9rem;margin-bottom:1rem}
.article-back{display:inline-block;margin-top:2rem;color:var(--navy);text-decoration:none;font-weight:600}
.article-back:hover{text-decoration:underline}

/* Info pages (mentions légales, C-G-V, etc.) */
.info-page{padding:120px 0 60px;background:var(--beige-light)}
.info-page-container{max-width:800px;margin:0 auto;padding:40px 20px}
.info-page-header{margin-bottom:2rem}
.info-page-content{font-size:1.05rem;line-height:1.8;color:var(--text-dark)}
.info-page-content h2{color:var(--navy);margin:2rem 0 1rem;font-size:1.5rem}
.info-page-content p{margin-bottom:1.2rem}
.info-page-content ul{margin-bottom:1.5rem;padding-left:1.5rem}

/* Stats bar */
.stats-bar{background:var(--navy);padding:40px 20px}
.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:2rem;max-width:1000px;margin:0 auto;text-align:center}
.stat-item{text-align:center}
.stat-number{font-size:2.5rem;font-weight:800;color:var(--silver);display:block}
.stat-label{color:var(--beige);font-size:0.9rem;text-transform:uppercase;letter-spacing:1px;margin-top:0.5rem}

/* Pricing table */
.pricing-table-wrapper{overflow-x:auto;margin:2rem 0}
.pricing-table{width:100%;border-collapse:collapse;background:white;border-radius:12px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,0.08)}
.pricing-table th{background:var(--navy);color:var(--beige-light);padding:16px 12px;text-align:left;font-weight:600;font-size:0.9rem}
.pricing-table td{padding:14px 12px;border-bottom:1px solid #eee;font-size:0.95rem}
.pricing-table tr:hover{background:var(--beige)}
.pricing-table tr:last-child td{border-bottom:none}

/* Feature card */
.feature-card{background:white;border-radius:12px;padding:30px;box-shadow:0 4px 20px rgba(0,0,0,0.06);transition:transform 0.3s,box-shadow 0.3s;border:1px solid #eee}
.feature-card:hover{transform:translateY(-5px);box-shadow:0 8px 30px rgba(0,0,0,0.12)}

/* Footer additions */
.footer-bottom-content{max-width:1200px;margin:0 auto;padding:20px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:1rem}
.footer-logo h3{font-size:1.25rem;font-weight:800;color:var(--beige-light);margin:0}

/* Cookie banner additions */
.cookie-btns{display:flex;gap:1rem;flex-wrap:wrap}
.cookie-btn-reject{background:transparent;border:1px solid var(--silver);color:var(--beige-light);padding:10px 20px;border-radius:8px;cursor:pointer;font-size:0.9rem;transition:var(--transition)}
.cookie-btn-reject:hover{background:rgba(255,255,255,0.1)}

/* Booking additions */
.dispo-info{background:var(--beige);padding:15px;border-radius:8px;margin-top:10px;font-size:0.9rem;color:var(--text-dark)}
.estimate-btn-text{font-size:1rem;font-weight:600}

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

/* Lead paragraph */
.lead{font-size:1.2rem;color:var(--text-muted);line-height:1.6;margin-bottom:2rem}

/* Responsive */
@media (max-width:768px){
  .hero-features{gap:1rem}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-table{font-size:0.85rem}
  .pricing-table th,.pricing-table td{padding:10px 8px}
  .footer-bottom-content{flex-direction:column;text-align:center}
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher{display:inline-flex;gap:2px;margin-left:auto;margin-right:1rem}
.lang-btn{padding:4px 10px;border:1px solid rgba(197,164,126,0.3);background:transparent;color:var(--beige);font-size:0.75rem;font-weight:600;cursor:pointer;border-radius:4px;transition:var(--transition)}
.lang-btn:hover{background:rgba(197,164,126,0.15)}
.lang-btn.active{background:var(--silver);color:var(--navy)}
.header.scrolled .lang-btn{color:var(--navy);border-color:rgba(10,26,47,0.2)}
.header.scrolled .lang-btn.active{background:var(--navy);color:var(--beige)}

/* ===== BLOG ALL ARTICLES BUTTON ===== */
.btn-blog-all{display:inline-block;padding:14px 36px;background:var(--navy);color:var(--beige-light);border-radius:50px;text-decoration:none;font-weight:700;font-size:1rem;text-transform:uppercase;letter-spacing:1px;transition:var(--transition);border:2px solid var(--navy)}
.btn-blog-all:hover{background:transparent;color:var(--navy);transform:translateY(-2px);box-shadow:0 8px 25px rgba(10,26,47,0.2)}

/* ===== ZONES GRID IMPROVED ===== */
.zones-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem;max-width:1200px;margin:0 auto;padding:0 20px}
.zone-item{display:flex;align-items:center;gap:10px;padding:12px 16px;background:rgba(255,255,255,0.05);border:1px solid rgba(197,164,126,0.2);border-radius:8px;transition:var(--transition)}
.zone-item:hover{background:rgba(197,164,126,0.1);border-color:var(--silver)}
.zone-item-icon{font-size:1.2rem;flex-shrink:0}
.zone-item-info{display:flex;flex-direction:column;gap:2px}
.zone-item-name{color:var(--beige-light);font-size:0.9rem;font-weight:600}
.zone-item-meta{color:var(--silver);font-size:0.8rem;opacity:0.8}

/* ===== SERVICE CARD LINK ===== */
.service-card{text-decoration:none;color:inherit;display:flex;flex-direction:column;background:white;border-radius:12px;padding:30px;box-shadow:0 4px 20px rgba(0,0,0,0.06);transition:transform 0.3s,box-shadow 0.3s;border:1px solid #eee}
.service-card:hover{transform:translateY(-5px);box-shadow:0 8px 30px rgba(0,0,0,0.12)}
.service-card-icon{font-size:2.5rem;margin-bottom:1rem}
.service-card h3{color:var(--navy);font-size:1.2rem;margin-bottom:0.5rem}
.service-card-desc{color:var(--text-muted);font-size:0.9rem;line-height:1.6;margin-bottom:1rem;flex-grow:1}
.service-card-footer{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:1rem;border-top:1px solid #eee}
.service-price{color:var(--silver);font-weight:700;font-size:0.9rem}
.service-link{color:var(--navy);font-weight:600;font-size:0.9rem;transition:var(--transition)}
.service-card:hover .service-link{color:var(--silver)}

/* ===== BOOKING FORM IMPROVEMENTS ===== */
.booking-form{max-width:600px;margin:0 auto}
.form-row{display:flex;gap:1rem;margin-bottom:1rem;flex-wrap:wrap}
.form-row-time{display:flex;gap:1rem;flex:1}
.form-group{margin-bottom:1rem;flex:1}
.form-group label{display:block;margin-bottom:0.5rem;font-weight:600;font-size:0.9rem;color:var(--navy)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:12px 16px;border:1px solid #ddd;border-radius:8px;font-size:1rem;font-family:inherit;transition:var(--transition)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--silver);outline:none;box-shadow:0 0 0 3px rgba(197,164,126,0.15)}
.radio-group{display:flex;align-items:center;gap:8px;cursor:pointer;padding:10px 20px;border:1px solid #ddd;border-radius:8px;flex:1;transition:var(--transition)}
.radio-group:has(input:checked){border-color:var(--silver);background:rgba(197,164,126,0.05)}
.checkbox-group{display:flex;align-items:center;gap:8px;cursor:pointer}
.btn-block{width:100%;padding:16px;font-size:1.1rem;margin-top:1rem}
.results-header h3{color:var(--navy);margin-bottom:0.5rem}
.trip-summary{color:var(--text-muted);font-size:0.9rem;margin-bottom:1rem}
.results-vehicles{display:flex;flex-direction:column;gap:0.75rem;margin-bottom:1.5rem}
.result-vehicle-card{display:flex;align-items:center;gap:1rem;padding:16px;background:white;border:2px solid #eee;border-radius:10px;cursor:pointer;transition:var(--transition)}
.result-vehicle-card:hover{border-color:var(--silver)}
.result-vehicle-card.selected{border-color:var(--navy);background:rgba(10,26,47,0.03)}
.result-vehicle-icon{font-size:2rem}
.result-vehicle-info{flex-grow:1}
.result-vehicle-name{font-weight:700;color:var(--navy)}
.result-vehicle-specs{font-size:0.85rem;color:var(--text-muted)}
.result-vehicle-price{font-size:1.5rem;font-weight:800;color:var(--silver)}
.results-actions{margin-top:1rem}
.results-note{text-align:center;font-size:0.85rem;color:var(--text-muted);margin-top:0.5rem}

/* ===== RESPONSIVE ===== */
@media (max-width:768px){
  .lang-switcher{order:5;margin:0.5rem 0 0 0}
  .form-row{flex-direction:column}
  .form-row-time{flex-direction:row}
  .zones-grid{grid-template-columns:repeat(2,1fr)}
}

/* ===== CONTRAST FIXES FOR DARK SECTIONS ===== */

/* Fleet section (navy bg) - make headers light */
.fleet .section-header h2,
.fleet h2,
.fleet h3 {
  color: var(--beige-light) !important;
}
.fleet .section-header p,
.fleet .section-tag {
  color: var(--silver-light) !important;
}
.fleet .section-tag {
  background: rgba(197, 164, 126, 0.15);
  border-color: var(--silver);
}

/* Zones section (navy bg) - make headers light */
.zones .section-header h2,
.zones h2,
.zones h3 {
  color: var(--beige-light) !important;
}
.zones .section-header p,
.zones .section-tag {
  color: var(--silver-light) !important;
}
.zones .section-tag {
  background: rgba(197, 164, 126, 0.15);
  border-color: var(--silver);
}

/* Stats bar (navy bg) */
.stats-bar h2,
.stats-bar h3 {
  color: var(--beige-light) !important;
}

/* CTA section (gradient bg) - ensure light text */
.cta-section h2 {
  color: var(--beige-light) !important;
}
.cta-section p {
  color: var(--beige) !important;
}

/* Any generic dark section */
.section-dark .section-header h2,
.section-dark h2,
.section-dark h3 {
  color: var(--beige-light) !important;
}
.section-dark .section-header p,
.section-dark .section-tag {
  color: var(--silver-light) !important;
}

/* Booking header text (navy gradient bg) */
.booking-header h2,
.booking-header p {
  color: var(--beige-light) !important;
}

/* Footer text on navy bg */
.footer h3,
.footer h4 {
  color: var(--beige-light) !important;
}
.footer a {
  color: var(--silver-light) !important;
}
.footer p {
  color: var(--beige-light) !important;
}

/* Hero section text (already light but ensure) */
.hero-title {
  color: var(--beige-light) !important;
}
.hero-subtitle {
  color: var(--silver-light) !important;
}

/* Form labels on white bg - ensure dark */
.booking-form label,
.form-group label {
  color: var(--text-dark) !important;
}
.form-control {
  color: var(--text-dark) !important;
  background: white !important;
}

/* Pricing table text */
.pricing-table th,
.pricing-table td {
  color: var(--text-dark) !important;
}

/* Advantages/features sections */
.advantages .section-header h2,
.features .section-header h2 {
  color: var(--navy) !important;
}

/* Ensure all body text on light bg is dark */
body, .section, .section-alt, .section-cream, .booking {
  color: var(--text-dark);
}

/* Ensure section headers on light bg are navy */
.section:not(.fleet):not(.zones):not(.section-dark) .section-header h2 {
  color: var(--navy);
}
.section:not(.fleet):not(.zones):not(.section-dark) .section-header p {
  color: var(--text-muted);
}

/* ===== SECTION TITLE CONTRAST FIXES (subpages) ===== */
.section-dark .section-title,
.section-dark .section-subtitle {
  color: var(--beige-light) !important;
}
.section-dark .section-tag {
  color: var(--silver-light) !important;
  background: rgba(197, 164, 126, 0.15) !important;
  border-color: var(--silver) !important;
}
.fleet .section-title,
.zones .section-title,
.stats-bar .section-title {
  color: var(--beige-light) !important;
}
.fleet .section-subtitle,
.zones .section-subtitle {
  color: var(--silver-light) !important;
}

/* Fix section-title on light bg */
.section:not(.section-dark):not(.fleet):not(.zones) .section-title {
  color: var(--navy) !important;
}
.section:not(.section-dark):not(.fleet):not(.zones) .section-subtitle {
  color: var(--text-muted) !important;
}

/* Ensure booking form text is always dark on white */
.booking-form select,
.booking-form input,
.booking-form textarea {
  color: var(--text-dark) !important;
  background: #fff !important;
  border: 1px solid rgba(10, 26, 47, 0.2) !important;
}
.booking-form select:focus,
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--gold) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 164, 126, 0.2) !important;
}

/* Ensure booking labels are always dark */
.booking-form label {
  color: var(--text-dark) !important;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* ===== LOGO IMAGE (replaces text/icon logo) ===== */
.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  display: block;
  transition: var(--transition);
}
.header.scrolled .logo-img {
  height: 42px;
}
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}

/* Footer logo (if image used there too) */
.footer-logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
}


/* ===== SERVICE PAGE CONTRAST FIXES (selon le fond) ===== */
/* Fond CREME (défaut .service-page) : titres et textes sombres, bien lisibles */
.service-page h1,
.service-page h2,
.service-page h3,
.service-page h4 {
  color: var(--navy);
}
.service-page p,
.service-page li {
  color: var(--text-body);
}
.service-page .section-tag {
  color: var(--gold-dark);
}

/* Fond SOMBRE inline (bg-dark) : titres et textes clairs */
.service-page[style*="bg-dark"] h1,
.service-page[style*="bg-dark"] h2,
.service-page[style*="bg-dark"] h3,
.service-page[style*="bg-dark"] h4,
.service-page[style*="bg-dark"] .section-header h2,
.service-page[style*="bg-dark"] .section-header p {
  color: var(--beige-light) !important;
}
.service-page[style*="bg-dark"] p,
.service-page[style*="bg-dark"] li {
  color: var(--silver-light) !important;
}
.service-page[style*="bg-dark"] .section-tag {
  color: var(--silver-light);
}

/* Cartes BLANCHES dans sections service-page sombres : texte sombre */
.service-page[style*="bg-dark"] [style*="background: white"] p,
.service-page[style*="bg-dark"] [style*="background: white"] li,
.service-page[style*="bg-dark"] [style*="bg-card"] p,
.service-page[style*="bg-dark"] [style*="bg-card"] li,
.service-page[style*="bg-dark"] [style*="background: var(--bg-card)"] p,
.service-page[style*="bg-dark"] [style*="background: var(--bg-card)"] li {
  color: #333 !important;
}
.service-page[style*="bg-dark"] [style*="bg-card"] h2,
.service-page[style*="bg-dark"] [style*="bg-card"] h3,
.service-page[style*="bg-dark"] [style*="bg-card"] h4,
.service-page[style*="bg-dark"] [style*="background: var(--bg-card)"] h2,
.service-page[style*="bg-dark"] [style*="background: var(--bg-card)"] h3,
.service-page[style*="bg-dark"] [style*="background: var(--bg-card)"] h4,
.service-page[style*="bg-dark"] [style*="background: white"] h2,
.service-page[style*="bg-dark"] [style*="background: white"] h3,
.service-page[style*="bg-dark"] [style*="background: white"] h4 {
  color: var(--navy) !important;
}
.service-page[style*="bg-dark"] [style*="bg-card"] td,
.service-page[style*="bg-dark"] [style*="background: var(--bg-card)"] td,
.service-page[style*="bg-dark"] [style*="background: white"] td {
  color: #333 !important;
}
.service-page[style*="bg-dark"] [style*="bg-card"] th,
.service-page[style*="bg-dark"] [style*="background: var(--bg-card)"] th,
.service-page[style*="bg-dark"] [style*="background: white"] th {
  color: var(--gold-dark) !important;
}

/* Tableaux de tarifs sur fond clair : cellules sombres */
.service-page .pricing-table tbody td {
  color: #333;
}

/* CTA section with dark bg */
.cta-section h2,
.cta-section h3 {
  color: var(--beige-light) !important;
}
.cta-section p {
  color: var(--silver-light) !important;
}

/* Any section with inline dark background - force light headings */
section[style*="bg-dark"] h2,
section[style*="bg-dark"] h3,
section[style*="bg-dark"] h4,
section[style*="bg-dark"] p {
  color: var(--beige-light) !important;
}
section[style*="bg-dark"] .section-header p,
section[style*="bg-dark"] .section-tag {
  color: var(--silver-light) !important;
}
section[style*="navy"] h2,
section[style*="navy"] h3,
section[style*="navy"] h4,
section[style*="navy"] p {
  color: var(--beige-light) !important;
}
section[style*="navy"] .section-tag {
  color: var(--silver-light) !important;
}

/* Package cards on dark bg */
.service-page .package-card {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(197,164,126,0.2) !important;
}
.service-page .package-card h4,
.service-page .package-card h3 {
  color: var(--beige-light) !important;
}
.service-page .package-card p {
  color: var(--silver-light) !important;
}

/* Use-case cards on dark bg */
.service-page .use-card,
.service-page .usage-card {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(197,164,126,0.15) !important;
}
.service-page .use-card h4,
.service-page .use-card h3,
.service-page .usage-card h4,
.service-page .usage-card h3 {
  color: var(--beige-light) !important;
}
.service-page .use-card p,
.service-page .usage-card p {
  color: var(--silver-light) !important;
}

/* Stats on dark bg */
.service-page .stat-item,
.service-page .stat-card {
  background: rgba(255,255,255,0.05) !important;
}
.service-page .stat-item .stat-value,
.service-page .stat-item h3,
.service-page .stat-card .stat-value,
.service-page .stat-card h3 {
  color: var(--gold) !important;
}
.service-page .stat-item .stat-label,
.service-page .stat-item p,
.service-page .stat-card .stat-label,
.service-page .stat-card p {
  color: var(--silver-light) !important;
}


/* ===== LOGO IMAGE + TEXT COMBINATION ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.logo span.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Footer logo + text */

/* Zone airport items - slightly different style */
.zone-airport {
  border-color: rgba(197, 164, 126, 0.3) !important;
}
.zone-airport .zone-item-icon {
  color: var(--gold) !important;
}

/* Zones section subtitle on dark bg */
.zones .section-header.light h2 {
  color: var(--beige-light);
}
.zones .section-header.light p {
  color: var(--silver-light);
}

/* Responsive logo */
@media (max-width: 768px) {
  .logo img.logo-img {
    height: 32px;
  }
  .logo span.logo-text {
    font-size: 1rem;
  }
  .footer-logo img.footer-logo-img {
    height: 30px;
  }
  .footer-logo span.footer-logo-text {
    font-size: 0.95rem;
  }
}

/* ===== CONTRAST SAFETY NET FOR DARK SECTIONS ===== */
.section-dark p[style*="text-muted"],
.section-dark li[style*="text-muted"],
.section-dark td[style*="text-muted"],
.service-page[style*="bg-dark"] p[style*="text-muted"],
.service-page[style*="bg-dark"] li[style*="text-muted"],
.cta-section p[style*="text-muted"],
.cta-section span[style*="text-muted"] {
  color: var(--silver-light) !important;
}

/* Ensure ALL text in dark sections is light, even without inline styles */
.section-dark p:not(.form-group label),
.section-dark li,
.section-dark td,
.section-dark th {
  color: var(--silver-light);
}

/* Service-page hero paragraph fix */
.service-page > .container > p[style*="text-muted"] {
  color: var(--silver-light) !important;
}

/* Fix: tableaux et titres dans cartes blanches sur fond sombre - texte lisible */
.section-dark [style*="bg-card"] td,
.section-dark [style*="background: var(--bg-card)"] td,
.section-dark [style*="background: white"] td {
  color: #333 !important;
}
.section-dark [style*="bg-card"] th,
.section-dark [style*="background: var(--bg-card)"] th,
.section-dark [style*="background: white"] th {
  color: var(--gold-dark) !important;
}
.section-dark [style*="bg-card"] h2,
.section-dark [style*="background: var(--bg-card)"] h2,
.section-dark [style*="background: white"] h2 {
  color: var(--navy) !important;
}

/* Fix for package cards on dark bg - card text should be dark on white cards */
.section-dark [style*="bg-card"] p,
.section-dark [style*="bg-card"] li,
.section-dark [style*="background: var(--bg-card)"] p,
.section-dark [style*="background: var(--bg-card)"] li {
  color: #555 !important;
}

.section-dark [style*="bg-card"] h3,
.section-dark [style*="bg-card"] h4 {
  color: var(--navy) !important;
}

/* Zone item SEO descriptions */
.zone-item-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid rgba(197, 164, 126, 0.15);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--navy);
  color: var(--beige-light);
  font-family: var(--font-sans);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-height: 80vh;
  overflow-y: auto;
}
.cookie-consent-banner.cookie-consent-show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-banner.cookie-consent-hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-consent-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 20px;
}
.cookie-consent-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-consent-icon {
  font-size: 1.5rem;
}
.cookie-consent-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0;
  flex: 1;
}
.cookie-consent-close {
  background: none;
  border: none;
  color: var(--silver);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.cookie-consent-close:hover {
  color: var(--beige-light);
}
.cookie-consent-message {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--silver-light);
  margin-bottom: 18px;
}
.cookie-consent-link {
  color: var(--gold-light);
  text-decoration: underline;
}
.cookie-consent-link:hover {
  color: var(--gold);
}
.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}
.cookie-btn-accept {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.cookie-btn-accept:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.cookie-btn-reject {
  background: transparent;
  color: var(--silver-light);
  border-color: var(--border);
}
.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--silver);
}
.cookie-btn-customize {
  background: transparent;
  color: var(--silver-light);
  border-color: var(--border);
}
.cookie-btn-customize:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--silver);
}
.cookie-consent-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.cookie-consent-cat {
  margin-bottom: 16px;
}
.cookie-consent-cat label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--beige-light);
  cursor: pointer;
}
.cookie-consent-cat input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}
.cookie-consent-cat input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-consent-cat-desc {
  font-size: 0.85rem;
  color: var(--silver);
  margin: 6px 0 0 26px;
  line-height: 1.5;
}
.cookie-btn-save {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  margin-top: 8px;
  width: 100%;
}
.cookie-btn-save:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
@media (max-width: 600px) {
  .cookie-consent-buttons {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== AVANTAGES SECTION: CONTRAST FIX + PHOTOS ===== */
#advantages .feature-title {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
}
#advantages .feature-desc {
  color: #4A4F58;
  font-size: 0.9rem;
  line-height: 1.5;
}
#advantages .feature-icon {
  background: rgba(197, 164, 126, 0.12);
  border: 1px solid var(--gold);
  color: var(--navy);
}
.advantages-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.advantages-wrap .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.advantages-wrap .features-grid .feature-card:last-child {
  grid-column: span 2;
  text-align: center;
}
.advantages-photos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.adv-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(10, 26, 47, 0.12);
  display: block;
}
.adv-photo-main {
  aspect-ratio: 4/3;
}
.adv-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.adv-photo-row .adv-photo {
  aspect-ratio: 4/3;
}
@media (max-width: 900px) {
  .advantages-wrap {
    grid-template-columns: 1fr;
  }
  .advantages-photos {
    order: -1;
  }
  .advantages-wrap .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
