/* ═══════════════════════════════════════════════════════
   MAP.CSS — Coverage Map Section
   ═══════════════════════════════════════════════════════ */

.map-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-3xl) 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.map-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.map-section .container {
    position: relative;
    z-index: 1;
}

/* Light-mode section title override */
.section-title--light {
    color: white;
}

.section-title--light::after {
    background: rgba(255, 255, 255, 0.55);
}

/* ── Two-Column Layout ────────────────────────────────── */
.map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 20px;
}

/* ── SVG Map ──────────────────────────────────────────── */
.map-svg-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bangladesh-map {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.3));
}

/* Map region paths */
.map-region {
    fill: rgba(255, 255, 255, 0.10);
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 1;
    cursor: pointer;
    transition: fill var(--transition-base), stroke var(--transition-base);
}

.map-region:hover {
    fill: rgba(255, 255, 255, 0.22);
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 1.5;
}

/* Pin animations */
.pin-dot {
    animation: pinPulse 2.5s ease-in-out infinite;
}

.pin-dot--lg {
    animation: pinPulse 2s ease-in-out infinite;
}

.pin-ring {
    animation: ringPulse 2.5s ease-in-out infinite;
}

.pin-ring--2 {
    animation: ringPulse 2.5s ease-in-out 0.4s infinite;
}

.pin-group--uttara     .pin-dot  { animation-delay: 0.6s; }
.pin-group--uttara     .pin-ring { animation-delay: 0.6s; }
.pin-group--chittagong .pin-dot  { animation-delay: 1.1s; }
.pin-group--chittagong .pin-ring { animation-delay: 1.1s; }
.pin-group--khulna     .pin-dot  { animation-delay: 1.7s; }
.pin-group--khulna     .pin-ring { animation-delay: 1.7s; }

@keyframes pinPulse {
    0%, 100% { r: 7;  opacity: 0.9; }
    50%       { r: 9;  opacity: 0.6; }
}

/* ── Info Panel ───────────────────────────────────────── */
.map-info__heading {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.map-info__desc {
    font-size: 16px;
    opacity: 0.92;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ── Location Cards ───────────────────────────────────── */
.location-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    cursor: default;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-4px);
}

.location-card__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255, 158, 100, 0.7);
    flex-shrink: 0;
    margin-top: 5px;
}

.location-card__name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.location-card__desc {
    font-size: 12.5px;
    opacity: 0.82;
    margin: 0;
    line-height: 1.5;
}
