/* 
   Remorquage Pro - Version: 1.0.2
   Clean Modern SaaS Style
*/

:root {
    --bg-main: #ffffff;
    --primary: #FF5E00; /* Vibrant Modern Orange */
    --primary-hover: #E65500;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #ffffff;
    --border: #E2E8F0;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1600px; /* Wider layout as requested */
    margin: 0 auto;
    padding: 0 4rem; /* More horizontal padding for large screens */
    width: 100%;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* Navbar */
header {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--text-light);
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: rgba(15, 23, 42, 0.05);
    border: none;
    color: var(--text-main);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(15, 23, 42, 0.1);
}

/* Drawer Styles */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    
    /* Structural Fix: prevent off-screen element from pushing scrollWidth */
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}

.mobile-drawer.active {
    right: 0;
    visibility: visible;
    pointer-events: all;
    opacity: 1;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.close-drawer {
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
}

.drawer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.drawer-footer {
    margin-top: auto;
    padding-top: 2rem;
}

.cta-btn.full-width {
    width: 100%;
    justify-content: center;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
        order: 2;
    }
    .cta-btn {
        order: 3;
        padding: 0.6rem 1.2rem;
    }
    .cta-btn span {
        display: none;
    }
    .logo {
        order: 1;
    }
}

@media (max-width: 480px) {
    header {
        height: 70px;
    }
    .logo {
        font-size: 1rem;
        gap: 0.5rem;
    }
    .logo-icon {
        width: 28px;
        height: 28px;
    }
}

.cta-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 94, 0, 0.2);
}

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

/* Hero Section V3 - Updated */
.hero {
    padding: 30px 0 80px; /* Réduit l'espace haut */
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 850px;
}

/* Global Responsivity Fixes */
@media (max-width: 1024px) {
    .services-grid-v3, .blog-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-v3, .blog-grid-v3, .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header-centered h2, .section-header-flex h2 {
        font-size: 2rem;
    }
    
    .footer-grid-v3 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .ai-capsules-container {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Badges Pills */
.hero-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem; /* Espace réduit */
    flex-wrap: wrap;
}

.badge-pill {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22C55E; /* Vert "en ligne" */
    border-radius: 50%;
    animation: green-blink 1.5s infinite;
}

@keyframes green-blink {
    0% { opacity: 1; transform: scale(1); box-shadow: 0 0 0px rgba(34, 197, 94, 0); }
    50% { opacity: 0.6; transform: scale(1.2); box-shadow: 0 0 8px rgba(34, 197, 94, 0.5); }
    100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0px rgba(34, 197, 94, 0); }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

@media (max-width: 768px) {
    /* Fondations & Overflow Safety */
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .container {
        padding: 0 20px !important; /* Gain space */
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* Hiérarchie Typographique Mobile-First */
    h1 { 
        font-size: 1.5rem !important; /* Radical reduction for 390px safety */
        line-height: 1.2 !important; 
        max-width: 100% !important;
        overflow-wrap: anywhere !important; /* Force wrap 'Automobile' if needed */
        word-break: normal !important; 
        hyphens: none !important; 
    }
    h2 { font-size: 1.75rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.35rem !important; line-height: 1.4 !important; }
    p, span, a, li { font-size: 1rem !important; }
    .hero-subtitle { font-size: 1.1rem !important; opacity: 0.9; }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 0 !important; /* Use container padding instead */
    }
    .hero-content > h1 {
        order: 1 !important;
        margin-bottom: 1.25rem !important;
    }
    .hero-content > .search-bar-v3 {
        order: 2 !important;
        margin-bottom: 2.5rem !important;
        display: flex !important;
        width: 100% !important;
    }
    .hero-content > .hero-subtitle {
        order: 3 !important;
        margin-bottom: 1.75rem !important;
    }
    .hero-content > .hero-badges {
        order: 4 !important;
        display: flex !important;
        flex-wrap: wrap !important; /* Fix overflow */
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-bottom: 2rem !important;
    }
    .hero-content > .hero-assurance {
        order: 5 !important;
        display: flex !important;
        flex-direction: column !important; /* Stack on small mobile */
        align-items: center !important;
        gap: 0.75rem !important;
        margin-bottom: 2rem !important;
    }
    .hero-content > .google-reviews {
        order: 6 !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 2.5rem !important;
    }
    .hero-content > .feature-grid {
        order: 7 !important;
        grid-template-columns: 1fr !important; /* Stack cards */
        width: 100% !important;
        gap: 1rem !important;
    }
    
    /* Bouton Normalisation */
    .cta-btn, .ai-button, .footer-emergency-btn, .search-bar-v3 .cta-btn {
        height: 56px !important;
        padding: 0 24px !important;
        font-size: 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0.5rem 0 !important;
        text-transform: none !important; /* Ensure mixed case */
    }

    .btn-emergency {
        height: auto !important;
        min-height: 64px;
        padding: 1.25rem !important;
    }

    /* Header Mobile Optimization */
    header .cta-btn {
        display: none !important; /* Hide 'Réserver' button on small mobile to avoid overflow */
    }
    .logo {
        font-size: 1.2rem !important;
    }

    /* Clamp Dropdown to avoid 558px overflow */
    .dropdown-list {
        width: 100% !important;
        max-width: calc(100vw - 40px) !important;
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
        visibility: hidden; /* Safety */
    }
    .custom-dropdown.active .dropdown-list {
        visibility: visible;
    }
    .dropdown-item {
        white-space: normal !important; 
    }
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.assurance-item svg {
    flex-shrink: 0;
}

.delay-badge {
    background: #DC2626;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.google-reviews {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    width: fit-content;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
}

.stars {
    color: #FBBF24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.google-reviews span {
    font-size: 0.85rem;
    color: var(--text-main);
}

/* Feature Grid - Apple Style */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
    max-width: 815px; /* Aligné sur "Remorquage" */
}

.feature-card {
    background: rgba(255, 255, 255, 0.7); /* Transparence Liquid Glass */
    backdrop-filter: blur(12px); /* Effet de flou */
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid rgba(255, 94, 0, 0.15); /* Bordure orange très légère */
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.03),
        inset 0 0 15px rgba(255, 94, 0, 0.05); /* Lueur interne orange */
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: 0.3;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(255, 94, 0, 0.12),
        inset 0 0 20px rgba(255, 94, 0, 0.08);
    border-color: rgba(255, 94, 0, 0.4);
    background: rgba(255, 255, 255, 0.85);
}

