/*------------------------------------*\
	#CALISTIGIMIZ-ULKELER PAGE STYLES
	Çalıştığımız Ülkeler sayfası özel stilleri
\*------------------------------------*/

/* Content Section - Modern ve Profesyonel */
.content-section {
    background: #ffffff;
    padding: 80px 0 90px;
    position: relative;
}

.content-section .container {
    position: relative;
    z-index: 2;
}

.content-section h2 {
    font-family: "Rubik", sans-serif;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1b1a1a;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.content-section h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #5f2e88, #1b1a1a);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(95, 46, 136, 0.2);
}

.content-section h3 {
    font-family: "Rubik", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1b1a1a;
    margin-top: 45px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #5f2e88;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.content-section h3:hover {
    box-shadow: 0 4px 15px rgba(95, 46, 136, 0.15);
    transform: translateX(5px);
}

.content-section p {
    font-family: "Roboto", sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    padding: 0 5px;
}

.content-section p strong {
    color: #1b1a1a;
    font-weight: 600;
}

/* Intro Section - Modern ve Göze Hitap Eden */
.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(95, 46, 136, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.intro-section .container {
    position: relative;
    z-index: 2;
}

.intro-title {
    font-family: "Rubik", sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #1b1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #5f2e88, #1b1a1a);
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(95, 46, 136, 0.2);
}

.intro-divider {
    display: none;
}

.intro-text {
    font-family: "Roboto", sans-serif;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    text-align: center;
    max-width: 850px;
    margin: 30px auto 0;
    padding: 30px 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.intro-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(95, 46, 136, 0.02) 0%, transparent 100%);
    border-radius: 12px;
    pointer-events: none;
}

.intro-text strong {
    color: #1b1a1a;
    font-weight: 600;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .intro-section,
    .content-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .intro-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .content-section {
        padding: 60px 0 70px;
    }
    
    .intro-section {
        padding: 60px 0;
    }
    
    .content-section h2 { 
        font-size: 1.8rem; 
        margin-bottom: 40px;
        padding-bottom: 15px;
    }
    
    .content-section h2::after {
        width: 80px;
        height: 3px;
    }
    
    .content-section h3 { 
        font-size: 1.3rem;
        margin-top: 35px;
        padding: 12px 18px;
        border-left-width: 3px;
    }
    
    .content-section p { 
        font-size: 1rem; 
        text-align: left;
        line-height: 1.8;
    }
    
    .intro-title { 
        font-size: 1.8rem; 
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .intro-title::after {
        width: 70px;
        height: 3px;
    }
    
    .intro-text {
        font-size: 1.05rem;
        padding: 25px 30px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 50px 0 60px;
    }
    
    .intro-section {
        padding: 50px 0;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
        margin-bottom: 35px;
        padding-bottom: 12px;
    }
    
    .content-section h2::after {
        width: 70px;
        height: 3px;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
        margin-top: 30px;
        padding: 12px 15px;
        border-left-width: 3px;
    }
    
    .content-section p {
        font-size: 0.98rem;
        line-height: 1.8;
        padding: 0;
    }
    
    .intro-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .intro-title::after {
        width: 60px;
        height: 3px;
    }
    
    .intro-text {
        font-size: 1rem;
        line-height: 1.8;
        padding: 20px 25px;
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 40px 0 50px;
    }
    
    .intro-section {
        padding: 40px 0;
    }
    
    .content-section h2 { 
        font-size: 1.4rem; 
        margin-bottom: 30px;
        padding-bottom: 10px;
        line-height: 1.3;
    }
    
    .content-section h2::after {
        width: 60px;
        height: 2.5px;
        margin-top: 10px;
    }
    
    .content-section h3 { 
        font-size: 1.15rem; 
        margin-top: 25px;
        padding: 10px 12px;
        border-left-width: 3px;
    }
    
    .content-section p { 
        font-size: 0.95rem; 
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .intro-title { 
        font-size: 1.4rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
        line-height: 1.3;
    }
    
    .intro-title::after {
        width: 50px;
        height: 2.5px;
    }
    
    .intro-text {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 18px 20px;
        margin-top: 20px;
        border-radius: 10px;
    }
}

/* Ek iyileştirmeler */
.intro-section .row,
.content-section .row {
    align-items: center;
}

/* Sayfa geçiş animasyonu */
.content-section .container {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

