/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
  /* Colors */
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary: #2563eb;
  --accent: #10b981;
  --dark: #0f172a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --gradient-secondary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Borders */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-md);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

.navbar {
  padding: var(--space-sm) 0;
}

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

/* Logo */
.nav-brand .logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-lg);
  transition: all var(--transition-normal);
}

.header.scrolled .nav-brand .logo {
  color: var(--dark);
}

.logo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: var(--radius-md);
  padding: 0;
  margin-right: var(--space-sm);
}

.logo-icon svg {
  width: 50px;
  height: 50px;
  display: block;
}

/* Couleurs du logo adaptées au site */
.logo-icon svg path[stroke="#ff4444"] {
  stroke: var(--primary);
}

.logo-icon svg rect[fill="#ff4444"] {
  fill: var(--primary);
}

.logo-icon svg path[fill="#ff4444"] {
  fill: var(--primary);
}

.logo-icon svg path[fill="#757575"] {
  fill: var(--gray-600);
}

.logo-icon svg path[fill="#B0BEC5"] {
  fill: var(--gray-400);
}

.logo-text {
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* Navigation Desktop */
.nav-menu {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: var(--text-sm);
  transition: all var(--transition-normal);
  position: relative;
  padding: var(--space-xs) 0;
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-normal);
}

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

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

/* Call Button */
.nav-actions {
  display: flex;
  align-items: center;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

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

.btn-call svg {
  width: 16px;
  height: 16px;
}

.call-text {
  display: none;
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-normal);
  border-radius: 1px;
}

.header.scrolled .mobile-toggle span {
  background: var(--dark);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--gradient-dark);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
  padding: var(--space-lg);
}

.mobile-nav-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.mobile-nav-list li {
  margin: var(--space-lg) 0;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--white);
  font-size: var(--text-2xl);
  font-weight: 600;
  transition: all var(--transition-normal);
  display: block;
  padding: var(--space-sm);
}

.mobile-nav-link:hover {
  color: var(--primary);
  transform: translateX(10px);
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-lg);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
}

.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

.mobile-cta svg {
  width: 20px;
  height: 20px;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: var(--space-3xl) 0;
}

.hero-text {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.025em;
}

.title-main {
  display: block;
  color: var(--white);
}

.title-highlight {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: var(--space-xs) 0;
}

.title-location {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--gray-300);
  margin-top: var(--space-sm);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature span {
  font-weight: 600;
  font-size: var(--text-sm);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-lg);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2xl);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  text-decoration: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-text {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-xs);
  opacity: 0.8;
}

.scroll-arrow svg {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== SECTIONS ===== */
.services,
.zones,
.batteries,
.contact {
  padding: var(--space-3xl) 0;
}

.services {
  background: var(--gray-50);
}

.zones {
  background: var(--white);
}

.batteries {
  background: var(--gray-50);
}

.contact {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.025em;
}

.contact .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.contact .section-subtitle {
  color: var(--gray-300);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.service-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.service-description {
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.service-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  flex-shrink: 0;
}

.service-price {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-700);
}

.service-price span {
  color: var(--primary);
  font-weight: 700;
}

/* ===== ZONES GRID ===== */
.zones-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.zone-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  text-align: center;
  border: 1px solid var(--gray-200);
}

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

.zone-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.zone-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-lg);
}

.zone-list {
  list-style: none;
  text-align: left;
}

.zone-list li {
  padding: var(--space-xs) 0;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}

.zone-list li:last-child {
  border-bottom: none;
}

/* ===== BATTERIES GRID ===== */
.batteries-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.battery-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  text-align: center;
  border: 1px solid var(--gray-200);
  position: relative;
}

