﻿
/*
Theme Name: Artisan Chevalier
Theme URI: https://artisan-chevalier95.fr
Author: Artisan Chevalier
Author URI: https://artisan-chevalier95.fr
Description: Thème WordPress professionnel pour Artisan Chevalier - Spécialiste couverture, toiture, façade et peinture à Thiverny (60), avec design premium rouge et blanc
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: artisan-chevalier
*/

/* 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-blue {
    flex: 1;
    background: #DC143C;
}

.tricolor-white {
    flex: 1;
    background: #DC143C;
}

.tricolor-red {
    flex: 1;
    background: #DC143C;
}

:root {
    --color-primary: #DC143C;
    --color-secondary: #FFFFFF;
    --color-text: #333333;
    --color-bg: #ffffff;
    --color-card: #f8f8f8;
    --color-accent: #B91224;
}

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;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

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

section {
    overflow-x: hidden;
}

/* Header et Navigation */
.site-header {
    position: fixed;
    top: 6px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.8rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 87, 183, 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 span:first-child {
    color: var(--color-primary);
}

.site-logo span:last-child {
    color: var(--color-text);
}

.header-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #555;
}

.contact-icon {
    font-size: 0.9rem;
}

.contact-text {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text:hover {
    color: var(--color-primary);
}

.main-navigation {
    flex: 1;
    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: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-call:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 0.9rem;
}

.btn-cta-black {
    background: linear-gradient(135deg, #DC143C 0%, #B91224 50%, #A01020 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;
    white-space: nowrap;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.4), 0 0 20px rgba(220, 20, 60, 0.2);
    animation: neonGoldPulse 2s ease-in-out infinite;
}

.btn-cta-black:hover {
    background: linear-gradient(135deg, #FF1744 0%, #DC143C 50%, #B91224 100%);
    transform: translateY(-2px);
    border-color: #FFFFFF;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.6), 0 0 30px rgba(220, 20, 60, 0.4);
}

/* 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-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;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: var(--color-primary);
}

.mobile-cta {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.mobile-cta .btn-cta-black {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .header-contact-info {
        display: none;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .main-navigation,
    .header-actions .btn-call {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
}

/* 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(220, 20, 60, 0.9) 0%, 
        rgba(220, 20, 60, 0.85) 25%, 
        rgba(220, 20, 60, 0.7) 50%,
        rgba(185, 18, 36, 0.6) 75%, 
        rgba(160, 16, 32, 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);
}

.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);
}

@keyframes neonGoldPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(220, 20, 60, 0.3), 0 0 20px rgba(220, 20, 60, 0.2), inset 0 0 10px rgba(220, 20, 60, 0.1);
    }
    50% {
        box-shadow: 0 0 15px rgba(220, 20, 60, 0.5), 0 0 30px rgba(220, 20, 60, 0.3), inset 0 0 15px rgba(220, 20, 60, 0.2);
    }
}

@keyframes neonBluePulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(220, 20, 60, 0.5), 0 0 20px rgba(220, 20, 60, 0.3), 0 0 30px rgba(220, 20, 60, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(220, 20, 60, 0.7), 0 0 30px rgba(220, 20, 60, 0.5), 0 0 45px rgba(220, 20, 60, 0.3);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-title .highlight {
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
}

/* 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(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 0 25px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: linear-gradient(135deg, #DC143C 0%, #B91224 50%, #A01020 100%);
    color: #ffffff;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    box-shadow: 
        0 0 10px rgba(220, 20, 60, 0.6),
        0 0 20px rgba(220, 20, 60, 0.4),
        0 0 30px rgba(220, 20, 60, 0.2);
    animation: neonGoldBorder 2s ease-in-out infinite;
}

@keyframes neonGoldBorder {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(220, 20, 60, 0.6),
            0 0 20px rgba(220, 20, 60, 0.4),
            0 0 30px rgba(220, 20, 60, 0.2);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(220, 20, 60, 0.8),
            0 0 30px rgba(220, 20, 60, 0.6),
            0 0 45px rgba(220, 20, 60, 0.4);
    }
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FF1744 0%, #DC143C 50%, #B91224 100%);
    color: #ffffff;
    border-color: #FFFFFF;
    box-shadow: 
        0 0 20px rgba(220, 20, 60, 0.8),
        0 0 40px rgba(220, 20, 60, 0.6),
        0 0 60px rgba(220, 20, 60, 0.4);
    transform: translateY(-2px);
}

.btn-devis-black {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    background: linear-gradient(135deg, #DC143C 0%, #B91224 50%, #A01020 100%);
    color: #ffffff;
    border: 2px solid #FFFFFF;
    box-shadow: 
        0 0 10px rgba(220, 20, 60, 0.6),
        0 0 20px rgba(220, 20, 60, 0.4),
        0 0 30px rgba(220, 20, 60, 0.2);
    animation: neonGoldBorder 2s ease-in-out infinite;
}

.btn-devis-black:hover {
    background: linear-gradient(135deg, #FF1744 0%, #DC143C 50%, #B91224 100%);
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(220, 20, 60, 0.8),
        0 0 40px rgba(220, 20, 60, 0.6),
        0 0 60px rgba(220, 20, 60, 0.4);
}

/* 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: left;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.about-content .section-subtitle {
    text-align: left;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1rem;
}

@media (max-width: 968px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .before-after-slider {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
    
    .before-after-container {
        height: 400px;
    }
    
    .about-content {
        text-align: left;
    }
    
    .about-content .section-title {
        font-size: 1.8rem;
        text-align: left;
    }
    
    .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-grid {
    display: flex;
    gap: 1.5rem;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    cursor: grab;
    user-select: none;
    scroll-behavior: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE et Edge */
    background: #ffffff;
    position: relative;
}

.services-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.services-grid.active {
    cursor: grabbing;
    scroll-behavior: auto;
}

.services-grid.active .service-card {
    pointer-events: none;
}

.service-card {
    min-width: 280px;
    max-width: 280px;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
        #DC143C 0%, 
        #B91224 25%, 
        #A01020 50%, 
        #B91224 75%, 
        #DC143C 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;
}

@keyframes neonCardGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(0, 87, 183, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(0, 87, 183, 0.8));
    }
}

