/* =============================================
   ENERGIE TRAVAUX HABITAT - Custom CSS
   Charte : Marine (#072c47) / Bleu (#1e5aa8) / Or (#f4b400) / Orange (#f28c28)
   Framework : Bootstrap 5
   ============================================= */

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    /* Couleurs principales */
    --eth-primary: #072c47;
    --eth-primary-dark: #041e30;
    --eth-primary-light: #1e5aa8;
    --eth-accent: #f4b400;
    --eth-accent-hover: #dba100;
    --eth-accent-secondary: #f28c28;
    --eth-accent-light: #fff3cc;

    /* Couleurs neutres */
    --eth-dark: #1a1a2e;
    --eth-gray: #6b7280;
    --eth-gray-light: #9ca3af;
    --eth-bg-light: #f8f9fa;
    --eth-bg-lighter: #f1f5f9;
    --eth-white: #ffffff;
    --eth-border: #e5e7eb;

    /* Typographie */
    --eth-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --eth-font-heading: 'Playfair Display', Georgia, serif;

    /* Transitions */
    --eth-transition: 0.3s ease;
    --eth-transition-fast: 0.15s ease;

    /* Ombres */
    --eth-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --eth-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --eth-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --eth-shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* =============================================
   GLOBAL
   ============================================= */
body {
    font-family: var(--eth-font);
    color: var(--eth-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--eth-primary);
    line-height: 1.3;
}

a {
    color: var(--eth-primary);
    text-decoration: none;
    transition: color var(--eth-transition-fast);
}

a:hover {
    color: var(--eth-accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-accent {
    background-color: var(--eth-accent);
    color: var(--eth-primary) !important;
    font-weight: 700;
    border: 2px solid var(--eth-accent);
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    transition: all var(--eth-transition);
}

.btn-accent:hover {
    background-color: var(--eth-accent-hover);
    border-color: var(--eth-accent-hover);
    color: var(--eth-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 183, 49, 0.4);
}

.btn-primary {
    background-color: var(--eth-primary);
    border-color: var(--eth-primary);
    border-radius: 50px;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
}

.btn-primary:hover {
    background-color: var(--eth-primary-dark);
    border-color: var(--eth-primary-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border-width: 2px;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    color: var(--eth-primary) !important;
    background-color: #ffffff !important;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background-color: #1e5aa8;
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    font-size: 1rem;
    height: 42px;
    display: flex;
    align-items: center;
}

.top-bar .container {
    width: 100%;
}

.top-bar .list-inline-item {
    line-height: 42px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar a:hover {
    color: var(--eth-accent);
}

.top-bar i {
    color: var(--eth-accent);
    margin-right: 0.4rem;
    font-size: 1.1rem;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.header-main {
    background: var(--eth-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 1050;
}

.navbar {
    padding: 1.2rem 0;
}

.navbar-brand {
    font-size: 0;
}

.logo-img {
    height: 120px;
    width: auto;
}

.logo-text {
    font-family: var(--eth-font);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--eth-white);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--eth-accent);
    color: var(--eth-primary);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.4rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 1.1rem;
    position: relative;
    transition: color var(--eth-transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 3px;
    background: var(--eth-accent);
    transform: scaleX(0);
    transition: transform var(--eth-transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--eth-accent) !important;
}

.header-main .btn-accent {
    font-size: 1.1rem;
    padding: 0.7rem 2rem;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--eth-shadow-lg);
    border-radius: 12px;
    padding: 0.5rem;
    background-color: #ffffff;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.55rem 1.1rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--eth-primary);
    transition: all var(--eth-transition-fast);
}

.dropdown-item:hover {
    background-color: var(--eth-accent-light);
    color: var(--eth-primary);
}

/* Mobile toggler */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.6rem;
}

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

/* Menu mobile ouvert : fond sombre garanti pour les liens blancs */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--eth-primary);
        padding: 0.5rem 0 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0 -0.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .navbar-nav .nav-link {
        padding: 0.6rem 1rem !important;
        border-radius: 8px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.08);
    }

    /* Dropdown items sur mobile : fond blanc, texte navy */
    .navbar-collapse .dropdown-menu {
        background: rgba(255, 255, 255, 0.06);
        box-shadow: none;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0.25rem 0;
    }

    .navbar-collapse .dropdown-item {
        color: rgba(255, 255, 255, 0.85);
    }

    .navbar-collapse .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--eth-accent);
    }
}

