/* ============================================
   CUMPĂR AUTO BUCUREȘTI - Main Stylesheet
   Version: 1.0.0
   Performance-optimized, Mobile-first
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Blue Depth Palette (Primary) - Based on #142256 */
  --blue-50: #E8EAF0;
  --blue-100: #C5CAD9;
  --blue-200: #9FA8C1;
  --blue-300: #7986A9;
  --blue-400: #5C6D97;
  --blue-500: #3F5485;
  --blue-600: #142256;   /* Primary */
  --blue-700: #111D49;   /* Primary Hover */
  --blue-800: #0E183C;
  --blue-900: #0A1230;
  --blue-950: #060B1C;

  /* Neutral Palette */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Accent Colors */
  --success: #10B981;
  --success-light: #D1FAE5;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  --whatsapp: #25D366;
  --whatsapp-hover: #20BD5A;

  /* Semantic Colors */
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-tertiary: var(--gray-100);
  --border-color: var(--gray-200);
  --border-light: var(--gray-100);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', var(--font-primary);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur: 10px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 1000;
  --z-modal: 1050;
  --z-tooltip: 1100;
  --z-float: 1200;
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .lead {
    font-size: 1.25rem;
  }
}

/* ============================================
   4. ANIMATIONS (Performance Optimized)
   ============================================ */

/* Fade In Up - for scroll reveal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In - simple */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Subtle Float - for decorative elements */
@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Gradient Animation for Hero */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Pulse for WhatsApp button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animation utility classes */
.animate-fade-in {
  animation: fadeIn var(--transition-smooth) forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Stagger delays for lists */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Scroll reveal - items start hidden */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   5. LAYOUT
   ============================================ */
.section-padding {
  padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 992px) {
  .section-padding {
    padding: 6rem 0;
  }
}

/* Section backgrounds */
.bg-light-gradient {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.bg-blue-subtle {
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}

/* ============================================
   6. COMPONENTS
   ============================================ */

/* --- 6.1 Navbar --- */
.navbar {
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-brand span {
  color: rgba(255, 255, 255, 0.9);
}

/* After scroll - blue logo */
.navbar.scrolled .navbar-brand {
  color: var(--blue-600) !important;
}

.navbar.scrolled .navbar-brand span {
  color: var(--text-primary);
}

.nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: var(--space-sm) var(--space-md) !important;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.15);
}

/* After scroll - grey text */
.navbar.scrolled .nav-link {
  color: var(--text-secondary) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--blue-600) !important;
  background: var(--blue-50);
}

.navbar-toggler {
  border: none;
  padding: var(--space-sm);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* White hamburger icon initially */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dark hamburger icon after scroll */
.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2871, 85, 105, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- 6.2 Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #142256 0%, #1a3a5c 50%, #0f1b3d 100%);
}

/* Enhanced gradient for all devices */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    /* Subtle light orbs */
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(79, 172, 254, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse 50% 60% at 60% 90%, rgba(37, 211, 102, 0.08) 0%, transparent 40%),
    /* Mesh gradient overlay */
    linear-gradient(180deg, rgba(20, 34, 86, 0.3) 0%, transparent 30%),
    linear-gradient(0deg, rgba(15, 27, 61, 0.5) 0%, transparent 25%);
  pointer-events: none;
  z-index: 1;
}

/* Animated gradient layer - desktop only */
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .hero-section {
    background:
      linear-gradient(135deg,
        #142256 0%,
        #1a3a5c 25%,
        #142256 50%,
        #0f1b3d 75%,
        #142256 100%
      );
    background-size: 400% 400%;
    animation: heroGradient 20s ease infinite;
  }

  .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      /* Animated orbs */
      radial-gradient(circle 600px at 10% 20%, rgba(79, 172, 254, 0.08) 0%, transparent 50%),
      radial-gradient(circle 800px at 90% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
      radial-gradient(circle 400px at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
    animation: orbFloat 15s ease-in-out infinite;
    z-index: 1;
  }
}

/* Hero gradient animation */
@keyframes heroGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
}

/* Floating orbs animation */
@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
    opacity: 0.8;
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
    opacity: 0.9;
  }
}

/* Decorative shapes - hidden on mobile for performance */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  display: none;
}

