/* ==========================================================================
   VARIABLES, RESETS & CONFIGURATION GÉNÉRALE
   ========================================================================== */
:root {
    --primary: #000000;
    --secondary: #334155;
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --light: #f8fafc;
    --white: #ffffff;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --header-height: 82px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
    height: auto;
    overflow-x: clip;
    overflow-y: auto;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: clip;
    overflow-y: auto;
    max-width: 100%;
    height: auto;
    min-height: 100vh;
    overscroll-behavior-y: auto;
}


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

/* Neutralise le reset CSS pour les tuiles internes de Leaflet */
.leaflet-container img,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
    max-width: none !important;
    display: inline !important;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.gold-text {
    color: var(--accent);
}

.nowrap {
    white-space: nowrap;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-light {
    background-color: var(--light);
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   BOUTONS & TYPOGRAPHIE (BASE MOBILE)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    border: 1px solid var(--accent);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.btn-full {
    width: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* ==========================================================================
   HEADER & NAVIGATION MOBILE-FIRST
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(251, 191, 36, 0.15);
    z-index: 1000;
    transition: none;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    min-height: var(--header-height);
    padding: 0 12px;
    position: relative;
}

.mobile-phone-btn {
    display: none;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

/* Menu Burger Icon */
.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    align-self: center;
}

.burger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Animation active burger */
.burger-menu.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background-color: var(--accent);
}
.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.burger-menu.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background-color: var(--accent);
}

/* Tiroir de navigation mobile */
.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: min(74vw, 240px);
    max-width: 240px;
    height: 100vh;
    max-height: 100vh;
    background-color: var(--primary);
    padding: 100px 16px 40px 16px;
    transition: var(--transition);
    overflow-x: hidden;
}

.nav-menu.active {
    transform: translateX(0);
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.nav-link {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
    padding-left: 5px;
}

.nav-menu .contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    border: 1px solid var(--accent);
    padding: 10px 20px;
    text-align: center;
    color: var(--accent);
    white-space: nowrap;
}

.nav-menu .contact-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    padding: 10px 20px;
}

/* ==========================================================================
   HERO SECTION (BASE MOBILE)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    height: auto;
    width: 100vw;
    max-width: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    background: url('img/hero.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(6px, 1.2vw, 14px);
    color: var(--white);
    padding: calc(var(--header-height) - 4px) 20px 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.64) 48%, rgba(0,0,0,0.34) 100%),
        repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 18px);
}

.hero-brand {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 20;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    flex-shrink: 0;
}

.hero-brand img {
    width: min(220px, 60vw);
    height: auto;
    object-fit: contain;
    margin-top: 6px;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: min(100%, 550px);
    max-width: 550px;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-subtitle {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 16px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 100%;
}

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

.hero-cta-group .btn {
    width: min(100%, 260px);
    justify-content: center;
    text-align: center;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* ==========================================================================
   SECTIONS DU SITE (BASE MOBILE)
   ========================================================================== */

/* À Propos */
.about-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.badge-experience {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background-color: var(--primary);
    border: 2px solid var(--accent);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-experience .years {
    font-family: var(--font-body);
    font-size: 2.45rem;
    color: var(--accent);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 1px 0 rgba(255,255,255,0.18), 0 8px 18px rgba(0,0,0,0.35);
}

.badge-experience .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-text .lead {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.commitments {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Services / Prestations */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    padding: 35px 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Galerie / Réalisations */
.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    height: auto;
    cursor: zoom-in;
    background-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.04);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.image-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    transform: scale(0.96);
    transition: transform 0.25s ease;
}

.image-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.35);
    background-color: rgba(0,0,0,0.45);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

/* Zone d'intervention CTA */
.cta-section {
    position: relative;
    background:
        radial-gradient(circle at 82% 30%, rgba(251, 191, 36, 0.26), transparent 30%),
        radial-gradient(circle at 18% 78%, rgba(226, 232, 240, 0.2), transparent 28%),
        linear-gradient(135deg, #050505 0%, #151515 48%, #515865 73%, #c8962d 100%);
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.82), rgba(0,0,0,0.74)),
        repeating-linear-gradient(120deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 16px);
}

