
/*
Theme Name: ETS Lecoq Montargis
Theme URI: https://ets-lecoq.fr
Author: ETS Lecoq
Author URI: https://ets-lecoq.fr
Description: Th?me WordPress professionnel pour ETS Lecoq - Artisan couvreur professionnel dans le Loiret (45), avec design premium gris et orange
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: etslecoq
*/

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Barre tricolore premium */
.tricolor-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    display: flex;
    z-index: 10001;
}

.tricolor-red,
.tricolor-blue {
    flex: 1;
    background: #E30613;
}

.tricolor-white {
    flex: 1;
    background: #FFFFFF;
}

.tricolor-red,
.tricolor-blue {
    flex: 1;
    background: #E30613;
}

:root {
    --color-primary: #E30613;
    --color-secondary: #E30613;
    --color-text: #333333;
    --color-bg: #ffffff;
    --color-card: #f8f8f8;
    --color-accent: #E30613;
    --color-red: #E30613;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container,
.section-container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Header et Navigation */
.site-header {
    position: fixed;
    top: 6px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.4rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(227, 6, 19, 0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 1rem;
}

.site-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.site-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.site-logo span:first-child {
    color: var(--color-primary);
}

.site-logo span:last-child {
    color: #E30613;
    text-shadow: 0 2px 4px rgba(227, 6, 19, 0.3);
}

.header-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    border-left: 3px solid #E30613;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.05), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.15);
    border-left-width: 4px;
}

.contact-icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #E30613 0%, #E30613 50%, #E30613 100%);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(227, 6, 19, 0);
    }
}