@media (min-width: 768px) {
  .hero-shapes {
    display: block;
  }
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

/* Only animate shapes on desktop with no motion preference */
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .hero-shape {
    animation: subtleFloat 6s ease-in-out infinite;
    will-change: transform;
  }
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: -50px;
  animation-delay: 2s;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 10%;
  animation-delay: 4s;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.hero__badge i {
  color: var(--success);
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero__title-highlight {
  display: block;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 50%, #4facfe 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .hero__title-highlight {
    animation: shimmer 3s linear infinite;
  }
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 576px) {
  .hero__cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__trust-item i {
  font-size: 1.25rem;
  color: var(--blue-200);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color var(--transition-fast);
}

.hero__scroll a:hover {
  color: var(--white);
}

.hero__scroll i {
  font-size: 1.5rem;
}

@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .hero__scroll i {
    animation: subtleFloat 2s ease-in-out infinite;
  }
}

/* --- 6.3 Buttons --- */
.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

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

.btn-primary {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-600);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--blue-600);
  color: var(--blue-600);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- 6.4 Section Headers --- */
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

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

.section__subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 6.5 Glassmorphism Cards --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: var(--glass-bg-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Process Cards */
.process-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  height: 100%;
}

.process-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.process-card__number {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.process-card__icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-600);
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.process-card__title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.process-card__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Benefit Cards */
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  height: 100%;
  transition: all var(--transition-base);
}

.benefit-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.benefit-card__icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.benefit-card__title {
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
}

.benefit-card__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Vehicle Cards */
.vehicle-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.vehicle-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.vehicle-card__icon {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.vehicle-card__title {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

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

.testimonial-card__stars {
  color: #FBBF24;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.testimonial-card__stars i {
  margin-right: 0.125rem;
}

.testimonial-card__text {
  flex-grow: 1;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--blue-600);
}

.testimonial-card__name {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.testimonial-card__location {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- 6.6 Stats Bar --- */
.stats-bar {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  margin-top: calc(var(--space-3xl) * -1);
  position: relative;
  z-index: 10;
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-item__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stat-item {
    border-right: 1px solid var(--border-light);
  }
  .stat-item:last-child {
    border-right: none;
  }
}

/* --- 6.7 Accordion (FAQ) --- */
.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg) !important;
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  padding: var(--space-lg);
  background: var(--white);
}

.accordion-button:not(.collapsed) {
  background: var(--blue-50);
  color: var(--blue-700);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--blue-200);
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-body {
  padding: var(--space-lg);
  background: var(--white);
}

.accordion-body p:last-child,
.accordion-body ul:last-child {
  margin-bottom: 0;
}

/* --- 6.8 Forms --- */
.form-control,
.form-select {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px var(--blue-100);
}

.form-control-lg,
.form-select-lg {
  padding: 1rem 1.25rem;
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form-text {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* --- 6.9 Contact Section --- */
.contact-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-base);
  margin-bottom: var(--space-md);
}

.contact-cta:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  color: var(--text-primary);
}

.contact-cta--whatsapp {
  border-color: var(--whatsapp);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(37, 211, 102, 0.1));
}

.contact-cta--whatsapp:hover {
  border-color: var(--whatsapp);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.15));
}

.contact-cta__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-cta--whatsapp .contact-cta__icon {
  background: var(--whatsapp);
  color: var(--white);
}

.contact-cta__content {
  flex-grow: 1;
}

.contact-cta__label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.125rem;
}

.contact-cta__value {
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
}

.contact-cta__arrow {
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.contact-cta:hover .contact-cta__arrow {
  transform: translateX(4px);
  color: var(--blue-600);
}

/* Contact Info Items */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.contact-info-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item__label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.125rem;
}

.contact-info-item__value {
  font-weight: 500;
  line-height: 1.4;
}

/* Service Area Badge */
.service-area-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  margin-top: var(--space-lg);
}

.service-area-badge i {
  color: var(--blue-600);
  font-size: 1.25rem;
}

/* --- 6.10 Footer --- */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer__logo:hover {
  color: var(--white);
}

.footer__about {
  color: var(--gray-400);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.footer__heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer__links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--blue-400);
}

.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}

.footer__contact i {
  color: var(--blue-400);
  width: 1.25rem;
}

.footer__contact a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--blue-400);
}

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

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: var(--gray-800);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__divider {
  border-color: var(--gray-800);
  margin: var(--space-xl) 0;
}

.footer__bottom {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer__legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--gray-300);
}

