/* ========================================
   HOMEPAGE STYLES - COMPLET
   ======================================== */

/* Variables CSS */
:root {
    --primary-color: #059669;
    --secondary-color: #0f766e;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --gray-color: #6b7280;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   SECTION HERO
   ======================================== */

.hero-section-professional {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(5, 150, 105, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.hero-section-professional::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-section-professional .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    text-align: left;
}

.hero-visual-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    animation: pulse 3s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    margin: 0;
    line-height: 1.2;
}

.title-primary {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1.1;
}

.title-secondary {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #cbd5e1;
    line-height: 1.3;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
    max-width: 600px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
    width: 100%;
    padding: 0 10px;
}

.feature-card {
    background: white;
    padding: 16px 12px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 10px;
    font-size: 16px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 4px 0;
    text-align: center;
}

.feature-description {
    font-size: 12px;
    color: var(--gray-color);
    margin: 0;
    text-align: center;
}

.hero-cta-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    text-align: center;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    padding: 0 20px;
}

.cta-primary-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--success-color) 100%);
    color: white;
    padding: 16px 24px;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--success-color) 0%, var(--primary-color) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary-large:hover::before {
    left: 100%;
}

.cta-secondary-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 16px 24px;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-secondary-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-secondary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-secondary-large:hover::before {
    left: 100%;
}

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

.hero-trust-badges,
.hero-guarantees {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
    align-items: center;
}

.trust-badge,
.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: fit-content;
}

.trust-badge:hover,
.guarantee-item:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.trust-badge .emoji,
.guarantee-item .emoji {
    font-size: 14px;
    animation: pulse 2s infinite;
}

/* ========================================
   SECTION SERVICES EXPRESS
   ======================================== */

.services-section-professional {
    padding: 80px 0;
    background: white;
    position: relative;
}

.services-section-professional .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--border-radius-xl);
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(5, 150, 105, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(5, 150, 105, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
    position: relative;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--dark-color);
}

.service-features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    font-size: 16px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color), #3b82f6);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

/* ========================================
   SECTION MARQUES - DESIGN ULTRA-MODERNE
   ======================================== */

.brands-section-professional {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.brands-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(5, 150, 105, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.brands-section-professional .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.brand-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: 40px 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(5, 150, 105, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), #0ea5e9);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(5, 150, 105, 0.2);
    border-color: rgba(5, 150, 105, 0.3);
}

.brand-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
    position: relative;
}

.brand-logo::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color), #0ea5e9);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover .brand-logo::after {
    opacity: 1;
}

.brand-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.brand-feature {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(5, 150, 105, 0.2);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-feature {
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   SECTION VÉHICULES - DESIGN ULTRA-MODERNE
   ======================================== */

.vehicles-section-professional {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.vehicles-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.vehicles-section-professional .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.vehicle-category {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-xl);
    padding: 40px 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vehicle-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, var(--primary-color), var(--success-color));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-category:hover::before {
    transform: scaleX(1);
}

.vehicle-category:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
}

.vehicle-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, var(--primary-color), var(--success-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-category:hover .vehicle-icon::after {
    opacity: 1;
}

.vehicle-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vehicle-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.vehicle-brand {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(5, 150, 105, 0.1));
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.vehicle-category:hover .vehicle-brand {
    background: linear-gradient(135deg, #3b82f6, var(--primary-color));
    color: white;
    transform: translateY(-2px);
}

.vehicle-description {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.6;
}

.vehicles-zone-info {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.zone-badge-large {
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    color: white;
    padding: 30px 40px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    text-align: left;
}

.zone-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.zone-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.zone-description {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
}

/* ========================================
   SECTION POURQUOI CHOISIR - DESIGN ULTRA-MODERNE
   ======================================== */

.why-choose-section-professional {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--success-color) 50%, #0ea5e9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.why-choose-section-professional .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text {
    text-align: left;
}

.why-choose-section-professional .section-title {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.why-choose-section-professional .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.advantage-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.why-choose-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 400px;
}

.stat-showcase {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 30px 20px;
    border-radius: var(--border-radius-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-showcase:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-showcase-number {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-showcase-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-section-professional .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    text-align: center;
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.advantage-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.advantage-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ========================================
   SECTION STATS
   ======================================== */

.stats-section-professional {
    padding: 80px 0;
    background: white;
}

.stats-section-professional .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.5;
}

/* ========================================
   SECTION ZONE COVERAGE - DESIGN ULTRA-MODERNE
   ======================================== */

.coverage-section-professional {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.coverage-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 30%, rgba(5, 150, 105, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 60% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.coverage-section-professional .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.coverage-zones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.zone-group {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    padding: 25px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(5, 150, 105, 0.1);
    transition: var(--transition);
}

.zone-group:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(5, 150, 105, 0.2);
}

.zone-group-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zone-group-title::before {
    content: '📍';
    font-size: 16px;
}

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

.zone-list li {
    padding: 8px 0;
    color: var(--gray-color);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
    transition: all 0.3s ease;
}

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

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

.coverage-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coverage-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: 40px 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(5, 150, 105, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), #0ea5e9);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.coverage-card:hover::before {
    transform: scaleX(1);
}

.coverage-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(5, 150, 105, 0.2);
    border-color: rgba(5, 150, 105, 0.3);
}

.coverage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
    position: relative;
}

.coverage-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color), #0ea5e9);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coverage-card:hover .coverage-icon::after {
    opacity: 1;
}

.coverage-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverage-description {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.6;
}

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

.coverage-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.coverage-title::before {
    content: '📍';
    font-size: 24px;
}

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

.coverage-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-color);
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.coverage-list li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
}