/* -----------------------------------------
   MEGA MENU (Services + Sous-services)
   Design premium avec cards, icônes et CTA
   ----------------------------------------- */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    border: none;
    border-top: 3px solid var(--eth-accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border-radius: 0 0 20px 20px;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
    animation: megaMenuFadeIn 0.25s ease;
}

@keyframes megaMenuFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mega-menu .container {
    padding: 0;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* --- Card mega-menu --- */
.mega-menu-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.25rem 1.4rem;
    border-right: 1px solid rgba(7, 44, 71, 0.08);
    border-bottom: 1px solid rgba(7, 44, 71, 0.08);
    position: relative;
    transition: background 0.25s ease;
    cursor: default;
}

.mega-menu-card:hover {
    background: rgba(7, 44, 71, 0.04);
}

/* Ligne dorée au hover */
.mega-menu-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--eth-accent);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    transform-origin: top;
}

.mega-menu-card:hover::before {
    transform: scaleY(1);
}

/* 3e colonne : pas de border-right */
.mega-menu-card:nth-child(3n) {
    border-right: none;
}

/* Dernière ligne : pas de border-bottom */
.mega-menu-card:nth-child(n+4) {
    border-bottom: none;
}

/* --- Icône ronde --- */
.mega-menu-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--card-color) 15%, transparent);
    color: var(--card-color);
    font-size: 1.2rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.mega-menu-card-icon:hover {
    color: var(--card-color);
}

.mega-menu-card:hover .mega-menu-card-icon {
    background: var(--card-color);
    color: #fff;
    transform: scale(1.08);
}

/* --- Body --- */
.mega-menu-card-body {
    flex: 1;
    min-width: 0;
}

.mega-menu-card-body .mega-menu-title {
    margin: 0 0 0.35rem 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--eth-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-card-body .mega-menu-title a {
    color: var(--eth-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu-card-body .mega-menu-title a:hover {
    color: var(--eth-primary-light);
}

/* Badge 7j/7 */
.mega-menu-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.15rem 0.45rem;
    border-radius: 20px;
    background: #c92a2a;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* --- Liens sous-services --- */
.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-links li {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.mega-menu-links li::before {
    content: '●';
    color: var(--eth-accent);
    font-size: 0.4rem;
    flex-shrink: 0;
}

.mega-menu-links a {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(7, 44, 71, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu-links a:hover {
    color: var(--eth-primary-light);
}

/* --- Flèche --- */
.mega-menu-card-arrow {
    color: rgba(7, 44, 71, 0.2);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    transition: all 0.25s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.mega-menu-card-arrow:hover {
    color: var(--eth-accent);
}

.mega-menu-card:hover .mega-menu-card-arrow {
    color: var(--eth-accent);
    transform: translateX(3px);
}

/* --- Card urgence (rouge subtil) --- */
.mega-menu-card-urgent {
    background: rgba(201, 42, 42, 0.05);
}

.mega-menu-card-urgent:hover {
    background: rgba(201, 42, 42, 0.1);
}

/* --- CTA Bandeau bas --- */
.mega-menu-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    background: var(--eth-accent-light);
    border-top: 1px solid rgba(7, 44, 71, 0.1);
}

.mega-menu-cta-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(7, 44, 71, 0.7);
}

.mega-menu-cta-text i {
    color: var(--eth-accent-secondary);
    font-size: 1rem;
}

.mega-menu-cta-text strong {
    color: var(--eth-primary);
}

.mega-menu-cta .btn {
    font-size: 0.8rem;
    padding: 0.35rem 1rem;
    white-space: nowrap;
}

/* ===== RESPONSIVE MEGA-MENU ===== */
@media (max-width: 991.98px) {
    .mega-menu {
        position: relative;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: var(--eth-bg-lighter);
        animation: none;
    }

    .mega-menu .container {
        padding: 0;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mega-menu-card {
        padding: 0.7rem 1rem;
        border-right: none;
        border-bottom: 1px solid var(--eth-border);
    }

    .mega-menu-card::before {
        display: none;
    }

    .mega-menu-card:hover {
        background: rgba(0, 0, 0, 0.03);
    }

    .mega-menu-card-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .mega-menu-card-body .mega-menu-title {
        color: var(--eth-primary);
        font-size: 0.88rem;
    }

    .mega-menu-links {
        display: none;
    }

    .mega-menu-card-arrow {
        color: var(--eth-gray-light);
    }

    .mega-menu-card-urgent {
        background: rgba(201, 42, 42, 0.05);
    }

    .mega-menu-badge {
        font-size: 0.55rem;
    }

    .mega-menu-cta {
        padding: 0.6rem 1rem;
        background: var(--eth-accent-light);
    }

    .mega-menu-cta-text {
        color: var(--eth-primary);
        font-size: 0.8rem;
    }

    .mega-menu-cta-text i {
        color: var(--eth-primary);
    }

    .mega-menu-cta-text strong {
        color: var(--eth-primary);
    }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: var(--eth-primary-dark) url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

/* Overlay sombre par-dessus l'image de fond */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 44, 71, 0.72) 0%, rgba(4, 30, 48, 0.82) 100%);
    z-index: 1;
}

/* Motif décoratif subtle */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,176C384,192,480,192,576,170.7C672,149,768,107,864,96C960,85,1056,107,1152,128C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
    opacity: 0.5;
}

/* Contenu au-dessus de l'overlay */
.hero-section > .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb inside hero */
.hero-breadcrumb {
    margin-bottom: 1.25rem;
}

.hero-breadcrumb small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: var(--eth-accent);
}

.hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 183, 49, 0.15);
    color: var(--eth-accent);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 183, 49, 0.3);
}

