/* Location Section */
.location-section {
    padding: 40px 40px;
    background-color: #f9fafb;
}

.location-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-header {
    text-align: center;
    margin-bottom: 48px;
}

.location-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.location-dot {
    width: 8px;
    height: 8px;
    background-color: #FFCC00;
    border-radius: 50%;
}

.location-label-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFCC00;
    letter-spacing: 0.8px;
}

.location-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 16px;
}

.location-title-blue {
    color: #111ABF;
}

.location-title-yellow {
    color: #FFCC00;
}

.location-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #4B5563;
}

.location-map-container {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    height: 684px;
}

.location-map {
    width: 100%;
    height: 100%;
    position: relative;
}

.location-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 333px;
}

.location-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #FFCC00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.location-icon {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.location-name {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    color: #111ABF;
    margin-bottom: 16px;
}

.location-address {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #4B5563;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .location-map-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .location-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .location-subtitle {
        font-size: 18px;
        line-height: 24px;
    }
    
    .location-map-container {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .location-section {
        padding: 60px 0;
    }
    
    .location-header {
        margin-bottom: 32px;
    }
    
    .location-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .location-map-container {
        height: 350px;
    }
}