.service-card:hover::before {
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: #DC143C;
    box-shadow: 
        0 10px 40px rgba(220, 20, 60, 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;
}

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

.service-content {
    padding: 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: #DC143C;
    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;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #ffffff;
}

/* 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;
}

.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;
}

.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);
}

.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: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.legend-marker {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    animation: legendPulse 2s infinite;
}

@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 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 0.65rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    min-width: 160px;
    max-width: 180px;
    animation: slideInRight 0.3s ease-out;
}

@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: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 16px;
    margin-bottom: 0.4rem;
    border: 1.5px solid var(--color-primary);
}

.radius-icon {
    font-size: 0.85rem;
}

.radius-badge span:last-child {
    font-weight: 600;
    color: var(--color-primary);
    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: #DC143C;
}

.city-badge.active {
    background: #DC143C;
    color: #fff;
    border-color: transparent;
}

.city-badge.active::before {
    content: "• ";
    color: #fff;
    margin-right: 4px;
}

/* Marqueurs pulsants */
.pulsing-marker {
    position: relative;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #DC143C;
    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: #DC143C;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 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: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;
    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: #FFD54F;
    font-size: 15px;
    letter-spacing: 2px;
}

.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%);
    }
}

/* 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(0, 87, 183, 0.2);
    box-shadow: 0 8px 24px rgba(0, 87, 183, 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, #DC143C 0%, #B91224 50%, #A01020 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(220, 20, 60, 0.9) 0%, 
        rgba(220, 20, 60, 0.85) 25%, 
        rgba(220, 20, 60, 0.7) 50%,
        rgba(185, 18, 36, 0.6) 75%, 
        rgba(160, 16, 32, 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: #DC143C;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 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;
}

.btn-submit {
    background: #ffffff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    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(220, 20, 60, 0.2);
}

.btn-submit:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.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;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .faq-title {
        font-size: 1.6rem;
    }
    
    .contact-card {
        padding: 24px;
    }
}

/* 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;
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
}

/* 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);
}

/* 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(220, 20, 60, 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(220, 20, 60, 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(0, 87, 183, 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;
}

@media (max-width: 768px) {
    .chatbox-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .chatbox-toggle {
        width: 55px;
        height: 55px;
    }
    
    .chatbox-menu {
        width: calc(100vw - 3rem);
        max-width: 320px;
    }
}

/* Responsive Mobile Complet */
@media (max-width: 968px) {
    /* Header Mobile */
    .site-header {
        padding: 0.5rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .site-logo {
        font-size: 1.1rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 80px 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: 3rem 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: 1rem;
    }
    
    .service-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    /* Why Choose Section Mobile */
    .why-choose-section {
        padding: 3rem 1rem;
    }
    
    .why-choose-content .section-title {
        text-align: center;
        font-size: 1.6rem;
    }
    
    .why-choose-content .section-subtitle {
        text-align: center;
    }
    
    .intervention-map {
        height: 350px;
    }
    
    .radius-info-box {
        position: fixed;
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        min-width: 85%;
        max-width: 85%;
        padding: 0.6rem;
    }
    
    /* 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;
    }
    
    /* Reviews Mobile */
    .reviews-band {
        padding: 2rem 0;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    /* 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;
}

.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;
}

.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, #4285F4 0%, #34A853 50%, #FBBC04 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;
}

.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 {
        bottom: 15px;
        left: 15px;
    }
    
    .reviews-panel {
        width: calc(100vw - 30px);
        max-width: 340px;
        border-radius: 20px;
    }
    
    .leave-review-btn {
        border-radius: 0 0 20px 20px;
    }
}

/* Personnalisation des contrôles de zoom Leaflet */
.leaflet-control-zoom a {
    background-color: #DC143C !important;
    border: 2px solid #DC143C !important;
    color: #ffffff !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 28px !important;
}

.leaflet-control-zoom a:hover {
    background-color: #B91224 !important;
    border-color: #B91224 !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: #DC143C !important;
    border-bottom: 1px solid #B91224 !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;
}
