.location-section {
    width: 100%;
    position: relative;
    z-index: 5;
    background-color: #000;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-white);
}

.location-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.tabs-container {
    border-bottom: 1px solid #333; 
    margin-bottom: 0;
}

.location-tabs {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.tab-item {
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    padding-bottom: 20px;
    position: relative;
    color: var(--text-white);
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.tab-item.active {
    color: var(--orange);
}

.tab-item::after {
    content: "";
    position: absolute;
    bottom: -1px; 
    left: 50%; 
    transform: translateX(-50%);
    width: 0; 
    height: 3px;
    background-color: var(--orange);
    transition: width 0.3s ease-in-out;
}

.tab-item:hover, 
.tab-item.active {
    color: var(--orange);
}

.tab-item:hover::after, 
.tab-item.active::after {
    width: 100%;
}

.map-container {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 450px; 
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.map-address {
    text-align: right;
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.map-logo {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: left;
}

.map-logo .registered {
    font-size: 0.7rem;
    color: var(--orange);
}

.custom-pin {
    width: 45px;
    height: 45px;
    fill: var(--orange);
}

@media (max-width: 768px) {
    .location-tabs {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .tab-item {
        font-size: 0.9rem;
    }
    .map-overlay {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .map-address {
        text-align: center;
    }
    .map-logo {
        text-align: center;
    }
}