.hero-title {
    color: var(--eth-white);
    font-family: var(--eth-font);
    font-weight: 900;
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--eth-accent) !important;
}

.hero-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-mini-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-mini-badge i {
    color: var(--eth-accent);
    font-size: 1.1rem;
}

/* Hero Card */
.hero-card {
    background: var(--eth-accent);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--eth-shadow-xl);
}

.hero-card-icon {
    font-size: 3rem;
    color: var(--eth-primary);
    margin-bottom: 1rem;
}

.hero-card h3 {
    color: var(--eth-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-card p {
    color: var(--eth-primary);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.hero-card .btn-accent {
    background: var(--eth-primary);
    color: var(--eth-white) !important;
    border-color: var(--eth-primary);
}

.hero-card .btn-accent:hover {
    background: var(--eth-primary-dark);
    border-color: var(--eth-primary-dark);
}

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section-padding {
    padding: 5rem 0;
}

.section-badge {
    display: inline-block;
    color: var(--eth-primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2.5rem;
}

.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background: var(--eth-accent);
}

.section-badge-light {
    color: rgba(255, 255, 255, 0.8);
}

.section-badge-light::before {
    background: var(--eth-accent);
}

.section-title {
    font-family: var(--eth-font);
    font-weight: 800;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-text {
    color: var(--eth-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-card {
    background: var(--eth-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--eth-shadow-sm);
    border: 1px solid var(--eth-border);
    transition: all var(--eth-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--eth-accent);
    transform: scaleX(0);
    transition: transform var(--eth-transition);
}

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

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

.service-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--eth-accent-light);
    color: var(--eth-accent);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    transition: all var(--eth-transition);
}

.service-card:hover .service-card-icon {
    background: var(--eth-accent);
    color: var(--eth-primary);
}

.service-card-number {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--eth-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--eth-primary);
    font-size: 0.9rem;
    transition: all var(--eth-transition-fast);
}

.service-card-link:hover {
    color: var(--eth-accent);
    gap: 0.75rem;
}

/* CTA Service Card */
.service-card-cta {
    background: var(--eth-accent);
    border-color: var(--eth-accent);
}

.service-card-cta h3 {
    color: var(--eth-primary);
}

.service-card-cta p {
    color: var(--eth-primary);
    opacity: 0.8;
}

.service-card-cta .service-card-icon {
    background: rgba(26, 42, 74, 0.15);
    color: var(--eth-primary);
}

.service-card-cta .service-card-number {
    color: rgba(26, 42, 74, 0.1);
}

.service-card-cta .btn-accent {
    background: var(--eth-primary);
    color: var(--eth-white) !important;
    border-color: var(--eth-primary);
}

.service-card-cta .btn-accent:hover {
    background: var(--eth-primary-dark);
}

/* Tags sous-services dans les cards */
.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.service-card-tags a {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--eth-accent-light);
    color: var(--eth-primary);
    border-radius: 20px;
    text-decoration: none;
    transition: all var(--eth-transition-fast);
}

.service-card-tags a:hover {
    background: var(--eth-accent);
    color: var(--eth-primary);
    transform: translateY(-1px);
}

.service-card-cta .service-card-tags a {
    background: rgba(26, 42, 74, 0.15);
    color: var(--eth-primary);
}

.service-card-cta .service-card-tags a:hover {
    background: var(--eth-primary);
    color: var(--eth-white);
}

/* Cards cliquables (pages service) */
.service-card-link-wrap {
    text-decoration: none;
    display: block;
    height: 100%;
}

.service-card-clickable {
    cursor: pointer;
}

.service-card-clickable:hover {
    border-color: var(--eth-accent);
}

/* CTA text inside clickable service cards */
span.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--eth-accent);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: gap var(--eth-transition-fast);
}

