/* Location Tabs Styling */
.location-tabs-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.location-tabs-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 112, 79, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.location-tabs-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.location-nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    border: none;
}

.location-nav-link {
    padding: 14px 28px;
    border-radius: 12px;
    background: #fff;
    color: var(--tj-color-text-body);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #e1e8e9;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.location-nav-link:hover {
    border-color: var(--tj-color-theme-primary);
    color: var(--tj-color-theme-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.location-nav-link.active {
    background: var(--tj-color-theme-primary);
    color: #fff;
    border-color: var(--tj-color-theme-primary);
    box-shadow: 0 12px 24px rgba(234, 112, 79, 0.25);
}

.location-tab-content {
    background: #fff;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.location-tab-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent 50%, rgba(234, 112, 79, 0.03) 100%);
    border-radius: 0 0 30px 0;
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.location-info-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: #fff;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.location-info-item:hover {
    background: #fdfdfe;
    border-color: #f0f4f5;
    transform: translateY(-5px);
}

.location-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(234, 112, 79, 0.1) 0%, rgba(234, 112, 79, 0.05) 100%);
    color: var(--tj-color-theme-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.location-info-item:hover .location-info-icon {
    background: var(--tj-color-theme-primary);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.location-info-label {
    display: block;
    font-size: 13px;
    color: #889698;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.location-info-value {
    font-size: 17px;
    color: var(--tj-color-heading-primary);
    font-weight: 600;
    line-height: 1.7;
}

.location-info-value a {
    color: inherit;
    position: relative;
    display: inline-block;
}

.location-info-value a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--tj-color-theme-primary);
    transition: width 0.3s ease;
}

.location-info-value a:hover {
    color: var(--tj-color-theme-primary);
}

.location-info-value a:hover::after {
    width: 100%;
}

@media (max-width: 991px) {
    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-tab-content {
        padding: 40px 25px;
    }

    .location-tabs-section {
        padding: 70px 0;
    }
}

@media (max-width: 575px) {
    .location-nav-link {
        padding: 12px 20px;
        font-size: 13px;
        flex: 1 1 40%;
        text-align: center;
    }

    .location-nav-tabs {
        gap: 8px;
    }
}