.feature-card:hover::before {
    opacity: 1;
    width: 4px;
}

.icon-box {
    min-width: 52px; /* Un peu plus grand */
    height: 52px;
    background: linear-gradient(135deg, #FFF0E6 0%, #FFE4D1 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(255, 94, 0, 0.2);
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.feature-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-card h3 {
    font-size: 1rem; /* Un peu plus grand */
    font-weight: 800; /* Plus gras */
    margin: 0;
    color: var(--text-main);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
}

/* Stats Section V3 */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 80px;
}

@media (max-width: 1024px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-section {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
}

.stat-card {
    background: #0a0a0b;
    padding: 30px 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 94, 0, 0.12);
}

.stat-card h3 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-card p {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card span {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
    display: block;
}



/* Oval Image */
.hero-image-v3 {
    position: relative;
    width: 100%;
}

.image-oval {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 200px 200px 200px 200px;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-color: #f1f5f9; /* Fallback color */
    background-image: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Floating Badge - Liquid Glass Premium */
.contact-badge {
    position: absolute;
    bottom: -10px; /* Ajusté pour mieux "chevaucher" l'image */
    left: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 10;
    border: 1px solid rgba(255, 94, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.contact-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(255, 94, 0, 0.15);
}

.contact-badge svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite; /* Rotation beaucoup plus lente */
}

.badge-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.3);
}

.badge-icon svg {
    width: 20px;
    height: 20px;
    position: relative;
    animation: none; /* Pas de rotation sur l'icône */
}

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

/* Search Bar V3 */
.search-bar-v3 {
    position: relative; /* Créer un contexte d'empilement */
    z-index: 100; /* Force l'affichage par-dessus les éléments suivants */
    background: white;
    padding: 1.25rem; /* Plus d'importance */
    border-radius: 100px;
    display: flex;
    gap: 1rem;
    /* Effet Bandeau LED Orange */
    box-shadow: 0 20px 40px rgba(255, 94, 0, 0.15), 0 0 20px rgba(255, 94, 0, 0.1);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 94, 0, 0.2);
    max-width: 815px; /* Aligné sur "Remorquage" */
    transition: var(--transition);
}

