.worldwide-branches-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.wwb-left-panel {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .wwb-left-panel {
        flex: 0 0 30%;
        max-width: 30%;
    }
    .wwb-right-panel {
        flex: 0 0 calc(70% - 40px);
        max-width: calc(70% - 40px);
    }
}

.wwb-heading-wrapper {
    margin-bottom: 30px;
}

.wwb-subtitle {
    color: #ff7b36;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.wwb-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.wwb-regions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wwb-region-item {
    font-size: 18px;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.wwb-region-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ccc;
    transition: all 0.3s ease;
}

.wwb-region-item.active {
    color: #ff7b36;
    font-weight: 600;
}

.wwb-region-item.active::before {
    background-color: #ff7b36;
    width: 30px;
    height: 2px;
    border-radius: 0;
    left: -15px;
}
.wwb-region-item.active {
    padding-left: 25px;
}

/* Button Styling */
.wwb-button-wrapper {
    margin-top: 40px;
}

.wwb-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(120deg, #ff9f5b, #ff7b36);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 123, 54, 0.3);
}

.wwb-button:hover {
    box-shadow: 0 6px 20px rgba(255, 123, 54, 0.5);
    color: #fff;
}

.wwb-button-text {
    margin-right: 10px;
}

.wwb-button-icon {
    display: flex;
    align-items: center;
}


/* Right Panel Map & Hotspots */
.wwb-right-panel {
    position: relative;
    display: flex;
    flex-direction: column;
}

.wwb-map-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.wwb-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.wwb-hotspots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wwb-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.wwb-hotspot-marker {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 2px solid #ff7b36;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wwb-hotspot-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #ff7b36;
    border-radius: 50%;
}

.wwb-hotspot.active .wwb-hotspot-marker {
    box-shadow: 0 0 0 6px rgba(255, 123, 54, 0.2);
    transform: scale(1.2);
}

.wwb-hotspot-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    z-index: 2;
}

.wwb-hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.wwb-hotspot:hover .wwb-hotspot-tooltip,
.wwb-hotspot.active .wwb-hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.wwb-hotspot-tooltip h5 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 700;
}

.wwb-hotspot-tooltip p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

/* Details Section */
.wwb-details-container {
    text-align: center;
}
@media (min-width: 768px) {
    .wwb-details-container {
        text-align: left;
    }
}

.wwb-detail-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.wwb-detail-item.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wwb-location-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

.wwb-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    justify-content: center;
}
@media (min-width: 768px) {
    .wwb-contact-info {
        justify-content: flex-start;
    }
}

.wwb-contact-info li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.wwb-contact-info li i {
    color: #ff7b36;
    margin-right: 10px;
    font-size: 16px;
}

.wwb-contact-info li a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.wwb-contact-info li a:hover {
    color: #ff7b36;
}
