/* =============================================
   Theme: Interactive Map Section
   ============================================= */

.map-section {
    position: relative;
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.map-section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.map-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.map-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 500px;
}

.map-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

#france-map-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    max-width: 500px;
}

#france-map-svg .land {
    fill: #d8dde2;
    stroke: #fff;
    stroke-width: 1.5px;
}

.pulsing-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary-end, #e52e71);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 rgba(229, 46, 113, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 46, 113, 0.7);
    }
    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 15px rgba(229, 46, 113, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 46, 113, 0);
    }
}

/* Positions des points (en % par rapport au conteneur .map-visual) */
.dot-paris { top: 35%; left: 55%; }
.dot-lyon { top: 60%; left: 65%; }
.dot-marseille { top: 80%; left: 70%; }
.dot-lille { top: 15%; left: 58%; }
.dot-brest { top: 40%; left: 20%; }
.dot-reunion { top: 90%; left: 10%; } /* Point symbolique pour les DOM */

@media (max-width: 992px) {
    .map-section-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .map-content p {
        margin: 0 auto 2rem auto;
    }
    .map-visual {
        min-height: 350px;
    }
}