.search-bar-v3:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(255, 94, 0, 0.2), 0 0 30px rgba(255, 94, 0, 0.15);
}

.search-input-group {
    flex: 2; /* Plus large pour la localisation */
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    border-right: 1px solid var(--border);
}

.search-input-group.search-vehicle {
    flex: 1.2; /* Moins large pour le type de véhicule */
}

.search-input-group:last-of-type {
    border-right: none;
}

.search-bar-v3 input, 
.search-bar-v3 select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: var(--text-main);
    background: transparent;
    cursor: pointer;
}

/* Custom Dropdown V3 */
.custom-dropdown {
    position: relative;
    width: 100%;
    user-select: none;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.dropdown-header .chevron {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.custom-dropdown.active .dropdown-header {
    color: var(--text-main);
}

.custom-dropdown.active .chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.dropdown-list {
    position: absolute;
    top: calc(100% + 20px);
    left: -60px; /* Aligné pour compenser le padding du parent */
    width: 280px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 94, 0, 0.15);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    padding: 0.75rem;
    overflow: hidden;
}

.custom-dropdown.active .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.dropdown-item span {
    font-size: 1.2rem;
}

.dropdown-item:hover {
    background: rgba(255, 94, 0, 0.08);
    color: var(--primary);
    transform: translateX(5px);
}

/* Responsivité Mobile */
@media (max-width: 768px) {
    .dropdown-list {
        left: 0;
        width: 100%;
        position: fixed;
        bottom: 0;
        top: auto;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
    }
    .custom-dropdown.active .dropdown-list {
        transform: translateY(0);
    }
}

.search-bar-v3 button {
    padding: 0.75rem 2rem;
}

@media (max-width: 768px) {
    .search-bar-v3 {
        flex-direction: column;
        border-radius: 24px;
        padding: 1rem;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0;
        margin-right: 0;
        gap: 0;
    }
    .search-input-group {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding: 1rem 0 !important;
        width: 100% !important;
    }
    .search-bar-v3 button {
        width: 100% !important;
        padding: 1.25rem !important;
        margin-top: 1rem;
        font-size: 1.1rem;
    }
    .custom-dropdown .dropdown-list {
        width: 100vw !important;
        left: 0 !important;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .nav-links {
        display: none;
    }
}

/* Stats Section */
.stats-section {
    background: var(--text-main);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 0;
    z-index: 10;
}

@media (max-width: 1024px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
}

.stat-card {
    color: var(--text-light);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

@media (max-width: 1024px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
    }
}

@media (max-width: 640px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
}

/* Services Section V3 */
.services-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pill-badge {
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-v3 {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: rgba(255, 94, 0, 0.2);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-v3:hover .card-image img {
    transform: scale(1.1);
}

.rating-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    backdrop-filter: blur(4px);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.card-icon {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid #f1f5f9;
}

.card-price {
    text-align: right;
}

.card-price .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.card-price .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.status-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.badge-item {
    background: #f8fafc;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-item.green {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

.card-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-orange {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-orange:hover {
    background: #e65500;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 94, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: var(--text-muted);
    padding: 12px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 94, 0, 0.02);
}

.card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.dot {
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.dot.green {
    background: #22C55E;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

/* Responsivité Mobile */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Regions Section V3 */
.regions-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 4rem auto;
    background: #f8fafc;
    border-radius: 48px;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.header-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
}

.region-count-badge {
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.region-card {
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.region-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.region-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.region-arrow {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.region-card:hover h3 {
    color: var(--primary);
}

.region-card:hover .region-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(3px);
}

/* Highlight Region (ex: IDF) */
.region-card.highlight-region {
    background: var(--primary);
    border-color: var(--primary);
}

.region-card.highlight-region h3,
.region-card.highlight-region span {
    color: white;
}

.region-card.highlight-region .region-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Responsivité */
@media (max-width: 1200px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .regions-section {
        padding: 4rem 1.5rem;
        border-radius: 32px;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content h2 {
        font-size: 2rem;
    }
}

/* How It Works Section V3 */
.how-it-works-v3 {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    margin-top: 5rem;
    padding-bottom: 4rem;
}

.timeline-road {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e2e8f0;
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-road::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 15px,
        #cbd5e1 15px,
        #cbd5e1 30px
    );
}

.moving-vehicle {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%) rotate(90deg);
    z-index: 10;
    transition: top 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    filter: drop-shadow(0 4px 10px rgba(255, 94, 0, 0.3));
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.step-card {
    display: flex;
    width: 45%;
    position: relative;
    transition: all 0.5s ease;
}

.left-card {
    align-self: flex-start;
    justify-content: flex-end;
}

.right-card {
    align-self: flex-end;
    justify-content: flex-start;
}

.step-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    width: 100%;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 5;
    transition: all 0.3s ease;
}

.left-card::after {
    right: -calc(11.1% + 10px);
    transform: translateY(-50%);
}

.right-card::after {
    left: -calc(11.1% + 10px);
    transform: translateY(-50%);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 94, 0, 0.05);
    line-height: 1;
    z-index: -1;
}

.step-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Active State */
.step-card.active-step .step-content {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(255, 94, 0, 0.1);
}

.step-card.active-step::after {
    background: var(--primary);
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 15px var(--primary);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .left-card::after {
        right: -calc(11.1% + 12px);
    }
    .right-card::after {
        left: -calc(11.1% + 12px);
    }
}

@media (max-width: 768px) {
    .timeline-road {
        left: 30px;
    }
    
    .moving-vehicle {
        left: 30px;
    }
    
    .step-card {
        width: calc(100% - 60px);
        margin-left: 60px;
        align-self: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .step-card::after {
        left: -40px !important;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
}

/* CTA Emergency Section V3 */
.cta-emergency-v3 {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 4rem auto;
}

.cta-card-v3 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 40px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
}

.cta-card-v3::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-left {
    flex: 1;
}

.cta-title h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-title h2 {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.cta-desc {
    color: #94a3b8;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-trust-points {
    display: flex;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #f1f5f9;
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 400px;
}

.btn-emergency {
    background: var(--primary);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.4);
    animation: pulseCTAEmergency 2s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes pulseCTAEmergency {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 94, 0, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 15px 40px rgba(255, 94, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 94, 0, 0.4); }
}

.btn-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.btn-main-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-text-main {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.btn-text-sub {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 600;
    text-align: center;
}

.btn-emergency:hover {
    transform: translateY(-3px) scale(1.03);
    background: #ff751a;
}

.btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-stats-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 400px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    position: relative;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.stat-box-footer {
    grid-column: span 3;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #cbd5e1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .btn-emergency {
        padding: 1.25rem 1rem;
    }
    .btn-text-main {
        font-size: 1.15rem;
    }
    .btn-text-sub {
        font-size: 0.8rem;
    }
    .btn-main-row {
        gap: 8px;
    }
}

/* Responsivité CTA */
@media (max-width: 992px) {
    .cta-card-v3 {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title h2 {
        font-size: 2.8rem;
    }
    
    .cta-desc {
        margin-bottom: 2rem;
    }
    
    .cta-right {
        align-items: center;
        width: 100%;
    }
    
    .cta-buttons, .cta-stats-box {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .cta-title h2 {
        font-size: 2.2rem;
    }
    
    .cta-trust-points {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-emergency-v3 {
        padding: 4rem 1rem;
    }
}

/* Blog Section V3 */
.blog-section-v3 {
    padding: 8rem 2rem;
    max-width: 1550px;
    margin: 0 auto;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header-centered h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.blog-card-v3 {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blog-card-v3:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.blog-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-v3:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.blog-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 94, 0, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.blog-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-card-v3:hover h3 {
    color: var(--primary);
}

.blog-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsivité Blog */
@media (max-width: 1400px) {
    .blog-grid-v3 {
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .blog-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-section-v3 {
        padding: 6rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-header-centered h2 {
        font-size: 2.2rem;
    }
    
    .blog-grid-v3 {
        grid-template-columns: 1fr;
    }
    
    .blog-card-v3 {
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-body {
        padding: 1.25rem !important;
    }

    .blog-meta {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.4rem !important;
        margin-bottom: 0.75rem !important;
        display: flex !important;
    }
    
    .blog-meta span {
        font-size: 0.8rem !important;
    }

    .blog-category {
        top: 1rem !important;
        left: 1rem !important;
        padding: 4px 10px !important;
        font-size: 0.65rem !important;
    }

    .blog-placeholder svg {
        width: 32px !important;
        height: 32px !important;
    }

    .blog-body h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0.75rem !important;
    }

    .blog-body p {
        font-size: 0.9rem !important;
    }
}

/* FAQ Section V3 */
.faq-section-v3 {
    padding: 8rem 2rem;
    background: #fcfcfd;
    border-top: 1px solid #f1f5f9;
}

.pill-badge-orange {
    background: #fff4ed;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

.faq-main-badge {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 94, 0, 0.08);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.faq-header h2 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    transition: color 0.3s ease;
    text-transform: none;
}

.faq-item.active .faq-question span {
    color: var(--primary);
}

.chevron {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #94a3b8;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Large enough for any response */
}

.answer-content {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.answer-content strong {
    color: var(--text-main);
    font-weight: 700;
}

/* Specific SEO styling for synonyms */
.faq-main-badge svg {
    animation: bounceIcon 2s infinite;
}

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

@media (max-width: 640px) {
    .faq-main-badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .faq-question {
        padding: 1.25rem 1.25rem;
    }
    
    .faq-question span {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .answer-content {
        padding: 0 1.25rem 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* --- FOOTER V3 --- */
.footer-v3 {
    background: radial-gradient(ellipse at 30% 20%, #ffb8001a 0%, transparent 50%), 
                radial-gradient(ellipse at 70% 80%, #1e4d8c26 0%, transparent 50%), 
                linear-gradient(135deg, #000000 0%, #020304 50%, #662a01 100%);
    padding: 80px 0 30px;
    color: #e0e0e0;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

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

.footer-container {
    max-width: 1750px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #999;
}

.footer-brand-desc strong {
    color: #fff;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Legal Glass Card */
.legal-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10px;
    backdrop-filter: blur(10px);
}

.glass-header {
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 94, 0, 0.1);
}

.glass-body {
    padding: 15px;
}

.glass-body p {
    font-size: 0.85rem;
    margin: 0 0 8px;
    color: #bbb;
    line-height: 1.4;
}

.glass-body p strong {
    color: #fff;
}

.glass-footer {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.75rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Emergency Card */
.emergency-footer-card {
    background: #1a1a1c;
    border-left: 3px solid var(--primary);
    padding: 15px;
    border-radius: 4px 8px 8px 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.emergency-pulse {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 94, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 94, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 94, 0, 0); }
}

.emergency-info {
    display: flex;
    flex-direction: column;
}

.emergency-label {
    font-size: 0.75rem;
    color: #999;
}

.emergency-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.footer-emergency-btn {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    height: 56px; /* Standardize height */
    padding: 0 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    display: flex; /* Better centering */
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 94, 0, 0.2);
    white-space: nowrap;
    text-transform: none; /* No more CAPS on emergency button */
}

.footer-emergency-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 94, 0, 0.3);
}

/* Reviews Card */
.reviews-footer-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.review-source {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

.review-source strong {
    color: #fff;
}

/* Contact Col */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #bbb;
    margin: 0;
}

.contact-info p a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info p a:hover {
    color: var(--primary) !important;
    text-decoration: underline;
}

.footer-v3 .logo {
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-v3 .logo-icon {
    background: var(--primary);
    padding: 8px;
    border-radius: 12px;
}

.footer-v3 .logo-icon svg {
    stroke: #ffffff !important;
}

.social-label {
    font-size: 0.8rem;
    color: #666;
    margin: 10px 0 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.3);
}


/* AI Bar */
.footer-ai-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap; /* NEW */
}

@media (max-width: 768px) {
    .footer-ai-summary {
        padding: 15px;
        gap: 15px;
        justify-content: center;
    }
}

.ai-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.ai-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px #4CAF50;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.ai-tag {
    font-size: 0.65rem;
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 800;
}

.ai-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-button {
    background: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a2b4b;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ai-button img {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.ai-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.3);
    background: #f8fafc;
}

@media (max-width: 1200px) {
    .ai-logos {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.85rem;
    color: #666;
}

.copyright strong {
    color: #888;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Footer Grid Correction */
    .footer-grid, .footer-grid-v3, .services-grid-v3, .blog-grid-v3, .regions-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 2rem !important;
    }

    .footer-ai-summary {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .ai-logos {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
    }

    /* AI Buttons Scaling */
    .ai-button {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Global Safety */
    * {
        max-width: 100vw;
    }
}

@media (max-width: 400px) {
    .logo span {
        display: none; /* Hide 'Pro' to save space if needed */
    }
}