.battery-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.battery-card.featured::before {
  content: 'Recommandé';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.battery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.battery-card.featured:hover {
  transform: scale(1.05) translateY(-3px);
}

.battery-brand {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: var(--space-md);
  letter-spacing: 0.1em;
}

.battery-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.battery-description {
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.battery-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.feature-badge {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.battery-price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
}

/* ===== CONTACT SECTION ===== */
.contact-content {
  display: grid;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.contact-methods {
  display: grid;
  gap: var(--space-lg);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.method-content h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.method-content p {
  color: var(--gray-300);
  font-size: var(--text-sm);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  color: var(--white);
  font-size: var(--text-base);
  transition: all var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

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

.btn-submit svg {
  width: 18px;
  height: 18px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  text-decoration: none;
  color: var(--white);
}

.footer-brand .logo .logo-icon {
  background: transparent;
  width: 60px;
  height: 60px;
}

.footer-brand .logo .logo-icon svg {
  width: 50px;
  height: 50px;
  display: block;
}

/* Couleurs du logo dans le footer */
.footer-brand .logo-icon svg path[stroke="#ff4444"] {
  stroke: var(--primary);
}

.footer-brand .logo-icon svg rect[fill="#ff4444"] {
  fill: var(--primary);
}

.footer-brand .logo-icon svg path[fill="#ff4444"] {
  fill: var(--primary);
}

.footer-brand .logo-icon svg path[fill="#757575"] {
  fill: var(--gray-400);
}

.footer-brand .logo-icon svg path[fill="#B0BEC5"] {
  fill: var(--gray-300);
}

.footer-brand p {
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--gray-400);
}

.contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: var(--text-sm);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .zones-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .batteries-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .contact-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  :root {
    --text-4xl: 3rem;
    --text-5xl: 4rem;
  }
  
  .nav-menu {
    display: block;
  }
  
  .mobile-toggle {
    display: none;
  }
  
  .call-text {
    display: inline;
  }
  
  .hero-title {
    font-size: var(--text-5xl);
  }
  
  .hero-features {
    flex-direction: row;
    justify-content: center;
  }
  
  .feature {
    flex-direction: row;
    min-width: 200px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title {
    font-size: var(--text-6xl);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .zones-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .batteries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-indicator {
    animation: none;
  }
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --gray-600: #000000;
    --gray-700: #000000;
  }
}



/* ===== ANIMATIONS SUBTILES ET EFFETS AVANCÉS ===== */

/* Animation du logo avec rotation subtile */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(1deg); }
}

.logo-icon {
  animation: logoFloat 4s ease-in-out infinite;
}

.logo-icon:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(5deg);
}

/* Animations des cartes avec parallax subtil */
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.service-card, .zone-card, .battery-card {
  animation: cardFloat 6s ease-in-out infinite;
  animation-delay: calc(var(--card-index, 0) * 0.5s);
}

.service-card:hover, .zone-card:hover, .battery-card:hover {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.02);
}

/* Effet de typing pour les titres */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  0%, 50% { border-color: var(--primary); }
  51%, 100% { border-color: transparent; }
}

.hero-title {
  overflow: hidden;
  border-right: 3px solid var(--primary);
  white-space: nowrap;
  animation: typing 3s steps(40, end), blink 1s infinite;
}

