/*=========================
        MAP SECTION
=========================*/

.map-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background: #fff;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1.5fr .5fr;
    gap: clamp(20px, 4vw, 35px);
    margin-top: clamp(40px, 6vw, 70px);
    align-items: stretch;
}

.map-container {
    border-radius: clamp(20px, 4vw, 30px);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

.location-card {
    background: #111318;
    border-radius: clamp(20px, 4vw, 30px);
    padding: clamp(25px, 5vw, 45px);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(176, 141, 87, .15);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.location-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 15px;
    line-height: 1.2;
}

.location-card p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* =========================
   MAP SECTION MOBILE
========================= */

@media (max-width: 900px) {
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container,
    .map-container iframe {
        min-height: 380px;
    }
}

@media (max-width: 480px) {
    .location-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .map-container,
    .map-container iframe {
        min-height: 300px;
    }
}