.service-card-clickable:hover span.service-card-cta {
    gap: 0.75rem;
    color: var(--eth-accent-hover);
}

/* Footer compact links */
.footer-links-compact li {
    margin-bottom: 0.3rem;
}

.footer-links-compact a {
    font-size: 0.82rem;
}

.footer-links-compact strong {
    color: var(--eth-white);
}

/* =============================================
   ABOUT SECTION
   ============================================= */

/* Feature grid (left column) */
.about-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--eth-white);
    border-radius: 12px;
    box-shadow: var(--eth-shadow-sm);
    transition: all var(--eth-transition);
}

.about-feature-item:hover {
    box-shadow: var(--eth-shadow);
    transform: translateY(-2px);
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 180, 0, 0.12);
    border-radius: 10px;
    color: var(--eth-accent);
    font-size: 1.2rem;
}

.about-feature-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--eth-primary);
    margin-bottom: 0.15rem;
}

.about-feature-item p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--eth-gray);
    line-height: 1.4;
}

/* Stats grid (right column) */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.about-stat-card {
    background: linear-gradient(135deg, var(--eth-primary) 0%, var(--eth-primary-dark) 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--eth-transition);
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(7, 44, 71, 0.3);
}

.about-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 180, 0, 0.15);
    border-radius: 14px;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--eth-accent);
}

.about-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--eth-accent);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
    background: linear-gradient(135deg, var(--eth-primary) 0%, var(--eth-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.process-card {
    padding: 2rem 1.5rem;
    transition: transform var(--eth-transition);
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--eth-accent);
    color: var(--eth-accent);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: all var(--eth-transition);
}

.process-card:hover .process-icon {
    background: var(--eth-accent);
    color: var(--eth-primary);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--eth-accent);
    color: var(--eth-primary);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.process-card h4 {
    color: var(--eth-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: var(--eth-white);
    padding: 4rem 0;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--eth-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--eth-gray);
    font-weight: 500;
}

/* =============================================
   ZONES SECTION
   ============================================= */
.zone-card {
    background: var(--eth-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--eth-shadow-sm);
    border: 1px solid var(--eth-border);
    height: 100%;
    transition: all var(--eth-transition);
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--eth-shadow-md);
}

.zone-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zone-card h4 i {
    color: var(--eth-accent);
}

.zone-card-primary {
    border-color: var(--eth-accent);
    border-width: 2px;
    position: relative;
}

.zone-card-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background: var(--eth-accent);
    color: var(--eth-primary);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.zone-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.zone-services-list li a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--eth-bg-lighter);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--eth-primary);
    transition: all var(--eth-transition-fast);
}

.zone-services-list li a:hover {
    background: var(--eth-accent);
    color: var(--eth-primary);
}