/* Particules flottantes en arrière-plan */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
  33% { transform: translateY(-20px) rotate(120deg); opacity: 1; }
  66% { transform: translateY(-10px) rotate(240deg); opacity: 0.8; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

/* Effet de vague sur les boutons */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Animations de scroll reveal */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.animate-on-scroll.from-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.from-right {
  animation: slideInRight 0.8s ease-out forwards;
}

/* Effet de morphing sur les icônes */
.feature-icon {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon:hover {
  transform: scale(1.2) rotate(360deg);
  filter: drop-shadow(0 10px 20px rgba(255, 107, 53, 0.3));
}

/* Gradient animé pour les bordures */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-border {
  background: linear-gradient(-45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
  padding: 2px;
  border-radius: var(--radius-lg);
}

.gradient-border > * {
  background: var(--dark);
  border-radius: calc(var(--radius-lg) - 2px);
}

/* Effet de pulsation pour les éléments importants */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.pulse-effect {
  animation: pulse 2s ease-in-out infinite;
}

/* Effet de glitch subtil pour le titre principal */
@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(-1px, -1px); }
  60% { transform: translate(1px, 1px); }
  80% { transform: translate(1px, -1px); }
}

.hero-title:hover {
  animation: glitch 0.3s ease-in-out;
}

/* Amélioration des transitions existantes */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet de parallax pour les sections */
.parallax-section {
  transform-style: preserve-3d;
}

.parallax-content {
  transform: translateZ(0);
}

/* Animations de chargement */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.loading-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Effet de néon subtil */
.neon-glow {
  text-shadow: 
    0 0 5px var(--primary),
    0 0 10px var(--primary),
    0 0 15px var(--primary);
}

/* Micro-interactions pour les liens */
.nav-link {
  position: relative;
}

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

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

/* Effet de morphing pour les boutons */
.btn-morph {
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-morph:hover {
  border-radius: 15px;
  transform: scale(1.05);
}


/* ===== SECTION INTERVENTION ===== */
.intervention-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.intervention-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.intervention-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-top: var(--space-2xl);
}

.intervention-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.technician-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.intervention-image:hover .technician-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
}

.overlay-badge {
  background: rgba(255, 107, 53, 0.9);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.intervention-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step-item {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
}

.step-item:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.step-content {
  padding: var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.step-number {
  background: var(--gradient-primary);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.step-info {
  flex: 1;
}

.step-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step-description {
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.feature-tag {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.payment-info {
  margin-top: var(--space-3xl);
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method:hover {
  transform: translateY(-5px);
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--primary);
}

.payment-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.payment-method span {
  color: var(--gray-300);
  font-weight: 500;
}

.guarantee-text {
  color: var(--gray-300);
  font-size: 1.1rem;
  margin: 0;
}

.guarantee-text strong {
  color: var(--primary);
}

/* Responsive Design pour la section intervention */
@media (max-width: 768px) {
  .intervention-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .intervention-image {
    order: -1;
  }
  
  .step-content {
    padding: var(--space-lg);
    gap: var(--space-md);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .payment-methods {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .payment-method {
    flex-direction: row;
    justify-content: center;
    padding: var(--space-md);
  }
  
  .payment-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}



/* ===== BANNIÈRE CTA RÉVOLUTIONNAIRE ===== */
.cta-banner-revolutionary {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    margin: 80px 0;
}

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

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: particleFloat 8s ease-in-out infinite;
}

.banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, 
        rgba(255, 107, 53, 0.1), 
        rgba(59, 130, 246, 0.1), 
        rgba(139, 92, 246, 0.1), 
        rgba(255, 107, 53, 0.1));
    border-radius: 50%;
    opacity: 0.3;
    animation: rotateGlow 20s linear infinite;
    transform: translate(-50%, -50%);
}

.banner-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ff6b35'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ff6b35'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ff6b35'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 120px;
    animation: waveMove 10s ease-in-out infinite;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-text {
    margin-bottom: 50px;
}

.banner-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-urgent {
    display: block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.title-action {
    display: block;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    position: relative;
}

.title-action::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #3b82f6);
    border-radius: 2px;
    animation: pulseWidth 2s ease-in-out infinite;
}

.banner-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.banner-cta-container {
    margin: 50px 0;
    position: relative;
}

.banner-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    padding: 25px 40px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.4),
        0 0 60px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateX(0deg);
}

.banner-cta-button:hover {
    transform: perspective(1000px) rotateX(-5deg) translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.6),
        0 0 80px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 107, 53, 0.6);
    border-radius: 60px;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce 2s ease-in-out infinite;
}

