/* =============================================
   Organizations Tab Section
   ============================================= */

.organizations-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Tab Navigation */
.org-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--gray-200);
}

.org-tab-btn {
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.org-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.org-tab-btn:hover {
    color: var(--primary-color);
}

.org-tab-btn.active {
    color: var(--primary-color);
}

.org-tab-btn.active::after {
    transform: scaleX(1);
}

.org-tab-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Tab Content */
.org-tabs-content {
    position: relative;
}

.org-tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.org-tab-panel.active {
    display: block;
    opacity: 1;
}

/* Section Title */
.org-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--font-heading);
}

/* Content Wrapper */
.org-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Content */
.org-content-left {
    flex: 1;
}

/* Feature Block */
.org-feature-block {
    margin-bottom: 40px;
}

.org-feature-block:last-child {
    margin-bottom: 0;
}

.org-feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-family: var(--font-heading);
}

.org-feature-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Check List for International */
.org-check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.org-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 1.0625rem;
    color: var(--gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}

.org-check-list li:last-child {
    border-bottom: none;
}

.org-check-list li i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Right Visual - Map Container */
.org-content-right {
    flex: 0 0 55%;
    position: relative;
}

.org-map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.org-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Map Dots Overlay - Türkiye */
.turkey-map-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Dot positions - approximate city locations on Turkey map */
.map-dot.istanbul { top: 28%; left: 22%; }
.map-dot.ankara { top: 35%; left: 42%; }
.map-dot.izmir { top: 48%; left: 18%; }
.map-dot.antalya { top: 65%; left: 35%; }
.map-dot.bursa { top: 32%; left: 25%; }
.map-dot.adana { top: 55%; left: 52%; }
.map-dot.konya { top: 50%; left: 42%; }
.map-dot.gaziantep { top: 55%; left: 60%; }
.map-dot.kayseri { top: 42%; left: 52%; }
.map-dot.mersin { top: 60%; left: 48%; }
.map-dot.eskisehir { top: 35%; left: 35%; }
.map-dot.samsun { top: 25%; left: 55%; }
.map-dot.denizli { top: 55%; left: 25%; }
.map-dot.sakarya { top: 30%; left: 30%; }
.map-dot.trabzon { top: 25%; left: 72%; }
.map-dot.diyarbakir { top: 45%; left: 70%; }
.map-dot.erzurum { top: 32%; left: 78%; }
.map-dot.van { top: 38%; left: 88%; }
.map-dot.malatya { top: 45%; left: 62%; }
.map-dot.elazig { top: 42%; left: 68%; }
.map-dot.sanliurfa { top: 52%; left: 68%; }
.map-dot.kahramanmaras { top: 50%; left: 58%; }
.map-dot.tekirdag { top: 26%; left: 18%; }
.map-dot.manisa { top: 45%; left: 20%; }
.map-dot.mugla { top: 58%; left: 22%; }

/* World Map with Connection Lines */
.world-map-container {
    position: relative;
}

.world-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* =============================================
   Responsive Styles
   ============================================= */

@media (max-width: 1199px) {
    .org-content-wrapper {
        gap: 40px;
    }
    
    .org-content-right {
        flex: 0 0 50%;
    }
    
    .org-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .organizations-section {
        padding: 60px 0;
    }
    
    .org-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .org-content-right {
        flex: none;
        width: 100%;
        max-width: 600px;
    }
    
    .org-section-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
    
    .org-tab-btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .org-tabs-nav {
        flex-direction: column;
        border-bottom: none;
        gap: 10px;
        background-color: var(--gray-100);
        padding: 10px;
        border-radius: 12px;
    }
    
    .org-tab-btn {
        border-radius: 8px;
        text-align: center;
    }
    
    .org-tab-btn::after {
        display: none;
    }
    
    .org-tab-btn.active {
        background-color: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .org-section-title {
        font-size: 1.5rem;
    }
    
    .org-feature-title {
        font-size: 1.25rem;
    }
    
    .org-feature-desc {
        font-size: 0.9375rem;
    }
    
    .map-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .organizations-section {
        padding: 50px 0;
    }
    
    .org-tab-btn {
        padding: 12px 16px;
        font-size: 0.875rem;
    }
    
    .org-tab-btn i {
        display: none;
    }
    
    .org-section-title {
        font-size: 1.25rem;
    }
    
    .org-check-list li {
        font-size: 0.9375rem;
    }
}