.zone-card-more {
    background: var(--eth-bg-lighter);
    border-style: dashed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.zone-card-more h4 {
    justify-content: center;
}

.zone-card-more p {
    color: var(--eth-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
    background: var(--eth-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--eth-shadow-sm);
    border: 1px solid var(--eth-border);
    transition: all var(--eth-transition);
    height: 100%;
}

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

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote i {
    font-size: 2.5rem;
    color: var(--eth-accent);
    opacity: 0.6;
}

.testimonial-card p {
    color: var(--eth-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--eth-bg-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eth-gray-light);
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--eth-primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--eth-gray);
    font-size: 0.85rem;
}

/* =============================================
   CTA / FORM SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--eth-primary) 0%, var(--eth-primary-dark) 100%);
    position: relative;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.cta-video-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--eth-white);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--eth-transition);
}

.cta-video-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cta-video-placeholder i {
    font-size: 4rem;
    color: var(--eth-accent);
}

.cta-video-placeholder span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cta-form-wrapper {
    background: var(--eth-accent);
    border-radius: 20px;
    padding: 2.5rem;
}

.cta-form-wrapper .section-badge {
    color: var(--eth-primary);
}

.cta-form-wrapper .section-badge::before {
    background: var(--eth-primary);
}

.cta-form-wrapper .section-title {
    color: var(--eth-primary);
    font-size: 1.8rem;
}

.cta-form .form-control,
.cta-form .form-select {
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    background: var(--eth-white);
}

.cta-form .form-control:focus,
.cta-form .form-select:focus {
    box-shadow: 0 0 0 3px rgba(26, 42, 74, 0.2);
}

.cta-form .btn-accent {
    background: var(--eth-primary);
    color: var(--eth-white) !important;
    border-color: var(--eth-primary);
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.cta-form .btn-accent:hover {
    background: var(--eth-primary-dark);
    border-color: var(--eth-primary-dark);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.accordion-item {
    border: 1px solid var(--eth-border);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--eth-primary);
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    background: var(--eth-white);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--eth-primary);
    color: var(--eth-white);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    color: var(--eth-gray);
    line-height: 1.8;
    padding: 1.25rem 1.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-section {
    background: var(--eth-primary-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .logo-icon {
    width: 42px;
    height: 42px;
}

.footer-brand-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--eth-white);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--eth-accent);
    width: 20px;
    margin-right: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--eth-accent);
}

.footer-title {
    color: var(--eth-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--eth-accent);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--eth-transition-fast);
}

.footer-links a:hover {
    color: var(--eth-accent);
    padding-left: 5px;
}

.footer-hours {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--eth-accent);
}

/* =============================================
   FOOTER - PLAN DU SITE
   ============================================= */
.footer-sitemap {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2rem 0 1.5rem;
}

.footer-sitemap-label {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-sitemap-cat {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.35rem;
}

.footer-sitemap-cat a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-sitemap-cat a:hover {
    color: var(--eth-accent);
}

.footer-sitemap ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.footer-sitemap ul li {
    margin-bottom: 0.1rem;
}

.footer-sitemap ul li a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    transition: color 0.2s ease;
}

.footer-sitemap ul li a:hover {
    color: var(--eth-accent);
}

/* =============================================
   FLOATING CTA MOBILE
   ============================================= */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--eth-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    z-index: 1040;
    padding: 0.5rem;
    gap: 0.5rem;
}

.floating-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--eth-primary);
    color: var(--eth-white) !important;
    text-decoration: none;
}

.floating-cta-btn-accent {
    background: var(--eth-accent);
    color: var(--eth-primary) !important;
}

/* =============================================
   SIMULATEUR D'AIDES
   ============================================= */
.simulator-section {
    background: var(--eth-bg-light);
}

.simulator-card {
    background: var(--eth-white);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: var(--eth-shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--eth-border);
}

.simulator-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.simulator-form-grid .simulator-field:first-child {
    grid-column: 1 / -1;
}

.simulator-field label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--eth-primary);
    margin-bottom: 0.5rem;
}

.simulator-field label i {
    color: var(--eth-accent);
    margin-right: 0.3rem;
}

.simulator-field select,
.simulator-field input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--eth-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--eth-font);
    color: var(--eth-dark);
    background: var(--eth-white);
    transition: border-color 0.2s;
}

.simulator-field select:focus,
.simulator-field input:focus {
    outline: none;
    border-color: var(--eth-primary-light);
    box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.1);
}

.simulator-input-suffix {
    position: relative;
}

.simulator-input-suffix input {
    padding-right: 3rem;
}

.simulator-input-suffix span {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--eth-gray);
    font-size: 0.95rem;
}

/* Résultats */
.simulator-results {
    display: none;
    text-align: center;
}

.simulator-results.active {
    display: block;
}

.simulator-results-title {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--eth-primary);
    margin-bottom: 1.5rem;
}

.simulator-results-title i {
    font-size: 1.4rem;
    margin-right: 0.4rem;
}