.cta-icon svg {
    width: 18px;
    height: 18px;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-number {
    font-size: 1.4rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.cta-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: 1s;
}

.sparkle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
    color: #e2e8f0;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

/* Animations */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes rotateGlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes waveMove {
    0%, 100% {
        background-position-x: 0;
    }
    50% {
        background-position-x: 1200px;
    }
}

@keyframes pulseWidth {
    0%, 100% {
        width: 200px;
        opacity: 1;
    }
    50% {
        width: 300px;
        opacity: 0.7;
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-banner-revolutionary {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .banner-cta-button {
        padding: 20px 30px;
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-text {
        align-items: center;
    }
    
    .banner-features {
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}


/* ===== FORMULAIRE AVANCÉ ===== */

/* Labels du formulaire */
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Select pour type de véhicule */
.contact-form select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    cursor: pointer;
}

.contact-form select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form select option {
    background: #1a1a1a;
    color: #e2e8f0;
    padding: 10px;
}

/* Groupe de localisation avec bouton GPS */
.location-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.location-input-group input {
    flex: 1;
    margin-bottom: 0;
}

.gps-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.gps-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

.gps-btn:active {
    transform: translateY(0);
}

.gps-btn svg {
    width: 18px;
    height: 18px;
}

/* Dropdown de suggestions */
.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 12px 12px;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.suggestions-dropdown.show {
    display: block;
}

.suggestion-item {
    padding: 12px 20px;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.suggestion-item:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
}

.suggestion-item:last-child {
    border-bottom: none;
}

/* Conteneur de carte */
.map-container {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Message de statut du formulaire */
.form-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    animation: slideInUp 0.5s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 2px solid rgba(244, 67, 54, 0.3);
}

.form-message.loading {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

/* Amélioration des inputs existants */
.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(226, 232, 240, 0.6);
    font-weight: 400;
}

/* Animation pour les messages */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* États du bouton GPS */
.gps-btn.loading {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
    pointer-events: none;
}

.gps-btn.success {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
}

.gps-btn.error {
    background: linear-gradient(135deg, #ef5350 0%, #f44336 100%);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .location-input-group {
        flex-direction: column;
    }
    
    .gps-btn {
        width: 100%;
        justify-content: center;
    }
    
    .suggestions-dropdown {
        max-height: 150px;
    }
    
    .contact-form label {
        font-size: 13px;
    }
}

/* Scrollbar personnalisée pour les suggestions */
.suggestions-dropdown::-webkit-scrollbar {
    width: 6px;
}

.suggestions-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.suggestions-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.5);
    border-radius: 3px;
}

.suggestions-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 53, 0.7);
}



/* ===== STYLES SEO AJOUTÉS - PANNE BATTERIE ===== */

/* Section Témoignages Clients */
.testimonials {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.client-info h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.client-location {
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 500;
}

.rating .stars {
  font-size: var(--text-lg);
  line-height: 1;
}

.testimonial-text {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--gray-700);
  font-style: italic;
  position: relative;
  padding-left: var(--space-md);
  border-left: 3px solid var(--primary);
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: serif;
}

/* Section Guide Pratique */
.guide-section {
  padding: var(--space-3xl) 0;
  background: var(--white);
  position: relative;
}

.guide-content {
  max-width: 900px;
  margin: 0 auto;
}

.guide-intro {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--text-lg);
  color: var(--gray-700);
  line-height: 1.8;
}

.guide-sections {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.guide-section-item {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border-left: 5px solid var(--primary);
  transition: all var(--transition-normal);
}

.guide-section-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.guide-section-item h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.guide-section-item ul {
  list-style: none;
  padding: 0;
}

.guide-section-item li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  color: var(--gray-700);
  line-height: 1.6;
}

.guide-section-item li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.guide-section-item li strong {
  color: var(--gray-900);
  font-weight: 600;
}

.climate-tips {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
  border: 1px solid #f59e0b;
}

