/* Strategic Map Section */
#strategic-map {
    padding: 8rem 5% 6rem;
    /* Increased top padding */
    background-color: var(--charcoal);
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

#strategic-map::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, rgba(26, 26, 26, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.map-header {
    text-align: center;
    margin-bottom: 4rem;
}

.map-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.map-header h2 span {
    color: var(--primary-gold);
}

.map-header p {
    color: rgba(245, 245, 245, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.map-visual-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.map-visual-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.5s ease;
}

.map-visual-wrapper:hover img {
    filter: brightness(1) contrast(1.1);
}

@media (max-width: 768px) {
    #strategic-map {
        padding: 4rem 5%;
    }

    .map-header {
        margin-bottom: 2.5rem;
    }

    .map-visual-wrapper {
        padding: 5px;
    }
}