.footer__credit {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

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

.footer__credit a:hover {
  color: var(--blue-400);
}

/* ============================================
   COOKIE CONSENT BANNER (GDPR / Consent Mode v2)
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent--hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-consent__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
}

@media (max-width: 767.98px) {
  .cookie-consent__container {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }
}

.cookie-consent__content {
  flex: 1;
  min-width: 280px;
}

.cookie-consent__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

@media (max-width: 767.98px) {
  .cookie-consent__title {
    justify-content: center;
  }
}

.cookie-consent__title i {
  color: var(--blue-600);
  font-size: 1.25rem;
}

.cookie-consent__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

@media (max-width: 767.98px) {
  .cookie-consent__actions {
    width: 100%;
    justify-content: center;
  }
}

.cookie-consent__btn {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cookie-consent__btn--primary {
  background: var(--blue-600);
  color: var(--white);
}

.cookie-consent__btn--primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.cookie-consent__btn--secondary {
  background: var(--gray-100);
  color: var(--text-primary);
}

.cookie-consent__btn--secondary:hover {
  background: var(--gray-200);
}

.cookie-consent__btn--link {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.625rem 0.75rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__btn--link:hover {
  color: var(--blue-600);
}

/* Cookie Settings Panel */
.cookie-settings {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - 2rem);
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: var(--space-md);
}

.cookie-settings--visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.cookie-settings__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.cookie-settings__header h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.cookie-settings__close {
  background: none;
  border: none;
  padding: var(--space-sm);
  cursor: pointer;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.cookie-settings__close:hover {
  background: var(--gray-100);
  color: var(--text-primary);
}

.cookie-settings__body {
  padding: var(--space-lg);
  max-height: 300px;
  overflow-y: auto;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option__info {
  flex: 1;
}

.cookie-option__info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cookie-option__info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-option__toggle {
  flex-shrink: 0;
}

.cookie-option__toggle input[type="checkbox"] {
  display: none;
}

.cookie-option__toggle label {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--gray-300);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-option__toggle label::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast);
}

.cookie-option__toggle input:checked + label {
  background: var(--blue-600);
}

.cookie-option__toggle input:checked + label::after {
  transform: translateX(20px);
}

.cookie-option__toggle input:disabled + label {
  background: var(--blue-400);
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-settings__footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--border-light);
  text-align: right;
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
  .cookie-settings {
    width: calc(100% - 1rem);
    left: 0.5rem;
    transform: translateX(0) translateY(20px);
    bottom: calc(100% + 0.5rem);
  }

  .cookie-settings--visible {
    transform: translateX(0) translateY(0);
  }
}

/* --- 6.11 Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 3.5rem;
  height: 3.5rem;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow-xl);
  z-index: var(--z-float);
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: var(--whatsapp-hover);
  color: var(--white);
  transform: scale(1.1);
  animation: none;
}

@media (min-width: 768px) {
  .whatsapp-float {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}

/* --- 6.12 Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: calc(var(--space-lg) + 4rem + var(--space-md));
  width: 2.75rem;
  height: 2.75rem;
  background: var(--white);
  color: var(--blue-600);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: var(--z-float);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
  transform: translateY(-2px);
}

/* --- 6.13 Trust Badge --- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--blue-50);
  border-radius: var(--radius-full);
  color: var(--blue-700);
  font-weight: 500;
}

.trust-badge i {
  color: var(--blue-600);
  font-size: 1.25rem;
}

/* --- 6.14 Vehicle Conditions Box --- */
.conditions-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
}

.conditions-box h4 {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.conditions-box p {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

.conditions-box p:last-child {
  margin-bottom: 0;
}

.conditions-box .text-success-light {
  color: #86EFAC;
}

.conditions-box .text-danger-light {
  color: #FCA5A5;
}

/* --- 6.15 Area Cards (Local SEO) --- */
.area-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.area-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.area-card__header i {
  font-size: 2rem;
  color: var(--blue-600);
}

.area-card__header h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.area-card__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.area-tag:hover {
  background: var(--blue-100);
  transform: translateY(-2px);
}

.area-tag i {
  font-size: 0.75rem;
  color: var(--blue-500);
}

.area-card__note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

/* --- 6.16 Brand Tags (Car Brands SEO) --- */
.brands-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.brand-category h3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.brand-category h3 i {
  color: var(--blue-600);
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.brand-tag {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: var(--gray-100);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.brand-tag:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  transform: translateY(-2px);
}

.brand-tag--premium {
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
}

/* ============================================
   NEW IMAGE SECTIONS
   ============================================ */

/* --- Visual Showcase Section --- */
.visual-showcase-section {
  position: relative;
  overflow: hidden;
}

.visual-showcase__wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .visual-showcase__wrapper {
    height: 500px;
  }
}

@media (min-width: 992px) {
  .visual-showcase__wrapper {
    height: 600px;
  }
}

.visual-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.visual-showcase__wrapper:hover .visual-showcase__image {
  transform: scale(1.03);
}

.visual-showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 31, 66, 0.9) 0%,
    rgba(10, 31, 66, 0.5) 40%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-2xl);
}