.relative {
    position: relative;
    z-index: 10;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Section Contact */
.contact-layout {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

.contact-info {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}

.contact-intro {
    color: var(--text-light);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
    align-items: stretch;
    width: 100%;
}

.info-link-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 15px;
    background-color: var(--light);
    border-left: 3px solid transparent;
    text-align: left;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.info-link-item:hover {
    border-left-color: var(--accent);
    background-color: rgba(251, 191, 36, 0.05);
}

.info-link-item i {
    font-size: 1.4rem;
    color: var(--accent);
    width: 25px;
    text-align: center;
}

.info-link-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.info-link-item strong {
    font-size: 1rem;
    color: var(--primary);
}

.social-box {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
}

.social-box span {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.social-box a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1877f2;
    color: var(--white);
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.social-box a:hover {
    background-color: #166fe5;
    transform: translateY(-2px);
}

/* Footer (Base Mobile) */
.main-footer {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 60px;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-contact li,
.footer-hours li {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact li,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    width: 18px;
    color: var(--accent);
    text-align: center;
    flex-shrink: 0;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 25px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer-credit a {
    color: var(--accent);
    font-weight: 100;
}

.footer-credit a:hover {
    color: var(--white);
}

/* ==========================================================================
   ANIMATIONS FLUIDES D'APPARITION (Intersection Observer)
   ========================================================================== */
.fade-in, .reveal-left, .reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.fade-in.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

@media (max-width: 767px) {
    .fade-in,
    .reveal-left,
    .reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .main-header {
        position: fixed;
        top: 0;
        height: var(--header-height);
        padding-top: 0;
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .header-container {
        padding: 0 10px;
    }

    .logo-img {
        width: 54px;
        height: 54px;
    }

    .mobile-phone-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: var(--accent);
        color: var(--primary);
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1011;
        box-shadow: 0 4px 14px rgba(251, 191, 36, 0.25);
        flex-shrink: 0;
    }

    .mobile-phone-btn:hover {
        background-color: var(--accent-hover);
        transform: translate(-50%, -50%) translateY(-2px);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }

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

    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        align-items: center;
    }

    .about-image {
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-section {
        align-items: center;
        padding: calc(var(--header-height) + 8px) 40px 90px;
    }

    .hero-content {
        margin: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-brand {
        top: auto;
    }

    .hero-brand img {
        width: min(320px, 34vw);
    }

    .hero-cta-group {
        flex-direction: row;
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 24px;
    }

    .portfolio-item:hover img {
        transform: scale(1.06);
    }

    .contact-layout .info-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        width: min(100%, 720px);
        margin-left: auto;
        margin-right: auto;
    }

    .contact-layout .info-link-item {
        align-items: flex-start;
        justify-content: flex-start;
        min-height: 140px;
        flex-direction: column;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        display: grid;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================================================
   MEDIA QUERIES (ADAPTATION PROGRESSIVE - ORDINATEURS & ÉCRANS LARGES)
   ========================================================================== */
@media (min-width: 1024px) {
    .container {
        max-width: 1140px;
    }

    .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    /* Changement radical d'UI pour la navigation sur desktop */
    .burger-menu {
        display: none; /* Cache le menu burger */
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        transform: none;
    }

    .nav-menu ul {
        flex-direction: row;
        align-items: center;
        gap: 35px;
    }

    .nav-link {
        font-size: 0.95rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--accent);
        padding-left: 0;
    }

    .nav-menu .contact-btn {
        min-width: 118px;
        padding: 10px 24px;
        background-color: var(--accent);
        color: var(--primary) !important;
    }

    .nav-menu .contact-btn:hover {
        background-color: var(--white);
        border-color: var(--white);
        padding: 10px 24px;
    }

    .main-header.scrolled {
        background-color: rgba(0, 0, 0, 0.98);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        height: 72px;
    }


    .hero-content {
        max-width: 750px;
        margin: 0;
        margin-left: 0;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .hero-brand {
        top: auto;
    }

    .hero-brand img {
        width: min(380px, 30vw);
    }

    .grid-2 {
        gap: 80px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 26px;
    }
}

/* ==========================================================================
   SECTION CTA — ZONE D'INTERVENTION AVEC CARTE
   ========================================================================== */

.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text {
    color: var(--white);
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
}

.cta-text strong {
    color: var(--accent);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Carte */
.cta-map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(251, 191, 36, 0.25);
}

.map-label {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(10, 10, 18, 0.88);
    backdrop-filter: blur(8px);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid rgba(251, 191, 36, 0.35);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

#intervention-map {
    height: 400px;
    width: 100%;
    display: block;
}

/* Marqueur personnalisé */
.map-marker-pin {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2rem;
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.6));
    animation: pin-bounce 2s ease-in-out infinite;
}

@keyframes pin-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

/* Popup Leaflet personnalisé */
.map-popup .leaflet-popup-content-wrapper {
    background: rgba(10, 10, 18, 0.95);
    color: var(--white);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 10px;
    font-family: var(--font-body);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.map-popup .leaflet-popup-tip {
    background: rgba(10, 10, 18, 0.95);
}

.map-popup .leaflet-popup-content {
    color: var(--white);
    font-size: 0.88rem;
    margin: 10px 14px;
}

.map-popup .leaflet-popup-content strong {
    color: var(--accent);
    font-size: 0.95rem;
}

/* Attribution Leaflet */
.leaflet-control-attribution {
    background: rgba(10, 10, 18, 0.7) !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.65rem !important;
    border-radius: 4px 0 0 0 !important;
}

.leaflet-control-attribution a {
    color: rgba(251, 191, 36, 0.7) !important;
}

/* Responsive CTA */
@media (max-width: 900px) {
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .cta-btn {
        margin: 0 auto;
    }

    #intervention-map {
        height: 320px;
    }
}

