/* EĞİTİM SAYFASI ÖZEL STİLLERİ */

/* BANNER STİLLERİ */
.page-banner {
    background: linear-gradient(135deg, rgba(0, 0, 108, 0.9) 0%, rgba(74, 35, 90, 0.9) 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png');
    opacity: 0.1;
}

.page-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* EĞİTİM ANLAYIŞIMIZ BÖLÜMÜ */
.egitim-anlayisimiz {
    padding: 80px 0;
    background: #f8f9fa;
}

.egitim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.egitim-content {
    padding-right: 30px;
}

.egitim-baslik {
    font-size: 2.5rem;
    color: #4A235A;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.egitim-baslik::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B8B, #7D3C98);
    border-radius: 2px;
}

.egitim-aciklama {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #FF6B8B;
}

/* EĞİTİM UNSURLARI */
.egitim-unsurlari {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.egitim-unsur {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.egitim-unsur:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.unsur-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B8B, #7D3C98);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.unsur-text h3 {
    font-size: 1.2rem;
    color: #4A235A;
    margin-bottom: 8px;
    font-weight: 600;
}

.unsur-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* EĞİTİM GÖRSEL */
.egitim-gorsel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gorsel-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.gorsel-resim {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gorsel-card:hover .gorsel-resim {
    transform: scale(1.05);
}

.gorsel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gorsel-card:hover .gorsel-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gorsel-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.gorsel-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* EĞİTİM ÖZELLİKLERİ */
.egitim-ozellikler {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ozellik-baslik {
    color: #4A235A;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.ozellik-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ozellik-list li {
    padding: 12px 0;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.ozellik-list li:last-child {
    border-bottom: none;
}

.ozellik-list li:hover {
    color: #4A235A;
    padding-left: 10px;
}

.ozellik-list li i {
    color: #FF6B8B;
    font-size: 1.1rem;
}

/* EĞİTİM YAKLAŞIMLARI */
.egitim-yaklasimlari {
    padding: 60px 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.yaklasim-baslik {
    text-align: center;
    font-size: 2.2rem;
    color: #4A235A;
    margin-bottom: 50px;
    position: relative;
}

.yaklasim-baslik::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B8B, #7D3C98);
    border-radius: 2px;
}

.yaklasim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.yaklasim-kart {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.yaklasim-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #FF6B8B;
}

.yaklasim-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
}

.yaklasim-kart h3 {
    color: #4A235A;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.yaklasim-kart p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE TASARIM */
@media (max-width: 992px) {
    .egitim-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .egitim-content {
        padding-right: 0;
    }
    
    .gorsel-card {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .egitim-baslik {
        font-size: 2rem;
    }
    
    .yaklasim-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .egitim-unsur {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .unsur-icon {
        margin: 0 auto;
    }
    
    .gorsel-overlay {
        padding: 20px;
    }
    
    .gorsel-overlay h3 {
        font-size: 1.2rem;
    }
    
    .yaklasim-kart {
        padding: 25px 20px;
    }
}

/* ANİMASYONLAR */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.egitim-unsur {
    animation: fadeInUp 0.6s ease forwards;
}

.egitim-unsur:nth-child(2) { animation-delay: 0.1s; }
.egitim-unsur:nth-child(3) { animation-delay: 0.2s; }
.egitim-unsur:nth-child(4) { animation-delay: 0.3s; }

.yaklasim-kart {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.yaklasim-kart:nth-child(1) { animation-delay: 0.1s; }
.yaklasim-kart:nth-child(2) { animation-delay: 0.2s; }
.yaklasim-kart:nth-child(3) { animation-delay: 0.3s; }
.yaklasim-kart:nth-child(4) { animation-delay: 0.4s; }