.climate-tips h4 {
  color: #92400e;
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.climate-tips ul {
  list-style: none;
  padding: 0;
}

.climate-tips li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  color: #92400e;
}

.climate-tips li::before {
  content: '🌡️';
  position: absolute;
  left: 0;
}

.guide-cta {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  color: var(--white);
}

.guide-cta h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.guide-cta p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

/* Zones d'intervention détaillées */
.zone-detail {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.zone-detail:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.zone-title-main {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.zone-description {
  font-size: var(--text-lg);
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.zone-coverage {
  margin-bottom: var(--space-xl);
}

.zone-coverage h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
}

.coverage-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .coverage-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.coverage-list li {
  padding: var(--space-sm) var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
  transition: all var(--transition-fast);
}

.coverage-list li:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(5px);
}

.coverage-list li strong {
  font-weight: 600;
}

.local-references {
  background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--secondary);
}

.local-references p {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
}

.local-references em {
  color: var(--secondary);
  font-weight: 500;
}

/* Améliorations des cartes de zones existantes */
.zone-card {
  position: relative;
  overflow: hidden;
}

.zone-highlight {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
  border-left: 3px solid var(--secondary);
}

.zone-highlight p {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.zone-highlight strong {
  color: var(--secondary);
  font-weight: 600;
}

/* Statistiques de couverture */
.coverage-guarantee {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  color: var(--white);
  margin-top: var(--space-2xl);
}

.coverage-guarantee h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.coverage-guarantee p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

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

.stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--gray-300);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Améliorations des batteries */
.battery-specs {
  margin-top: var(--space-lg);
}

.battery-specs h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
}

.battery-specs ul {
  list-style: none;
  padding: 0;
}

.battery-specs li {
  padding: var(--space-xs) 0;
  color: var(--gray-700);
  position: relative;
  padding-left: var(--space-md);
}

.battery-specs li::before {
  content: '🔋';
  position: absolute;
  left: 0;
}

.battery-selector {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.battery-selector h3 {
  text-align: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-xl);
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.selector-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-normal);
}

.selector-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.selector-item h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.selector-item p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-bottom: var(--space-md);
}

.recommendation {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Améliorations du contact */
.contact-method {
  position: relative;
  overflow: hidden;
}

.method-highlight {
  display: block;
  font-size: var(--text-xs);
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-xs);
}

.emergency-info {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  border: 1px solid #fca5a5;
}

.emergency-info h3 {
  color: #dc2626;
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.emergency-info p {
  color: #7f1d1d;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.emergency-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
}

.emergency-steps .step {
  background: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: #dc2626;
  text-align: center;
  border: 1px solid #fca5a5;
}

/* Améliorations du footer */
.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.cert-badge {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.footer-links-bottom {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.footer-links-bottom a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links-bottom a:hover {
  color: var(--primary);
}

.footer-seo {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-700);
}

.footer-seo small {
  color: var(--gray-500);
  font-size: var(--text-xs);
  line-height: 1.5;
}

.social-links {
  margin-top: var(--space-md);
}

.social-links h5 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: var(--space-sm);
}

.social-icons {
  display: flex;
  gap: var(--space-sm);
}

.social-icons a {
  display: inline-block;
  font-size: var(--text-lg);
  transition: transform var(--transition-fast);
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Autocomplétion améliorée */
.suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.suggestions-dropdown.show {
  display: block;
}

.suggestion-item {
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
  border-bottom: 1px solid var(--gray-100);
}

.suggestion-item:hover {
  background-color: var(--gray-50);
}

.suggestion-item:last-child {
  border-bottom: none;
}

/* Animations pour les nouveaux éléments */
.seo-loaded {
  animation: seoFadeInUp 0.6s ease-out;
}

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

/* Responsive pour les nouveaux éléments */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .testimonial-card {
    padding: var(--space-lg);
  }
  
  .guide-section-item {
    padding: var(--space-lg);
  }
  
  .zone-detail {
    padding: var(--space-lg);
  }
  
  .coverage-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
  
  .stat-number {
    font-size: var(--text-3xl);
  }
  
  .battery-selector {
    padding: var(--space-lg);
  }
  
  .selector-grid {
    grid-template-columns: 1fr;
  }
  
  .emergency-steps {
    grid-template-columns: 1fr;
  }
  
  .footer-certifications {
    justify-content: center;
  }
  
  .footer-links-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
}

/* Améliorations d'accessibilité pour SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus states améliorés */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print styles pour SEO */
@media print {
  .testimonials,
  .guide-section,
  .zone-detail {
    break-inside: avoid;
  }
  
  .testimonial-card,
  .guide-section-item {
    page-break-inside: avoid;
  }
}


/* ===== STYLES POUR LES 5 SECTIONS DEMANDÉES SEULEMENT ===== */

/* 1. Modes de Paiement Acceptés */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.payment-method {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #ff6b35;
}

.payment-method .payment-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ff6b35;
}

