/* ===========================
   LOCATION SECTION (5TH LAYER)
   =========================== */
.location-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: #3a2518;
    position: relative;
    overflow: hidden;
}

.location-map {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
}

.location-map iframe {
    width: 85%;
    height: 75%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.location-map:hover iframe {
    transform: scale(1.02);
}

.location-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3.5rem;
    background: #3a2518;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.4s ease;
}

.location-info-inner {
    max-width: 480px;
    width: 100%;
}

.location-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c0392b;
    margin-bottom: 1.2rem;
}

.location-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.location-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.location-body p {
    color: inherit;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
}

.location-body p:first-child {
    padding-top: 0;
}

.location-body p:last-child {
    border-bottom: none;
}

.location-body strong {
    color: #fff;
}

@media (max-width: 900px) {
    .location-sec {
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
    }

    .location-map {
        width: 100% !important;
        padding: 4rem 1.5rem 2.5rem !important;
        justify-content: center;
        background: inherit;
        order: 1 !important;
    }

    .location-map iframe {
        width: 90%;
        height: 320px !important;
    }

    .location-info {
        width: 100% !important;
        padding: 3rem 1.5rem 5rem !important;
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        background: inherit;
        order: 2 !important;
    }
}