/* ========================================
   SECTION CTA FINAL - DESIGN ULTRA-MODERNE
   ======================================== */

.final-cta-section-professional {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1f2937 50%, #111827 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(5, 150, 105, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.final-cta-section-professional .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.final-cta-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.final-cta-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff, #f0f9ff, #ecfdf5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.final-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.final-feature-icon {
    font-size: 20px;
}

.final-feature-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.cta-primary-final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    color: white;
    padding: 20px 40px;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-primary-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-primary-final:hover::before {
    left: 100%;
}

.cta-primary-final:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-secondary-final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
}

.cta-secondary-final:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cta-secondary-final:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

/* Tablettes */
@media (min-width: 768px) {
    .hero-section-professional {
        padding: 60px 0 80px;
    }
    
    .hero-section-professional .container {
        padding: 0 30px;
    }
    
    .hero-content-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 50px;
        text-align: left;
        align-items: start;
        max-width: 1100px;
        margin: 0 auto;
    }
    
    .hero-text-content {
        align-items: flex-start;
        gap: 25px;
        text-align: left;
    }
    
    .hero-badge {
        margin: 0;
    }
    
    .hero-title {
        text-align: left;
    }
    
    .hero-description {
        text-align: left;
        padding: 0;
        max-width: 90%;
    }
    
    .title-primary {
        font-size: 36px;
        margin-bottom: 10px;
        text-align: left;
    }
    
    .title-secondary {
        font-size: 18px;
        text-align: left;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .hero-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin: 25px 0;
        padding: 0;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .hero-cta-section {
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-cta-buttons {
        flex-direction: row;
        gap: 14px;
        align-items: flex-start;
        padding: 0;
    }
    
    .cta-primary-large,
    .cta-secondary-large {
        width: auto;
        max-width: none;
        padding: 14px 28px;
        font-size: 15px;
        margin: 0;
    }
    
    .hero-trust-badges,
    .hero-guarantees {
        flex-direction: row;
        gap: 12px;
        align-items: flex-start;
    }
    
    .hero-visual-content {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image-container {
        position: relative;
        width: 100%;
        max-width: 350px;
    }
    
    .final-cta-buttons {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .hero-section-professional .container {
        padding: 0 20px;
    }
    
    .hero-content-grid {
        max-width: 1200px;
        gap: 60px;
    }
    
    .title-primary {
        font-size: 42px;
    }
    
    .title-secondary {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 17px;
        max-width: 85%;
    }
    
    .hero-features-grid {
        gap: 20px;
        margin: 30px 0;
    }
    
    .cta-primary-large,
    .cta-secondary-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
}

/* iPhone et petits mobiles */
@media (max-width: 480px) {
    .hero-section-professional {
        padding: 30px 0 50px;
    }
    
    .hero-section-professional .container {
        padding: 0 12px;
    }
    
    .hero-content-grid {
        gap: 25px;
    }
    
    .hero-text-content {
        gap: 16px;
    }
    
    .title-primary {
        font-size: 22px;
    }
    
    .title-secondary {
        font-size: 13px;
    }
    
    .hero-description {
        font-size: 13px;
        padding: 0 5px;
    }
    
    .hero-features-grid {
        gap: 10px;
        margin: 16px 0;
        padding: 0 5px;
    }
    
    .feature-card {
        padding: 14px 10px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-title {
        font-size: 13px;
    }
    
    .feature-description {
        font-size: 11px;
    }
    
    .hero-cta-buttons {
        padding: 0 15px;
    }
    
    .cta-primary-large,
    .cta-secondary-large {
        padding: 11px 18px;
        font-size: 13px;
        max-width: 240px;
    }
    
    .services-section-professional,
    .brands-section-professional,
    .vehicles-section-professional,
    .why-choose-section-professional,
    .stats-section-professional,
    .coverage-section-professional,
    .final-cta-section-professional {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-grid,
    .brands-grid,
    .vehicles-grid,
    .advantages-grid,
    .stats-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-description {
        font-size: 16px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* Très petits écrans */
@media (max-width: 360px) {
    .hero-section-professional .container,
    .services-section-professional .container,
    .brands-section-professional .container,
    .vehicles-section-professional .container,
    .why-choose-section-professional .container,
    .stats-section-professional .container,
    .coverage-section-professional .container,
    .final-cta-section-professional .container {
        padding: 0 10px;
    }
    
    .title-primary {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .service-card,
    .brand-card,
    .vehicle-card,
    .advantage-card,
    .coverage-card {
        padding: 20px 15px;
    }
}



/* ========================================
   HERO MOBILE OPTIMISÉ - ULTRA MODERNE
   ======================================== */

/* Mobile Hero Layout */
@media (max-width: 768px) {
    .hero-section-professional {
        padding: 60px 0 80px;
        min-height: 100vh;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-content {
        align-items: center;
        text-align: center;
        order: 1;
    }
    
    .hero-visual-content {
        order: 2;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .title-primary {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .title-secondary {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Boutons CTA Mobile */
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }
    
    .cta-primary-modern,
    .cta-secondary-modern {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 15px;
        justify-content: center;
    }
    
    /* Garanties Mobile */
    .hero-guarantees-modern {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .guarantee-modern {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Batterie SVG Mobile */
    .battery-modern svg {
        width: 250px;
        height: 160px;
    }
    
    /* Caractéristiques Mobile */
    .hero-features-modern {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .feature-modern {
        padding: 20px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .feature-icon-modern {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .feature-title-modern {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .feature-desc-modern {
        font-size: 13px;
    }
}

/* Très petits écrans - Hero */
@media (max-width: 480px) {
    .hero-section-professional {
        padding: 40px 0 60px;
    }
    
    .hero-content-grid {
        gap: 30px;
    }
    
    .title-primary {
        font-size: 28px;
    }
    
    .title-secondary {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .battery-modern svg {
        width: 200px;
        height: 130px;
    }
    
    .cta-primary-modern,
    .cta-secondary-modern {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .feature-modern {
        padding: 18px;
    }
    
    .guarantee-modern {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Écrans extra-larges - Hero Desktop */
@media (min-width: 1200px) {
    .hero-content-grid {
        gap: 80px;
    }
    
    .title-primary {
        font-size: 56px;
    }
    
    .title-secondary {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 20px;
        max-width: 650px;
    }
    
    .battery-modern svg {
        width: 350px;
        height: 230px;
    }
    
    .hero-features-modern {
        gap: 25px;
        margin-top: 50px;
    }
    
    .feature-modern {
        padding: 30px;
    }
}


/* ========================================
   STYLES POUR LES NOUVEAUX ÉLÉMENTS HERO MODERNES
   ======================================== */

/* Styles pour les nouveaux éléments Hero modernes */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.cta-primary-modern, .cta-secondary-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary-modern {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
}

.cta-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.5);
    color: white;
}

.cta-secondary-modern {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.cta-secondary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
    color: white;
}

.battery-modern {
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(5, 150, 105, 0.3));
}

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

.hero-features-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-modern:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(5, 150, 105, 0.4);
}

.feature-icon-modern {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.feature-title-modern {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.feature-desc-modern {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.4;
}

.hero-guarantees-modern {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.guarantee-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.guarantee-modern:hover {
    background: rgba(5, 150, 105, 0.3);
    transform: translateY(-2px);
}

.hero-visual-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}



/* ========================================
   CORRECTIONS DES PROBLÈMES IDENTIFIÉS
   ======================================== */

/* 1. Bouton "Voir toutes nos batteries" - Style moderne */
.brands-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-brands {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-brands:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.5);
    color: white;
}

.cta-brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-brands:hover::before {
    left: 100%;
}

.cta-brands svg {
    transition: transform 0.3s ease;
}

.cta-brands:hover svg {
    transform: translateX(5px);
}

/* 2. Zone d'Intervention - Texte blanc lisible */
.vehicle-intervention-zone {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white !important;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.vehicle-intervention-zone h3 {
    color: white !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vehicle-intervention-zone p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* 3. Zone de Couverture - Espacement des cartes CORRIGÉ */
.coverage-zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.coverage-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    clear: both;
}

.coverage-info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.coverage-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.coverage-info-card .coverage-icon {
    display: none; /* Suppression des icônes SVG en double */
}

.coverage-info-card h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.coverage-info-card p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 4. Section finale - Layout CENTRÉ et SIMPLE pour desktop */
.final-cta-section-professional {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(5, 150, 105, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.final-cta-section-professional .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta-content {
    text-align: center;
}

.final-cta-title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.final-cta-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.final-cta-primary, .final-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.final-cta-primary {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.final-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
    color: white;
}

.final-cta-secondary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.final-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    color: white;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
}

.final-cta-feature span:first-child {
    font-size: 14px;
}

/* 5. Media Queries Mobile - CORRECTION FINALE */
@media (max-width: 480px) {
    /* Bouton batteries mobile */
    .cta-brands {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Zone d'intervention mobile */
    .vehicle-intervention-zone {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .vehicle-intervention-zone h3 {
        font-size: 18px;
        text-align: center;
    }
    
    .vehicle-intervention-zone p {
        font-size: 15px;
        text-align: center;
    }
    
    /* Couverture mobile - 1 SEULE CARTE PAR LIGNE ULTRA-FORCÉ */
    .coverage-zones-grid {
        display: block !important;
        width: 100%;
    }
    
    .coverage-zones-grid .zone-group {
        display: block;
        width: 100%;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .coverage-info-cards {
        display: block !important;
        width: 100%;
        margin-top: 40px;
    }
    
    .coverage-info-card {
        display: block;
        width: calc(100% - 20px);
        margin: 0 10px 20px 10px;
        padding: 25px 20px;
        box-sizing: border-box;
        float: none;
        clear: both;
    }
    
    /* Services mobile - 1 CARTE PAR LIGNE */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    /* Marques mobile - 1 CARTE PAR LIGNE */
    .brands-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .brand-card {
        margin: 0 10px;
    }
    
    /* Véhicules mobile - 1 CARTE PAR LIGNE */
    .vehicles-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .vehicle-category {
        margin: 0 10px;
    }
    
    /* Section finale mobile - LAYOUT SIMPLE */
    .final-cta-section-professional .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .final-cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .final-cta-description {
        font-size: 15px;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .final-cta-primary, .final-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
        gap: 6px;
    }
    
    .final-cta-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .final-cta-feature {
        font-size: 12px;
        gap: 6px;
    }
    
    .final-cta-feature span:first-child {
        font-size: 14px;
    }
}

/* Media Queries Très Petits Écrans - ULTRA SIMPLE */
@media (max-width: 360px) {
    .cta-brands {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .vehicle-intervention-zone {
        padding: 20px 15px;
    }
    
    .coverage-info-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .service-card, .brand-card, .vehicle-category {
        margin: 0 5px;
    }
    
    .final-cta-title {
        font-size: 22px;
    }
    
    .final-cta-description {
        font-size: 14px;
    }
    
    .final-cta-primary, .final-cta-secondary {
        padding: 12px 18px;
        font-size: 13px;
        max-width: 260px;
    }
}

