/* ==========================================================================
   HQ / OFFICES TAB STYLING
   Single Agency Page - Map & Offices Tab Component
   ========================================================================== */

/* Tab Container */
.madb-post-agency-about-map-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #131217;
}

/* Tab Navigation */
.madb-post-agency-about-map-top {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    margin: 0;
    padding: 0;
    list-style: none;
}

.madb-post-agency-about-map-top .madb-tab-item {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    position: relative;
}

.madb-post-agency-about-map-top .madb-tab-item:last-child {
    border-right: none;
}

.madb-post-agency-about-map-top .madb-tab-item:hover {
    color: #ee1d7a;
    background: rgba(255, 255, 255, 0.08);
}

.madb-post-agency-about-map-top .madb-tab-item.active {
    color: #ee1d7a;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.madb-post-agency-about-map-top .madb-tab-item.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ee1d7a;
}

/* Tab Content Area */
.madb-post-agency-about-map-content {
    background: #131217;
    padding: 0;
    min-height: 210px;
}

.madb-post-agency-about-map-content .madb-tab-content {
    display: none;
    opacity: 0;
    padding: 20px;
    animation: fadeIn 0.3s ease forwards;
}

.madb-post-agency-about-map-content .madb-tab-content.active {
    display: block;
    opacity: 1;
}

/* Map iframe styling */
.madb-post-agency-about-map-content iframe {
    width: 100%;
    height: 210px;
    border: none;
    display: block;
}

.madb-post-agency-about-map-content .madb-tab-content-map {
    padding: 0 !important;
}

.madb-post-agency-about-map-content .madb-tab-content-map iframe {
    border-radius: 0;
}

/* Offices list styling */
.madb-post-agency-about-map-content .madb-post-about-adress {
    margin: 0;
    padding: 0;
    list-style: none;
}

.madb-post-agency-about-map-content .madb-post-about-adress-title h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}

.madb-post-agency-about-map-content .madb-post-about-adress-item {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.madb-post-agency-about-map-content .madb-post-about-adress-item .madb-icon {
    margin-right: 8px;
    flex-shrink: 0;
    color: #ee1d7a;
}

.madb-post-agency-about-map-content .madb-post-about-adress-item strong {
    margin-right: 8px;
    font-weight: 600;
}

.madb-post-agency-about-map-content .madb-post-about-adress-item a {
    color: #ee1d7a;
    text-decoration: none;
}

.madb-post-agency-about-map-content .madb-post-about-adress-item a:hover {
    text-decoration: underline;
}

/* Office separator */
.madb-post-agency-about-map-content hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Empty state */
.madb-post-agency-about-map-content .madb-post-about-adress-item:only-child {
    text-align: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .madb-post-agency-about-map-top .madb-tab-item {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .madb-post-agency-about-map-content {
        min-height: 180px;
    }
    
    .madb-post-agency-about-map-content .madb-tab-content {
        padding: 15px;
    }
}