.payment-method span {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

/* 2. Témoignages Clients - Panne Batterie Résolue */
.testimonials {
  background: #f8fafc;
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #ff6b35;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.client-info h4 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.client-location {
  color: #ff6b35;
  font-weight: 600;
  font-size: 0.9rem;
}

.rating .stars {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-text {
  color: #4b5563;
  line-height: 1.6;
  font-style: italic;
  border-left: 3px solid #ff6b35;
  padding-left: 1rem;
}

/* 3. Comment Reconnaître une Panne Batterie ? */
.guide-section {
  padding: 4rem 0;
  background: white;
}

.guide-sections {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.guide-section-item {
  background: #f9fafb;
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.guide-section-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: white;
}

.guide-section-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guide-section-item ul {
  list-style: none;
  padding: 0;
}

.guide-section-item li {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
  color: #4b5563;
  line-height: 1.6;
}

.guide-section-item li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.climate-tips {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid #f59e0b;
}

.climate-tips h4 {
  color: #92400e;
  font-weight: 700;
  margin-bottom: 1rem;
}

.climate-tips ul {
  list-style: none;
  padding: 0;
}

.climate-tips li {
  margin-bottom: 0.5rem;
  padding-left: 2rem;
  position: relative;
  color: #92400e;
}

.climate-tips li::before {
  content: '🌡️';
  position: absolute;
  left: 0;
}

/* 4. Zones d'Intervention Panne Batterie Tunisie */
.zone-detail {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.zone-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #ff6b35;
}

.zone-title-main {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zone-description {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.coverage-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.coverage-list li {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1rem;
  border-left: 3px solid #ff6b35;
  transition: all 0.3s ease;
}

.coverage-list li:hover {
  background: #ff6b35;
  color: white;
  transform: translateX(4px);
}

.local-references {
  background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid #0ea5e9;
}

.local-references p {
  color: #0c4a6e;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.local-references em {
  color: #2563eb;
  font-weight: 600;
  font-style: normal;
}

/* 5. 🚨 Panne Batterie Urgente */
.emergency-info {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0;
  color: white;
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3);
}

.emergency-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.emergency-info p {
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.1rem;
}

.emergency-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.emergency-steps .step {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.emergency-steps .step:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

/* Numérotation des étapes */
.emergency-steps .step:nth-child(1)::after { content: '1'; }
.emergency-steps .step:nth-child(2)::after { content: '2'; }
.emergency-steps .step:nth-child(3)::after { content: '3'; }
.emergency-steps .step:nth-child(4)::after { content: '4'; }

.emergency-steps .step::after {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: white;
  color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 768px) {
  .payment-methods {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .coverage-list {
    grid-template-columns: 1fr;
  }
  
  .emergency-steps {
    grid-template-columns: 1fr;
  }
  
  .zone-detail,
  .guide-section-item {
    padding: 1.5rem;
  }
}

