/* KURUMSAL SAYFASI 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;
}

/* KURUMSAL İÇERİK */
.kurumsal-icerik {
    padding: 80px 0;
    background: #f8f9fa;
}

.kurumsal-bolum {
    margin-bottom: 80px;
}

.bolum-baslik {
    margin-bottom: 40px;
    position: relative;
}

.bolum-baslik h2 {
    font-size: 2.5rem;
    color: #4A235A;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.bolum-baslik h2 i {
    color: #FF6B8B;
    font-size: 2.2rem;
}

.baslik-cizgi {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B8B, #7D3C98);
    border-radius: 2px;
}

/* HAKKIMIZDA DETAY */
.hakkimizda-icerik-detay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hakkimizda-gorsel {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.hakkimizda-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hakkimizda-gorsel:hover img {
    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: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.hakkimizda-metin-detay h3 {
    font-size: 1.8rem;
    color: #4A235A;
    margin-bottom: 20px;
}

.vurgulu-metin {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #FF6B8B;
}

.ozellik-listesi {
    margin: 30px 0;
}

.ozellik {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
}

.ozellik i {
    color: #4A235A;
    font-size: 1.2rem;
}

.btn-kurumsal {
    background: linear-gradient(135deg, #4A235A, #7D3C98);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-kurumsal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 35, 90, 0.3);
}

/* MİSYON VİZYON DETAY */
.misyon-vizyon-detay {
    margin: 60px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-kart {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.mv-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vizyon-kart::before {
    background: linear-gradient(90deg, #4ECDC4, #45B7D1);
}

.misyon-kart::before {
    background: linear-gradient(90deg, #FF6B6B, #FF8E53);
}

.mv-kart:hover::before {
    opacity: 1;
}

.mv-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.vizyon-kart .mv-icon {
    background: linear-gradient(135deg, #4ECDC4, #45B7D1);
}

.misyon-kart .mv-icon {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.mv-kart h3 {
    font-size: 1.8rem;
    color: #4A235A;
    margin-bottom: 20px;
}

.mv-aciklama {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.mv-odak-noktalari {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 25px;
}

.odak-nokta {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4A235A;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.odak-nokta:hover {
    background: #4A235A;
    color: white;
    border-color: #4A235A;
}

/* DEĞERLERİMİZ */
.degerler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.deger-kart {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.deger-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.deger-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.deger-kart:hover .deger-icon {
    transform: scale(1.1) rotate(5deg);
}

.deger-kart h3 {
    font-size: 1.4rem;
    color: #4A235A;
    margin-bottom: 15px;
}

.deger-kart p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* EĞİTİM KADROMUZ */
.kadro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.kadro-kart {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
}

.kadro-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.kadro-foto {
    width: 120px;
    background: linear-gradient(135deg, #4A235A, #7D3C98);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.foto-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #4A235A;
}

.kadro-bilgi {
    flex: 1;
    padding: 25px;
}

.kadro-bilgi h3 {
    font-size: 1.4rem;
    color: #4A235A;
    margin-bottom: 5px;
}

.kadro-unvan {
    color: #FF6B8B;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.kadro-aciklama {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.kadro-uzmanlik {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kadro-uzmanlik span {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #4A235A;
    border: 1px solid #e0e0e0;
}

.kadro-ozellikler {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.ozellik-kart {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ozellik-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #4A235A;
}

.ozellik-kart i {
    font-size: 2.5rem;
    color: #4A235A;
    margin-bottom: 15px;
}

.ozellik-kart h4 {
    font-size: 1.2rem;
    color: #4A235A;
    margin-bottom: 10px;
}

.ozellik-kart p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* FİZİKİ İMKANLAR */
.imkanlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.imkan-kart {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.imkan-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.imkan-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A235A, #7D3C98);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.imkan-kart h3 {
    font-size: 1.4rem;
    color: #4A235A;
    margin-bottom: 20px;
}

.imkan-kart ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.imkan-kart li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.imkan-kart li::before {
    content: '✓';
    color: #4A235A;
    font-weight: bold;
}

/* BELGELERİMİZ */
.belgeler-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.belge-kart {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.belge-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #4A235A;
}

.belge-kart i {
    font-size: 2.5rem;
    color: #4A235A;
    margin-bottom: 15px;
}

.belge-kart h4 {
    font-size: 1.2rem;
    color: #4A235A;
    margin-bottom: 10px;
}

.belge-kart p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* İSTATİSTİKLER */
.kurumsal-istatistikler {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A235A 0%, #7D3C98 100%);
    color: white;
}

.istatistik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.istatistik-kart {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.istatistik-kart:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.istatistik-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}

.istatistik-deger {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FF6B8B;
}

.istatistik-kart h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.istatistik-kart p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* RESPONSIVE TASARIM */
@media (max-width: 992px) {
    .hakkimizda-icerik-detay {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kadro-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .bolum-baslik h2 {
        font-size: 2rem;
    }
    
    .degerler-grid,
    .imkanlar-grid,
    .belgeler-listesi {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .istatistik-deger {
        font-size: 2.8rem;
    }
    
    .kadro-kart {
        flex-direction: column;
    }
    
    .kadro-foto {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .kurumsal-icerik {
        padding: 60px 0;
    }
    
    .kurumsal-bolum {
        margin-bottom: 60px;
    }
    
    .bolum-baslik h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hakkimizda-gorsel {
        height: 300px;
    }
    
    .mv-kart {
        padding: 30px 20px;
    }
    
    .istatistik-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* ANİMASYONLAR */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.deger-kart,
.imkan-kart,
.belge-kart,
.istatistik-kart {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Sıralı animasyonlar */
.deger-kart:nth-child(1) { animation-delay: 0.1s; }
.deger-kart:nth-child(2) { animation-delay: 0.2s; }
.deger-kart:nth-child(3) { animation-delay: 0.3s; }
.deger-kart:nth-child(4) { animation-delay: 0.4s; }
.deger-kart:nth-child(5) { animation-delay: 0.5s; }
.deger-kart:nth-child(6) { animation-delay: 0.6s; }

.imkan-kart:nth-child(1) { animation-delay: 0.1s; }
.imkan-kart:nth-child(2) { animation-delay: 0.2s; }
.imkan-kart:nth-child(3) { animation-delay: 0.3s; }
.imkan-kart:nth-child(4) { animation-delay: 0.4s; }

.belge-kart:nth-child(1) { animation-delay: 0.1s; }
.belge-kart:nth-child(2) { animation-delay: 0.2s; }
.belge-kart:nth-child(3) { animation-delay: 0.3s; }
.belge-kart:nth-child(4) { animation-delay: 0.4s; }
.belge-kart:nth-child(5) { animation-delay: 0.5s; }
.belge-kart:nth-child(6) { animation-delay: 0.6s; }