.contact-text {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.contact-item:hover .contact-text {
    color: #E30613;
}

.main-navigation {
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E30613 0%, #B00510 50%, #E30613 100%);
    border: none;
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 
        0 0 20px rgba(227, 6, 19, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    animation: pulseGlowOrange 2s ease-in-out infinite;
}

@keyframes pulseGlowOrange {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(227, 6, 19, 0.6),
            0 4px 15px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(227, 6, 19, 0.8),
            0 0 40px rgba(227, 6, 19, 0.4),
            0 4px 15px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.btn-call:hover {
    background: linear-gradient(135deg, #E30613 0%, #E30613 50%, #B00510 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 35px rgba(227, 6, 19, 0.9),
        0 0 50px rgba(227, 6, 19, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: none;
}

.btn-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.call-label {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-number {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-cta-black {
    background: linear-gradient(135deg, #E30613 0%, #E30613 50%, #B00510 100%);
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid #FFFFFF;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 15px rgba(227, 6, 19, 0.4),
        0 0 20px rgba(227, 6, 19, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: neonOrangeBorderCta 2s ease-in-out infinite;
}

.btn-cta-black::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes neonOrangeBorderCta {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(227, 6, 19, 0.4),
            0 0 20px rgba(227, 6, 19, 0.2),
            0 0 30px rgba(227, 6, 19, 0.3),
            inset 0 1px 1px rgba(255, 255, 255, 0.3);
        border-color: #FFFFFF;
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(227, 6, 19, 0.6),
            0 0 30px rgba(227, 6, 19, 0.4),
            0 0 50px rgba(227, 6, 19, 0.5),
            inset 0 1px 1px rgba(255, 255, 255, 0.4);
        border-color: #FFFFFF;
    }
}

.btn-cta-black:hover {
    background: linear-gradient(135deg, #E30613 0%, #B00510 50%, #E30613 100%);
    transform: translateY(-3px) scale(1.05);
    border-color: #E30613;
    box-shadow: 
        0 6px 25px rgba(227, 6, 19, 0.6),
        0 0 40px rgba(227, 6, 19, 0.5),
        0 0 60px rgba(227, 6, 19, 0.4),
        0 0 30px rgba(227, 6, 19, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.btn-cta-black:active {
    transform: translateY(-1px) scale(1.02);
}

/* Menu burger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    font-size: 1.2rem;
    font-weight: 800;
}

.mobile-logo span:first-child {
    color: var(--color-primary);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.mobile-contact-info {
    padding: 1.5rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #555;
}

.mobile-contact-item a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

/* Mobile Info Badges */
.mobile-info-badges {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.mobile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.1rem;
    background: white;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: slideInBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s ease;
}

.mobile-menu.active .mobile-badge:hover::before {
    left: 100%;
}

.mobile-menu.active .mobile-badge {
    animation: slideInBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, 
               badgeFloat 3s ease-in-out infinite;
}

.mobile-menu.active .mobile-badge:nth-child(1) {
    animation-delay: 0.1s, 0.7s;
}

.mobile-menu.active .mobile-badge:nth-child(2) {
    animation-delay: 0.2s, 1.2s;
}

.mobile-menu.active .mobile-badge:nth-child(3) {
    animation-delay: 0.3s, 1.7s;
}

.mobile-menu.active .mobile-badge:nth-child(4) {
    animation-delay: 0.4s, 2.2s;
}

@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateX(5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.mobile-badge svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mobile-badge:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.mobile-badge-radius {
    color: #E30613;
    border-left: 4px solid #E30613;
    background: linear-gradient(135deg, #ffffff 0%, #fffbea 100%);
}

.mobile-badge-radius svg {
    stroke: #E30613;
}

.mobile-badge-radius:hover {
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.25);
}

.mobile-badge-location {
    color: #9C27B0;
    border-left: 4px solid #9C27B0;
    background: linear-gradient(135deg, #ffffff 0%, #f3e5f5 100%);
}

.mobile-badge-location .contact-icon {
    font-size: 1.2rem;
}

.mobile-badge-location:hover {
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.25);
}

.mobile-badge-phone {
    color: #E30613;
    border-left: 4px solid #E30613;
    background: linear-gradient(135deg, #ffffff 0%, #fff4e6 100%);
    text-decoration: none;
    cursor: pointer;
}

.mobile-badge-phone .contact-icon {
    font-size: 1.2rem;
}

.mobile-badge-phone:hover {
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.25);
    transform: translateY(-2px);
}

.mobile-badge-hours {
    color: #22C55E;
    border-left: 4px solid #22C55E;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

.mobile-badge-hours svg {
    stroke: #22C55E;
}

.mobile-badge-hours:hover {
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}

.mobile-badge-reviews {
    color: #E30613;
    border-left: 4px solid #E30613;
    background: linear-gradient(135deg, #ffffff 0%, #fffef0 100%);
}

.mobile-badge-reviews svg {
    fill: #E30613;
    stroke: #E30613;
}

.mobile-badge-reviews:hover {
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.35);
}

.mobile-nav {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--color-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    transform: scaleY(1);
}

.mobile-nav-link svg {
    stroke: #666;
    transition: stroke 0.3s, transform 0.3s;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--color-primary);
    transform: translateX(5px);
}

.mobile-nav-link:hover svg {
    stroke: var(--color-primary);
    transform: scale(1.1);
}

.mobile-cta {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.mobile-cta .btn-cta-black {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-align: center;
    padding: 1.2rem 2rem;
    font-size: 0.95rem;
    position: relative;
    background: linear-gradient(135deg, 
        #E30613 0%, 
        #E30613 25%, 
        #E30613 50%, 
        #E30613 75%, 
        #E30613 100%);
    border: 2px solid #FFFFFF;
    background-clip: padding-box;
    box-shadow: 
        0 0 0 2px rgba(227, 6, 19, 0.4),
        0 8px 32px rgba(227, 6, 19, 0.6),
        0 0 60px rgba(227, 6, 19, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: none;
    overflow: hidden;
    color: #FFFFFF;
}

.mobile-cta .btn-cta-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.mobile-cta .btn-cta-black:hover::before,
.mobile-cta .btn-cta-black:active::before {
    left: 100%;
}

.mobile-cta .btn-cta-black .premium-icon-3d {
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
    animation: float3d 3s ease-in-out infinite;
}

.mobile-cta .btn-cta-black .btn-premium-text {
    color: #FFFFFF;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes float3d {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
}

@keyframes shimmerText {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 200% center;
    }
}

@keyframes pulseGlowMobile {
    0%, 100% {
        box-shadow: 0 0 20px rgba(227, 6, 19, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(227, 6, 19, 0.6);
    }
}

/* Bottom Navigation Mobile */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #333333 50%, #1a1a1a 75%, #000000 100%);
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
    border-radius: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 0.25rem 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    padding: 0.3rem 0.2rem;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 0 0.15rem;
}

.bottom-nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: transparent;
    opacity: 0;
}

.bottom-nav-item:hover,
.bottom-nav-item:active {
    transform: translateY(-2px);
    color: #E30613;
}

/* Bordures par d?faut - d?sactiv? le hover g?n?ral */
.bottom-nav-item:hover::before {
    opacity: 0;
}

/* Bouton Appel */
.bottom-nav-call {
    color: #ffffff;
}

.bottom-nav-call svg {
    filter: drop-shadow(0 2px 4px rgba(46, 185, 45, 0.4));
}

.bottom-nav-call:hover,
.bottom-nav-call:active {
    background: transparent;
}

.bottom-nav-call:hover::before,
.bottom-nav-call:active::before {
    background: transparent;
}

.bottom-nav-call:hover svg,
.bottom-nav-call:active svg {
    filter: drop-shadow(0 3px 6px rgba(46, 185, 45, 0.6));
}

/* Bouton Avis Google */
.bottom-nav-avis {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.bottom-nav-avis .bottom-nav-icon {
    position: relative;
}

.google-rating-badge {
    position: absolute;
    top: -2px;
    right: -6px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000;
    font-size: 0.48rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    box-shadow: 
        0 4px 10px rgba(0,0,0,0.25), 
        0 2px 4px rgba(0,0,0,0.15),
        0 0 20px rgba(227, 6, 19, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    border: 1.5px solid #E30613;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.star-3d-icon {
    width: 11px;
    height: 11px;
    filter: drop-shadow(0 1px 2px rgba(227, 6, 19, 0.6));
}

.rating-value {
    font-size: 0.7rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.review-count {
    font-size: 0.55rem;
    font-weight: 600;
    color: #333;
    line-height: 1;
}

.bottom-nav-avis:hover,
.bottom-nav-avis:active {
    color: #E30613;
    background: transparent;
}

.bottom-nav-avis:hover::before,
.bottom-nav-avis:active::before {
    background: transparent;
}

/* Bouton Services */
.bottom-nav-item:nth-child(3) svg {
    filter: drop-shadow(0 2px 4px rgba(227, 6, 19, 0.4));
}

.bottom-nav-item:nth-child(3):hover,
.bottom-nav-item:nth-child(3):active {
    background: transparent;
}

.bottom-nav-item:nth-child(3):hover::before,
.bottom-nav-item:nth-child(3):active::before {
    background: transparent;
}

.bottom-nav-item:nth-child(3):hover svg,
.bottom-nav-item:nth-child(3):active svg {
    filter: drop-shadow(0 3px 6px rgba(227, 6, 19, 0.6));
}

/* Bouton WhatsApp */
.bottom-nav-whatsapp {
    color: #ffffff;
}

.bottom-nav-whatsapp svg {
    filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.5));
}

.bottom-nav-whatsapp:hover,
.bottom-nav-whatsapp:active {
    background: transparent;
}

.bottom-nav-whatsapp:hover::before,
.bottom-nav-whatsapp:active::before {
    background: transparent;
}

.bottom-nav-whatsapp:hover svg {
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.8));
}

/* Bouton Estimateur */
.bottom-nav-estimator {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
}

.bottom-nav-estimator svg {
    filter: drop-shadow(0 2px 4px rgba(227, 6, 19, 0.4));
}

.bottom-nav-estimator:hover,
.bottom-nav-estimator:active {
    background: transparent;
}

.bottom-nav-estimator:hover::before,
.bottom-nav-estimator:active::before {
    background: transparent;
}

.bottom-nav-estimator:hover svg,
.bottom-nav-estimator:active svg {
    filter: drop-shadow(0 3px 6px rgba(227, 6, 19, 0.6));
}

.bottom-nav-icon {
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.bottom-nav-item:hover .bottom-nav-icon {
    transform: scale(1.08);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bottom-nav-icon svg {
    display: block;
}

.bottom-nav-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Mobile Menu Responsive */
@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
}

/* Responsive */
/* Desktop large */
@media (max-width: 1400px) {
    .header-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
}

/* Tablette landscape et desktop petit */
@media (max-width: 1200px) {
    .header-contact-info {
        display: none;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
    
    .btn-call {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .call-label {
        font-size: 0.6rem;
    }
    
    .call-number {
        font-size: 0.85rem;
    }
    
    .btn-cta-black {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Tablette portrait */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions .btn-call:first-of-type {
        display: flex;
    }
    
    .header-actions .btn-call:nth-of-type(2) {
        display: none;
    }
}

/* Mobile large */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .main-navigation,
    .header-actions .btn-call,
    .header-actions .btn-cta-black {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-cta-black {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .site-logo {
        font-size: 0.9rem;
    }
    
    .site-logo-img {
        height: 75px;
        max-height: 75px;
    }
    
    .btn-cta-black {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(227, 6, 19, 0.9) 0%, 
        rgba(227, 6, 19, 0.85) 25%, 
        rgba(227, 6, 19, 0.7) 50%,
        rgba(227, 6, 19, 0.6) 75%, 
        rgba(227, 6, 19, 0.7) 100%);
    z-index: 0;
    filter: blur(2px);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Centrer les badges sur desktop uniquement */
@media (min-width: 769px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-badges-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .header-actions .btn-cta-black {
        display: none !important;
    }
}

.hero-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.hero-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.2) 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 15px rgba(34, 197, 94, 0.2);
}

.led-indicator {
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 
        0 0 8px rgba(34, 197, 94, 0.8),
        0 0 15px rgba(34, 197, 94, 0.5);
    animation: ledPulse 2s ease-in-out infinite;
}

@keyframes ledPulse {
    0%, 100% {
        box-shadow: 
            0 0 8px rgba(34, 197, 94, 0.8),
            0 0 15px rgba(34, 197, 94, 0.5);
        opacity: 1;
    }
    50% {
        box-shadow: 
            0 0 12px rgba(34, 197, 94, 1),
            0 0 25px rgba(34, 197, 94, 0.7);
        opacity: 0.8;
    }
}

@keyframes neonRedPulseLight {
    0%, 100% {
        box-shadow: 0 0 10px rgba(227, 6, 19, 0.3), 0 0 20px rgba(227, 6, 19, 0.2), inset 0 0 10px rgba(227, 6, 19, 0.1);
    }
    50% {
        box-shadow: 0 0 15px rgba(227, 6, 19, 0.5), 0 0 30px rgba(227, 6, 19, 0.3), inset 0 0 15px rgba(227, 6, 19, 0.2);
    }
}

@keyframes neonRedPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(227, 6, 19, 0.5), 0 0 20px rgba(227, 6, 19, 0.3), 0 0 30px rgba(227, 6, 19, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(227, 6, 19, 0.7), 0 0 30px rgba(227, 6, 19, 0.5), 0 0 45px rgba(227, 6, 19, 0.3);
    }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
}

.hero-title .highlight {
    color: #E30613;
    text-shadow: 0 0 20px rgba(227, 6, 19, 0.8), 0 0 40px rgba(227, 6, 19, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-btn-mobile {
    display: none !important;
}

.hero-btn-desktop {
    display: inline-block;
}

.btn-estimator {
    display: none;
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #FFD700 100%);
    color: #333333;
    border: none;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 
        0 4px 12px rgba(255, 215, 0, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 215, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: pulseGlowEstimator 2s ease-in-out infinite;
}

@keyframes pulseGlowEstimator {
    0%, 100% {
        box-shadow: 
            0 4px 12px rgba(255, 215, 0, 0.5),
            0 2px 6px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.6),
            0 0 20px rgba(255, 215, 0, 0.6);
    }
    50% {
        box-shadow: 
            0 4px 12px rgba(255, 215, 0, 0.5),
            0 2px 6px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 215, 0, 0.8);
    }
}

.btn-estimator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s ease;
}

.btn-estimator:hover::before {
    left: 100%;
}

.btn-estimator:hover {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #FFED4E 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 6px 16px rgba(255, 215, 0, 0.7),
        0 3px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 0 35px rgba(255, 215, 0, 0.9);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    
    .hero-section {
        min-height: 80vh;
        max-height: 80vh;
        height: 80vh;
        padding: 15vh 1rem 2rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        display: none !important;
    }
    
    .hero-hours-badge {
        display: none !important;
    }
    
    .hero-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .hero-btn-desktop {
        display: none !important;
    }
    
    .hero-btn-mobile {
        display: inline-block !important;
    }
    
    .btn-estimator {
        display: inline-block;
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .btn-estimator {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-shadow: none !important;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
    border: 1px solid rgba(227, 6, 19, 0.6);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25), 
        0 0 20px rgba(227, 6, 19, 0.3),
        inset 0 0 25px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: linear-gradient(135deg, #E30613 0%, #E30613 50%, #B00510 100%);
    color: #ffffff;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(227, 6, 19, 0.4),
        0 0 20px rgba(227, 6, 19, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes neonOrangeBorder {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(227, 6, 19, 0.4),
            0 0 20px rgba(227, 6, 19, 0.2),
            0 0 30px rgba(227, 6, 19, 0.3),
            inset 0 1px 1px rgba(255, 255, 255, 0.3);
        border-color: #FFFFFF;
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(227, 6, 19, 0.6),
            0 0 30px rgba(227, 6, 19, 0.4),
            0 0 50px rgba(227, 6, 19, 0.5),
            inset 0 1px 1px rgba(255, 255, 255, 0.4);
        border-color: #FFFFFF;
    }
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #E30613 0%, #B00510 50%, #E30613 100%);
    color: #ffffff;
    border-color: #FFFFFF;
    box-shadow: 
        0 6px 25px rgba(227, 6, 19, 0.6),
        0 0 40px rgba(227, 6, 19, 0.5),
        0 0 60px rgba(227, 6, 19, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-devis-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #E30613 0%, #B00510 50%, #E30613 100%);
    color: #ffffff;
    border: 2px solid #FFFFFF;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 15px rgba(227, 6, 19, 0.4),
        0 0 20px rgba(227, 6, 19, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-devis-black::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.btn-devis-black:hover {
    background: linear-gradient(135deg, #E30613 0%, #E30613 50%, #B00510 100%);
    border-color: #FFFFFF;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 25px rgba(227, 6, 19, 0.6),
        0 0 40px rgba(227, 6, 19, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.btn-devis-black:active {
    transform: translateY(-1px) scale(1.02);
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: #f8f8f8;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.before-after-slider {
    flex: 0 0 500px;
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: ew-resize;
}

.before-after-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    z-index: 1;
}

.before-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    z-index: 3;
    cursor: ew-resize;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-weight: bold;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slider-button span {
    font-size: 14px;
}

.about-content {
    flex: 1;
    text-align: left;
}

.about-content .section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

@media (min-width: 769px) {
    .about-content .section-title {
        text-align: left;
    }
}

.about-content .section-subtitle {
    text-align: left;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1rem;
}

/* Why Choose - Desktop/Mobile Versions */
.why-choose-mobile {
    display: block;
}

.why-choose-desktop {
    display: none;
}

.mobile-intro {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 769px) {
    .mobile-intro {
        text-align: left;
    }
}

.advantage-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.advantage-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(227, 6, 19, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:active {
    transform: scale(0.97);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-icon-warranty {
    background: linear-gradient(135deg, #4285F4 0%, #3367D6 100%);
    color: white;
}

.card-icon-time {
    background: linear-gradient(135deg, #E30613 0%, #F05130 100%);
    color: white;
}

.card-icon-area {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: white;
}

.card-icon-hours {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: white;
}

.card-icon-skills {
    background: linear-gradient(135deg, #E30613 0%, #E30613 100%);
    color: white;
}

.card-icon-quote {
    background: linear-gradient(135deg, #E30613 0%, #B00510 100%);
    color: white;
}

.advantage-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.advantage-card p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
    margin: 0;
}

.mobile-services-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(227, 6, 19, 0.1);
}

@media (min-width: 769px) {
    .mobile-services-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .why-choose-mobile {
        display: block;
    }
}

/* Tablette */
@media (max-width: 1024px) {
    .about-container {
        gap: 3rem;
    }
    
    .about-content .section-title {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .before-after-slider {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .before-after-container {
        height: 400px;
    }
    
    .about-content {
        text-align: left;
    }
    
    .about-content .section-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .about-content ul {
        margin-left: 1rem;
    }
}

/* Services Carousel */
.services-carousel {
    background: #131313;
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 120s linear infinite;
    gap: 3rem;
    will-change: transform;
    width: max-content;
}

.carousel-item-image {
    flex: 0 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.carousel-item-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: #ffffff;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
}

/* Services Responsive */
@media (max-width: 1024px) {
    .services-section {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 5rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .service-card {
        min-width: 240px;
        max-width: 240px;
    }
}

.services-grid {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #ffffff;
    position: relative;
    align-items: stretch;
    justify-content: flex-start;
    cursor: grab;
}

.services-grid.active {
    cursor: grabbing;
    scroll-behavior: auto;
}

.services-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.services-carousel-wrapper {
    position: relative;
    padding: 0 4rem;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.service-page-indicator {
    position: absolute;
    top: 2.5rem;
    left: 1.5rem;
    background: rgba(227, 6, 19, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 20;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.15);
}

.services-nav-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3);
}

.services-nav-prev {
    left: 0;
}

.services-nav-next {
    right: 0;
}

@media (max-width: 768px) {
    .services-nav-btn {
        width: 45px;
        height: 45px;
        display: flex !important;
    }
    
    .services-nav-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .services-carousel-wrapper {
        padding: 0 !important;
        margin: 0 1rem !important;
        max-width: 100% !important;
        width: calc(100% - 2rem) !important;
    }
    
    .service-page-indicator {
        display: block;
        top: 2rem;
        left: 2rem;
    }
    
    .services-nav-prev {
        left: -22.5px !important;
    }
    
    .services-nav-next {
        right: -22.5px !important;
    }
    
    .services-grid {
        overflow-x: hidden;
        justify-content: center;
        cursor: default;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .services-grid.mobile-mode .service-card {
        flex: 0 0 100%;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 450px;
        height: auto;
        display: none;
        opacity: 0;
        transform: scale(0.95);
        border-radius: 20px !important;
        margin: 0 !important;
    }
    
    .services-grid.mobile-mode .service-card.active {
        display: flex;
        animation: fadeInScale 0.5s ease forwards;
    }
    
    .services-grid.mobile-mode .service-card::before {
        border-radius: 20px !important;
    }
    
    .service-content {
        padding: 1rem;
    }
}

.service-card {
    flex: 0 0 auto;
    width: 360px;
    min-height: 400px;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    cursor: default;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 1;
    transform: scale(1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
        #E30613 0%, 
        #E30613 25%, 
        #E30613 50%, 
        #E30613 75%, 
        #E30613 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    animation: neonCardGlow 3s ease-in-out infinite;
    transition: background 0.3s ease;
    pointer-events: none;
}

.service-card.active {
    display: flex;
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes neonCardGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(227, 6, 19, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(227, 6, 19, 0.8));
    }
}

.service-card:hover::before {
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, #E30613 0%, #E30613 50%, #B00510 100%);
    box-shadow: 
        0 10px 40px rgba(227, 6, 19, 0.4);
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 18px 18px 0 0;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    border: none;
    transition: all 0.3s ease;
}

.service-card:hover .service-badge {
    background: #ffffff;
    color: #E30613;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #ffffff;
}

/* Button En savoir plus */
.btn-service-details {
    margin: 1.5rem 1rem 0.5rem 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #E30613 0%, #B00510 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
    display: inline-block;
    width: calc(100% - 2rem);
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-service-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
    background: linear-gradient(135deg, #E30613 0%, #E30613 100%);
}

.service-card:hover .btn-service-details {
    background: linear-gradient(135deg, #E30613 0%, #E30613 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.6);
}

@media (min-width: 769px) {
    .btn-service-details {
        margin-bottom: 0.5rem;
        text-transform: capitalize;
    }
    
    .service-content {
        padding-bottom: 0.5rem;
    }
}

/* Service Modal */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-modal.active {
    display: flex;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.service-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.service-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 1.8rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-modal-close:hover {
    background: #E30613;
    color: white;
    transform: rotate(90deg);
}

.modal-service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.modal-service-info {
    padding: 2rem;
}

.modal-service-info h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #22C55E;
}

.modal-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #333;
}

.modal-benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.modal-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-badge svg {
    width: 20px;
    height: 20px;
}

.modal-badge-warranty {
    background: linear-gradient(135deg, #E30613 0%, #E30613 100%);
    color: white;
}

.modal-badge-certified {
    background: linear-gradient(135deg, #E30613 0%, #B00510 100%);
    color: white;
}

.modal-service-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-modal-devis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #E30613 0%, #B00510 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
    cursor: pointer;
}

.btn-modal-devis svg {
    stroke: white;
}

.btn-modal-devis:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
    background: linear-gradient(135deg, #E30613 0%, #E30613 100%);
}

/* Formulaire Modal */
.modal-form-intro {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-quote-form {
    width: 100%;
}

.modal-form-group {
    margin-bottom: 1.2rem;
}

.modal-form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.modal-form-group input,
.modal-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.modal-form-group input:focus,
.modal-form-group textarea:focus {
    outline: none;
    border-color: #E30613;
    background: white;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.modal-form-group input[readonly] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-weight: 600;
    color: #E30613;
    cursor: not-allowed;
}

.modal-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.btn-modal-back {
    flex: 1;
    padding: 0.9rem 1.5rem;
    background: white;
    color: #666;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-back:hover {
    background: #f8f9fa;
    border-color: #ddd;
    color: #333;
}

.btn-modal-submit {
    flex: 2;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #E30613 0%, #B00510 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.btn-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
    background: linear-gradient(135deg, #E30613 0%, #E30613 100%);
}

@media (max-width: 768px) {
    .service-modal-content {
        max-height: 85vh;
        margin: 1rem 0.5rem;
    }
    
    .modal-service-image {
        height: 120px;
    }
    
    .modal-service-info {
        padding: 1rem;
    }
    
    .modal-service-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    #modal-form-view h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .modal-benefits {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .modal-benefit-item {
        font-size: 0.8rem;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .benefit-icon {
        width: 18px;
        height: 18px;
    }
    
    .modal-badges {
        gap: 6px;
        margin-bottom: 1rem;
    }
    
    .modal-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .modal-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .btn-modal-devis {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .modal-service-info p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .modal-form-intro {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .modal-form-group {
        margin-bottom: 0.6rem;
    }
    
    .modal-form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .modal-form-group input,
    .modal-form-group textarea {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .modal-form-group textarea {
        min-height: 50px;
    }
    
    .modal-form-actions {
        flex-direction: column;
        gap: 6px;
        margin-top: 0.75rem;
    }
    
    .btn-modal-back,
    .btn-modal-submit {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 2rem;
    background: white;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.why-choose-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-choose-content .section-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.why-choose-content .section-subtitle {
    text-align: left;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.why-choose-list .icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.why-choose-list strong {
    display: block;
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.why-choose-list p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Feature Badges */
.feature-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 2.5rem 0;
    justify-content: flex-start;
    order: 1;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border: 2px solid #e8e8e8;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(227, 6, 19, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-badge:hover::before {
    opacity: 1;
}

.feature-badge:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 
        0 4px 16px rgba(227, 6, 19, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.badge-icon {
    font-size: 1.2rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-2px);
    }
}

.badge-text {
    line-height: 1;
    letter-spacing: 0.01em;
}

/* Cities Intervention Box */
.cities-intervention-box {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    order: 2;
}

.cities-intervention-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.city-badges-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0;
}

/* Informations du secteur s?lectionn? */
.sector-info {
    margin-top: 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid rgba(227, 6, 19, 0.15);
}

.sector-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.sector-header strong {
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.sector-radius-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.sector-subtitle {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.sector-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.sector-city-tag {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid #e0e0e0;
    font-weight: 500;
}

.reset-map-btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.reset-map-btn:hover {
    background: #e0e0e0;
    border-color: #999;
}

/* CTA Wrapper */
.cta-wrapper {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    order: 3;
}

.btn-devis-hero {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.intervention-map-wrapper {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.intervention-map-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Why Choose Responsive */
@media (max-width: 1024px) {
    .why-choose-section {
        padding: 4rem 2rem;
    }
    
    .why-choose-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 2.5rem 0;
    }
    
    .why-choose-container {
        flex-direction: column;
        gap: 0 !important;
        padding: 0;
    }
    
    .why-choose-content {
        padding: 0 1.2rem !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .why-choose-content .section-title {
        font-size: 1.5rem !important;
        text-align: center;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .why-choose-content .section-subtitle {
        text-align: center;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .why-choose-list li {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-badges-wrapper {
        gap: 0.6rem !important;
        margin: 1.8rem 0 !important;
        justify-content: center;
        order: 1 !important;
    }
    
    .feature-badge {
        font-size: 0.8rem !important;
        padding: 0.45rem 0.85rem !important;
        gap: 0.4rem !important;
        flex: 0 0 calc(50% - 0.3rem);
        min-width: 0;
        justify-content: center;
        text-align: center;
        border-radius: 25px !important;
    }
    
    .badge-icon {
        font-size: 1.1rem !important;
    }
    
    .badge-text {
        font-size: 0.8rem !important;
    }
    
    .cta-wrapper {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        order: 2 !important;
    }
    
    .cities-intervention-box {
        padding: 1.3rem !important;
        margin: 0 !important;
        order: 3 !important;
        border-radius: 12px 12px 0 0 !important;
        border-left: none !important;
        border-top: 4px solid var(--color-primary) !important;
        width: 100%;
        display: block;
    }
    
    .cities-intervention-title {
        font-size: 0.95rem !important;
        margin-bottom: 0.9rem !important;
        text-align: center;
    }
    
    .city-badges-list {
        gap: 0.5rem !important;
        justify-content: center;
        margin-bottom: 0 !important;
    }
    
    .reset-map-btn {
        margin-bottom: 0 !important;
    }
    
    .cta-wrapper {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .btn-devis-hero {
        width: auto !important;
        max-width: 400px !important;
        padding: 0.9rem 1.5rem !important;
        font-size: 0.8rem !important;
        margin: 0 auto !important;
        display: block !important;
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .intervention-map {
        height: 350px !important;
        border-radius: 0 0 12px 12px !important;
        border-top: none !important;
        margin-top: 0 !important;
        display: block !important;
    }
    
    .intervention-map-wrapper {
        margin: 0 !important;
        width: 100%;
        padding: 0 1.2rem 1.2rem 1.2rem !important;
        display: block !important;
        line-height: 0 !important;
        box-sizing: border-box;
    }
    
    .map-legend {
        margin-top: 0.8rem !important;
        padding: 0 1.2rem;
        font-size: 0.8rem !important;
    }
}

.intervention-map {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 3px solid #f0f0f0;
}

.map-legend {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.legend-marker {
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    animation: legendPulse 2s infinite;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.2);
}

@keyframes legendPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Box d'information rayon - Version compacte et moderne */
.radius-info-box {
    display: none !important;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.radius-info-close {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #666;
}

.radius-info-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.radius-info-box h4 {
    color: var(--color-primary);
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.radius-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 16px;
    margin-bottom: 0.4rem;
    border: 1.5px solid var(--color-primary);
    font-size: 0.8rem;
}

.radius-icon {
    font-size: 0.85rem;
}

.radius-badge span:last-child {
    font-weight: 600;
    color: #fff;
    font-size: 0.8rem;
}

.radius-description {
    color: #666;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.cities-list {
    margin-top: 0.6rem;
}

.cities-list strong {
    color: #333;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.4rem;
}

.cities-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cities-list li {
    padding: 0.25rem 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 0.25rem;
    font-size: 0.7rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.cities-list li::before {
    content: "?";
    color: var(--color-primary);
    font-weight: bold;
}

/* Badges interactifs */
.city-badge {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #e6e6e6;
    border-radius: 9999px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 200ms ease;
    font-family: inherit;
    outline: none;
}

.city-badge:hover,
.city-badge:focus {
    border-color: #E30613;
    box-shadow: 0 2px 10px rgba(227, 6, 19, 0.3);
    color: #E30613;
    transform: translateY(-2px);
}

.city-badge.active {
    background: linear-gradient(135deg, #1E90FF 0%, #E30613 50%, #E30613 100%);
    color: #fff;
    border-color: transparent;
}

.city-badge.active::before {
    content: "? ";
    color: #fff;
    margin-right: 4px;
}

/* Marqueurs pulsants */
.pulsing-marker {
    position: relative;
    cursor: pointer;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #E30613;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulseRing 2s infinite;
}

.pulse-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #E30613;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(227, 6, 19, 0.4);
    z-index: 10;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.15;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.city-tooltip {
    background: white !important;
    border: 2px solid var(--color-primary) !important;
    color: var(--color-text) !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    animation: tooltipFadeIn 0.3s ease-out;
}

.city-tooltip::before {
    border-top-color: var(--color-primary) !important;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    .why-choose-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .why-choose-content .section-title {
        text-align: center;
    }
    
    .why-choose-content .section-subtitle {
        text-align: center;
    }
    
    .intervention-map {
        height: 400px;
    }
}

/* Avis Clients Horizontal */
.reviews-band {
    padding: 4rem 0;
    background: #f8f9fa;
    overflow: hidden;
}

.masonry {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reviews-row {
    display: flex;
    gap: 24px;
    animation: scrollLeft 40s linear infinite;
    will-change: transform;
}

.reviews-row:nth-child(2) {
    animation: scrollRight 40s linear infinite;
}

.reviews-row:nth-child(3) {
    animation: scrollLeft 40s linear infinite;
}

.reviews-row:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    min-width: 320px;
    max-width: 320px;

/* Reviews Responsive */
@media (max-width: 1024px) {
    .reviews-band {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .reviews-band {
        padding: 2rem 0;
    }
    
    .masonry {
        gap: 16px;
    }
    
    .reviews-row {
        gap: 16px;
    }
    
    .review-card {
        min-width: 200px;
        max-width: 200px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .review-card {
        min-width: 180px;
        max-width: 180px;
        padding: 10px;
    }
}
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .reviews-row {
        animation-duration: 30s;
    }
}

.review-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.review-header svg {
    flex-shrink: 0;
}

.stars {
    color: #FBBC04;
    font-size: 15px;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(251, 188, 4, 0.4);
}

.star-filled {
    color: #FBBC04;
}

.star-empty {
    color: #ddd;
}

.review-text {
    color: #2b2b2b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.author {
    color: #666;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0;
}

/* Partners Section */
.partners-section {
    padding: 4rem 2rem;
    background: var(--color-card);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.partner-logo h3 {
    font-size: 1.2rem;
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-card);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.feature-item:hover {
    border-color: var(--color-primary);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Gallery Carousel */
.gallery-section {
    padding: 6rem 2rem;
    background: var(--color-card);
}

.gallery-carousel {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-track {
    display: flex;
    animation: galleryScroll 40s linear infinite;
}

.gallery-item {
    min-width: 300px;
    margin-right: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Galerie Photo Infinie */
.photo-gallery-section {
    padding: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.gallery-container {
    max-width: 100%;
    position: relative;
}

.gallery-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.gallery-slider {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: default;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #E30613;
    color: #E30613;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: #E30613;
    border-color: #E30613;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(227, 6, 19, 0.4);
}

.gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-prev {
    left: 2rem;
}

.gallery-next {
    right: 2rem;
}

.gallery-nav-btn svg {
    transition: transform 0.3s ease;
}

.gallery-nav-btn:hover svg {
    transform: scale(1.2);
}

.gallery-slide {
    flex: 0 0 auto;
    width: 400px;
    position: relative;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.gallery-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-slide:hover .gallery-image-wrapper {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(227, 6, 19, 0.2);
}

.gallery-slide:hover .gallery-image-wrapper::before {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.4s ease;
}

.gallery-image-wrapper video.gallery-image {
    background: #000;
}

.gallery-slide:hover .gallery-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .photo-gallery-section {
        padding: 0;
    }
    
    .gallery-slide {
        width: 400px;
    }
    
    .gallery-image-wrapper {
        height: 400px;
    }
    
    .gallery-slider {
        gap: 0;
        padding: 0;
    }
    
    .gallery-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .gallery-prev {
        left: 1rem;
    }
    
    .gallery-next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .photo-gallery-section {
        padding: 0;
    }
    
    .gallery-slide {
        width: 400px;
    }
    
    .gallery-image-wrapper {
        height: 400px;
    }
    
    .gallery-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .gallery-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .gallery-prev {
        left: 0.5rem;
    }
    
    .gallery-next {
        right: 0.5rem;
    }
}

/* Lightbox Gallery */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-media-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(227, 6, 19, 0.9);
    border-color: rgba(227, 6, 19, 1);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.15);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .lightbox-content {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
    
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 24px;
        height: 24px;
    }
    
    .lightbox-counter {
        bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* FAQ + Contact Section */
.faq-contact {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #E8F4FD 0%, #F0F7FC 50%, #FDE8E8 100%);
    position: relative;
}

.faq-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: start;
    position: relative;
}

.faq-column {
    padding-right: 1rem;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin-top: 12px;
    border-radius: 2px;
}

.faq-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(227, 6, 19, 0.2);
    box-shadow: 0 8px 24px rgba(227, 6, 19, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.05rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 24px 28px;
    text-align: left;
    color: #1a1a1a;
    transition: all 0.3s;
    position: relative;
    line-height: 1.6;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.faq-question:hover::before,
.faq-question[aria-expanded="true"]::before {
    opacity: 1;
}

.faq-question:hover {
    padding-left: 32px;
    color: var(--color-primary);
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: #ffffff;
    font-weight: 300;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 8px;
}

.faq-question[aria-expanded="true"]::after {
    content: "-";
    transform: rotate(180deg);
    background: var(--color-primary);
    color: white;
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    color: #555;
    padding: 0 28px 0 28px;
}

.faq-answer.open {
    padding-top: 8px;
    padding-bottom: 24px;
    margin-bottom: 16px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    font-size: 1rem;
    padding-right: 12px;
}

.contact-column {
    position: sticky;
    top: 100px;
}

.contact-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #E30613 0%, #B00510 50%, #B00510 100%);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 28px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(227, 6, 19, 0.9) 0%, 
        rgba(227, 6, 19, 0.85) 25%, 
        rgba(227, 6, 19, 0.7) 50%,
        rgba(227, 6, 19, 0.6) 75%, 
        rgba(227, 6, 19, 0.7) 100%);
    z-index: 0;
    pointer-events: none;
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-title {
    margin: 0 0 20px;
    font-size: 1.6rem;
    font-weight: 700;
}

.devis-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    background: #fff;
    color: #111;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #E30613;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-input[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
    border-color: #FF6B6B;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Form Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px; /* Emp?che le zoom sur iOS */
    }
}

.btn-submit {
    background: #ffffff;
    color: #E30613;
    border: 2px solid #E30613;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.btn-submit:hover {
    background: #E30613;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
}

.hint-error {
    color: #FFDCDC;
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
}

.success-message {
    margin-top: 10px;
    color: #B7FFC2;
    font-weight: 600;
    display: none;
    background: rgba(183, 255, 194, 0.1);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 1024px) {
    .faq-contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-column {
        position: static;
    }
    
    .faq-column {
        padding-right: 0;
    }
    
    .contact-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .faq-contact {
        padding: 3rem 1rem;
    }
    
    .faq-contact-container {
        gap: 2rem;
    }
    
    .faq-title {
        font-size: 1.6rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
}

/* Carte de localisation */
.map-section {
    padding: 0;
    margin: 0;
    background: #ffffff;
    line-height: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.google-maps-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #1a73e8;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.google-maps-btn:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
    
    .google-maps-btn {
        bottom: 10px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .google-maps-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .google-maps-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .google-maps-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Footer */
.site-footer {
    background: var(--color-primary);
    padding: 4rem 2rem 2rem;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .site-footer {
        padding: 3rem 2rem 2rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
}

/* Chatbox de contact */
.chatbox-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
}

.chatbox-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbox-toggle:hover {
    background: var(--color-accent);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(227, 6, 19, 0.6);
}

.chatbox-toggle svg {
    width: 28px;
    height: 28px;
}

.chatbox-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chatbox-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbox-header {
    background: var(--color-primary);
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbox-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbox-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.chatbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbox-options {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chatbox-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    background: #f8f8f8;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.chatbox-option:hover {
    background: #fff;
    border-color: var(--color-primary);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.15);
}

.option-icon {
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.option-subtitle {
    font-size: 0.85rem;
    color: #666;
}

/* Tablette */
@media (max-width: 1024px) {
    .chatbox-container {
        bottom: 2rem;
        right: 2rem;
    }
    
    .chatbox-menu {
        width: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .chatbox-container {
        display: none;
    }
    
    .chatbox-toggle {
        width: 55px;
        height: 55px;
    }
    
    .chatbox-menu {
        width: calc(100vw - 3rem);
        max-width: 320px;
    }
}

/* Responsive Mobile Complet */
@media (max-width: 768px) {
    /* Header Mobile */
    .site-header {
        padding: 0.5rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .site-logo {
        font-size: 0.9rem;
    }
    
    .site-logo-img {
        height: 75px;
        max-height: 75px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 80vh;
        max-height: 80vh;
        height: 80vh;
        padding: 15vh 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 15px 1rem;
    }
    
    .before-after-container {
        height: 300px;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        padding: 1rem 0;
        gap: 1.5rem;
    }
    
    .why-choose-content .section-title {
        text-align: center;
        font-size: 1.6rem;
    }
    
    .why-choose-content .section-subtitle {
        text-align: center;
    }
    
    .intervention-map {
        height: 350px;
    }
    
    /* City Badges Mobile - UX am?lior?e */
    .cities-intervention-box {
        text-align: center;
        padding: 1.2rem !important;
    }
    
    .cities-intervention-title {
        text-align: center !important;
        font-size: 0.9rem !important;
    }
    
    #city-badges-list {
        justify-content: center !important;
        gap: 0.5rem !important;
        margin: 0 auto 1rem auto !important;
        max-width: 100%;
    }
    
    .city-badge {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
    }
    
    #reset-map {
        text-align: center;
        display: block !important;
        margin: 0 auto;
    }
    
    /* Sector Info Mobile */
    .sector-info {
        margin-top: 0.8rem !important;
        padding: 0.7rem !important;
        text-align: center;
    }
    
    .sector-header {
        justify-content: center;
        gap: 0.4rem !important;
    }
    
    .sector-header strong {
        font-size: 0.9rem !important;
    }
    
    .sector-radius-badge {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.5rem !important;
    }
    
    .sector-subtitle {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .sector-cities-list {
        justify-content: center;
        gap: 0.3rem !important;
    }
    
    .sector-city-tag {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.6rem !important;
    }
    
    /* Reviews Mobile */
    .reviews-band {
        padding: 2rem 0;
    }
    
    .review-card {
        min-width: 200px;
        max-width: 200px;
        padding: 12px !important;
        border-radius: 12px !important;
    }
    
    .review-card .review-header {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .review-card .review-header svg {
        width: 14px;
        height: 14px;
    }
    
    .review-card .stars {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .review-card .review-text {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .review-card .author {
        font-size: 0.75rem;
    }
    
    /* FAQ Contact Mobile */
    .faq-contact {
        padding: 3rem 1rem;
    }
    
    .faq-contact-container {
        gap: 2rem;
    }
    
    .faq-title {
        font-size: 1.6rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    /* Footer Mobile */
    .site-footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Tr?s petits ?crans */
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        min-width: 240px;
        max-width: 240px;
    }
    
    .review-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .chatbox-container {
        bottom: 1rem;
        right: 1rem;
    }
    
    .chatbox-toggle {
        width: 50px;
        height: 50px;
    }
    
    .chatbox-toggle svg {
        width: 24px;
        height: 24px;
    }
    
    .chatbox-menu {
        bottom: 65px;
        right: 0;
        width: calc(100vw - 2rem);
        max-width: 340px;
        left: auto;
    }
    
    .chatbox-header {
        padding: 1rem;
    }
    
    .chatbox-header h4 {
        font-size: 1rem;
    }
    
    .chatbox-options {
        padding: 0.8rem;
    }
    
    .chatbox-option {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .option-icon {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .option-title {
        font-size: 0.9rem;
    }
    
    .option-subtitle {
        font-size: 0.8rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: 0.9rem 1rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Google Reviews Widget */
.google-reviews-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9998;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

.reviews-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.18), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.reviews-info {
    text-align: left;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-number {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #202124;
}

.stars {
    color: #FBBC04;
    font-size: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(251, 188, 4, 0.4);
}

.reviews-count {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8rem;
    color: #5f6368;
    margin-top: 2px;
}

.reviews-panel {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 360px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15), 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.reviews-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.reviews-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #202124;
}

.reviews-close {
    background: #f5f5f5;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #5f6368;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.reviews-close:hover {
    background: #e8e8e8;
    color: #202124;
}

.reviews-summary {
    padding: 20px;
    text-align: center;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.big-rating {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #202124;
    line-height: 1;
}

.big-stars {
    color: #FBBC04;
    font-size: 1.4rem;
    display: block;
    margin: 8px 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(251, 188, 4, 0.4);
}

.total-reviews {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    color: #5f6368;
}

.reviews-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 16px;
    max-height: 280px;
}

.review-item {
    padding: 16px;
    background: #fafafa;
    border-radius: 16px;
    margin-bottom: 12px;
}

.review-item:last-child {
    margin-bottom: 8px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E30613 0%, #B00510 50%, #E30613 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.review-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: #202124;
}

.review-stars {
    color: #FBBC04;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(251, 188, 4, 0.4);
}

.review-text {
    font-size: 0.9rem;
    color: #3c4043;
    line-height: 1.6;
}

.leave-review-btn {
    display: block;
    text-align: center;
    padding: 16px;
    background: #4285F4;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0 0 24px 24px;
    transition: all 0.3s;
}

.leave-review-btn:hover {
    background: #3367D6;
}

@media (max-width: 768px) {
    .google-reviews-widget .reviews-badge {
        display: none;
    }
    
    .chatbox-container {
        display: none;
    }
    
    .reviews-panel {
        position: fixed;
        top: 85px;
        left: 15px;
        right: 15px;
        bottom: 95px;
        width: auto;
        max-width: none;
        border-radius: 20px;
        transform: translateY(100%);
        max-height: none;
        height: auto;
        z-index: 10000;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    }
    
    .reviews-panel.active {
        transform: translateY(0);
    }
    
    .reviews-list {
        max-height: none;
        flex: 1;
    }
    
    .leave-review-btn {
        border-radius: 0 0 20px 20px;
    }
}

/* Personnalisation des contr?les de zoom Leaflet */
.leaflet-control-zoom a {
    background-color: #E30613 !important;
    border: 2px solid #E30613 !important;
    color: #ffffff !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 28px !important;
}

.leaflet-control-zoom a:hover {
    background-color: #B00510 !important;
    border-color: #B00510 !important;
    color: #ffffff !important;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    font-weight: bold !important;
    color: #ffffff !important;
}

.leaflet-control-zoom {
    border: none !important;
}

.leaflet-bar a {
    background-color: #E30613 !important;
    border-bottom: 1px solid #B00510 !important;
    color: #ffffff !important;
}

.leaflet-bar a:first-child {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
}

.leaflet-bar a:last-child {
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    border-bottom: none !important;
}

/* Compacter la modale de service sur desktop */
@media (min-width: 769px) {
    .modal-service-image {
        height: 200px;
    }
    
    .modal-service-info {
        padding: 1.2rem;
    }
    
    .modal-service-info h3 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .modal-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .modal-benefits {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .modal-benefit-item {
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
    
    .benefit-icon {
        width: 20px;
        height: 20px;
    }
    
    .modal-badges {
        gap: 8px;
        margin-bottom: 1rem;
    }
    
    .modal-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .modal-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .modal-service-info p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .btn-modal-devis {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Formulaire de devis compact */
    .modal-form-intro {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    
    .modal-form-group {
        margin-bottom: 0.8rem;
    }
    
    .modal-form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .modal-form-group input,
    .modal-form-group textarea {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .modal-form-group textarea {
        min-height: 60px;
    }
    
    .modal-form-actions {
        gap: 8px;
        margin-top: 1rem;
    }
    
    .btn-modal-back,
    .btn-modal-submit {
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }
}

