/* ========================================
   Location Section - Luxury Professional Design
   ======================================== */
.section-location-modern {
    position: relative;
    padding: 120px 0 150px 0;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.section-location-modern .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.section-location-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 213, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.location-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.location-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(255, 213, 0, 0.5);
    position: relative;
    padding-bottom: 1.25rem;
}

.location-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD500, #FFC400, #FFD500, transparent);
    border-radius: 1px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.6;
        box-shadow: 0 0 8px rgba(255, 213, 0, 0.3);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 213, 0, 0.6);
    }
}

.location-subtitle {
    display: none;
}

/* Address Info - Clean & Simple */
.address-info-wrapper {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.address-icon-large {
    display: none;
}

.address-heading {
    display: none;
}

.address-details {
    font-size: 1.25rem;
    color: #E2E8F0;
    line-height: 1.9;
    margin: 0 auto;
    max-width: 800px;
    font-weight: 300;
}

/* Map Wrapper - Luxury Style */
.map-wrapper-luxury {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.map-overlay-top,
.map-overlay-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
    pointer-events: none;
    border-radius: 32px;
}

.map-overlay-top {
    top: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, transparent 100%);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.map-overlay-bottom {
    bottom: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.3) 0%, transparent 100%);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.map-container-luxury {
    width: 100%;
    height: 650px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 213, 0, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 213, 0, 0.15);
    transition: all 0.5s ease;
    position: relative;
    border: 3px solid rgba(255, 213, 0, 0.3);
}

.map-container-luxury::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD500, #FFC400, #FFD500);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-container-luxury:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 0 0 1px rgba(255, 213, 0, 0.4),
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 150px rgba(255, 213, 0, 0.3);
}

.map-container-luxury:hover::before {
    opacity: 0.3;
}

.map-container-luxury iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 991px) {
    .section-location-modern {
        padding: 80px 0;
    }

    .location-title {
        font-size: 2.5rem;
    }

    .address-heading {
        font-size: 1.75rem;
    }

    .address-details {
        font-size: 1.125rem;
    }

    .map-container-luxury {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .section-location-modern {
        padding: 60px 0;
    }

    .location-title {
        font-size: 2rem;
    }

    .location-subtitle {
        font-size: 1.125rem;
    }

    .address-icon-large {
        width: 60px;
        height: 60px;
    }

    .address-icon-large i {
        font-size: 2rem;
    }

    .address-heading {
        font-size: 1.5rem;
    }

    .address-details {
        font-size: 1rem;
    }

    .map-container-luxury {
        height: 350px;
        border-radius: 20px;
    }

    .map-overlay-top,
    .map-overlay-bottom {
        height: 60px;
    }
}