/* ============================
Mobile First Styles
============================ */
.map-section {
    padding: 2rem 1rem;
    background: linear-gradient(180deg, #fff5e4, #de490d);
}

.map-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.map-header {
    padding: 1rem;
    text-align: center;
}

.map-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.map-header p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.map-frame {
    width: 100%;
    height: 300px;
    border: none;
}

/* ============================
Tablet (≥768px)
============================ */
@media (min-width: 768px) {
    .map-frame {
        height: 380px;
    }

    .map-header h2 {
        font-size: 1.8rem;
    }
}

/* ============================
Laptop (≥992px)
============================ */
@media (min-width: 992px) {
    .map-section {
        padding: 4rem 0;
    }

    .map-frame {
        height: 450px;
    }
}