.simulator-result-cards {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.simulator-result-card {
    flex: 1;
    background: linear-gradient(135deg, var(--eth-primary) 0%, var(--eth-primary-dark) 100%);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.simulator-result-card:hover {
    transform: translateY(-4px);
}

.simulator-result-icon {
    width: 50px;
    height: 50px;
    background: rgba(244, 180, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
}

.simulator-result-icon i {
    font-size: 1.4rem;
    color: var(--eth-accent);
}

.simulator-result-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--eth-accent);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.simulator-result-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.simulator-disclaimer {
    font-size: 0.8rem;
    color: var(--eth-gray);
    margin-bottom: 1.5rem;
}

.simulator-disclaimer i {
    margin-right: 0.2rem;
}

.simulator-results-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-primary {
    background: transparent;
    color: var(--eth-primary);
    border: 2px solid var(--eth-primary);
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 700;
    transition: all var(--eth-transition);
}

.btn-outline-primary:hover {
    background: var(--eth-primary);
    color: var(--eth-white);
}

/* Responsive simulateur */
@media (max-width: 575.98px) {
    .simulator-card {
        padding: 1.8rem 1.5rem;
    }

    .simulator-form-grid {
        grid-template-columns: 1fr;
    }

    .simulator-result-cards {
        flex-direction: column;
    }

    .simulator-result-number {
        font-size: 1.5rem;
    }

    .simulator-results-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================================
   POPUP LEAD - MaPrimeRénov'
   ============================================= */
.lead-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lead-popup-overlay.active {
    display: flex;
}

.lead-popup {
    background: var(--eth-white);
    border-radius: 20px;
    max-width: 620px;
    width: 100%;
    padding: 2.8rem 3rem 2.2rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.lead-popup-overlay.active .lead-popup {
    transform: translateY(0) scale(1);
}

.lead-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--eth-gray-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--eth-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.lead-popup-close:hover {
    background: var(--eth-primary);
    color: var(--eth-white);
}

/* Header */
.lead-popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.lead-popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.lead-popup-badge i {
    font-size: 0.9rem;
}

.lead-popup-title {
    font-family: var(--eth-font);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--eth-primary);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.lead-popup-title .text-accent {
    color: var(--eth-accent) !important;
}

.lead-popup-subtitle {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Avantages */
.lead-popup-benefits {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.lead-popup-benefit {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    background: var(--eth-primary);
    padding: 1rem 0.6rem;
    border-radius: 14px;
}

.lead-popup-benefit i {
    font-size: 1.6rem;
    color: var(--eth-accent);
}

.lead-popup-benefit span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--eth-white);
    line-height: 1.3;
}

/* Formulaire */
.lead-popup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lead-popup-form-row {
    display: flex;
    gap: 0.75rem;
}

.lead-popup-field {
    flex: 1;
}

.lead-popup-field input,
.lead-popup-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--eth-font);
    color: var(--eth-dark);
    transition: border-color 0.2s;
    background: var(--eth-white);
}

.lead-popup-field input::placeholder {
    color: #aaa;
}

.lead-popup-field input:focus,
.lead-popup-field select:focus {
    outline: none;
    border-color: var(--eth-primary-light);
    box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.1);
}

.lead-popup-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--eth-accent);
    color: var(--eth-primary);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--eth-font);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    margin-top: 0.25rem;
}

.lead-popup-submit:hover {
    background: var(--eth-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 183, 49, 0.4);
}

.lead-popup-submit.submitted {
    background: #28a745;
    color: #fff;
}

/* Disclaimer */
.lead-popup-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.lead-popup-disclaimer i {
    font-size: 0.8rem;
}

/* Responsive popup */
@media (max-width: 575.98px) {
    .lead-popup {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 16px;
    }

    .lead-popup-title {
        font-size: 1.3rem;
    }

    .lead-popup-form-row {
        flex-direction: column;
    }

    .lead-popup-benefits {
        flex-direction: column;
    }

    .lead-popup-benefit {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0.6rem 1rem;
        gap: 0.6rem;
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .min-vh-75 {
        min-height: auto;
        padding: 2rem 0;
    }

    body {
        padding-bottom: 70px; /* Space for floating CTA */
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .cta-form-wrapper {
        padding: 1.5rem;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .about-stat-card {
        padding: 1.5rem 1rem;
    }

    .about-stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .logo-img {
        height: 70px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* =============================================
   ANIMATIONS (subtle)
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .zone-card,
    .testimonial-card,
    .process-card,
    .stat-item {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

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

    /* Stagger animations */
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }

    .col-lg-3:nth-child(1) .process-card { animation-delay: 0.1s; }
    .col-lg-3:nth-child(2) .process-card { animation-delay: 0.2s; }
    .col-lg-3:nth-child(3) .process-card { animation-delay: 0.3s; }
    .col-lg-3:nth-child(4) .process-card { animation-delay: 0.4s; }
}