.visual-showcase__content {
  max-width: 700px;
}

.visual-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.visual-showcase__badge i {
  color: var(--blue-300);
}

.visual-showcase__title {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: var(--space-sm);
}

.visual-showcase__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .visual-showcase__text {
    font-size: 1.125rem;
  }
}

/* --- Trust Banner Section --- */
.trust-banner-section {
  position: relative;
}

.trust-banner__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.trust-banner__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.trust-banner__image-wrapper:hover .trust-banner__image {
  transform: scale(1.02);
}

.trust-banner__list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0 0;
}

.trust-banner__list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
}

.trust-banner__list li i {
  color: var(--success);
  font-size: 1.125rem;
}

/* --- Vehicles Showcase Image --- */
.vehicles-showcase__wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.vehicles-showcase__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.vehicles-showcase__wrapper:hover .vehicles-showcase__image {
  transform: scale(1.02);
}

/* --- Testimonials Header Image --- */
.testimonials-header__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.testimonials-header__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.testimonials-header__image-wrapper:hover .testimonials-header__image {
  transform: scale(1.02);
}

/* --- Service Area Map --- */
.service-area-map {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-area-map__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.service-area-map:hover .service-area-map__image {
  transform: scale(1.02);
}

.brand-tag--premium:hover {
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
}

.brands-info {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.brands-info__icon {
  font-size: 2rem;
  color: var(--blue-600);
  margin-bottom: var(--space-md);
}

.brands-info h4 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
}

.brands-info p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* --- 6.17 Service Detail Cards --- */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all var(--transition-base);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-detail-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.service-detail-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.service-detail-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.service-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.service-detail-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
}

/* --- 6.18 SEO Footer Section --- */
.seo-section {
  background: var(--gray-50);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border-light);
}

.seo-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.seo-block h2 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.seo-block h3 {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.seo-block p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.seo-keywords {
  font-size: 0.75rem !important;
  color: var(--gray-400) !important;
  line-height: 2.2 !important;
  word-spacing: 0.1em;
}

/* Visual separation for SEO keywords */
.seo-keywords::before {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--blue-200);
  margin-bottom: var(--space-md);
}

/* ============================================
   7. UTILITIES
   ============================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-blue {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue-600);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}

/* ============================================
   8. RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 575.98px) {
  .hero__title {
    font-size: 1.75rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__trust-row {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .btn-lg {
    width: 100%;
  }

  .stat-item__number {
    font-size: 1.5rem;
  }

  .footer__legal {
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
  }
}

@media (max-width: 767.98px) {
  .stats-bar {
    margin-top: 0;
    border-radius: 0;
  }

  .stat-item {
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md) 0;
  }

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

  .back-to-top {
    right: var(--space-lg);
    bottom: calc(var(--space-lg) + 4rem + var(--space-md));
  }
}

/* ============================================
   9. PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Content-visibility for below-fold sections - improves initial render */
.process-section,
.benefits-section,
.trust-banner-section,
.about-section,
.vehicles-section,
.testimonials-section,
.faq-section,
.contact-section,
.areas-section,
.brands-section,
.services-detail-section,
.seo-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* GPU acceleration hints for hover animations only (not on load) */
@media (min-width: 768px) {
  .btn:hover,
  .process-card:hover,
  .benefit-card:hover,
  .testimonial-card:hover,
  .glass-card:hover,
  .contact-cta:hover {
    will-change: transform;
  }
}

/* Hero animations - desktop only for performance */
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .hero__badge {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
  }
  .hero__title {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
  }
  .hero__subtitle {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
  }
  .hero__cta-group {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
  }
  .hero__trust-row {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
  }
  .hero__scroll {
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
  }
}

/* Optimize images */
img {
  content-visibility: auto;
}

/* Print styles */
@media print {
  .navbar,
  .whatsapp-float,
  .back-to-top,
  .hero__scroll {
    display: none !important;
  }

  .hero-section {
    min-height: auto;
    padding: var(--space-xl) 0;
    background: var(--white) !important;
    color: var(--text-primary) !important;
  }

  .hero__title,
  .hero__subtitle,
  .hero__badge {
    color: var(--text-primary) !important;
  }
}
