/* Kurumsal Sayfa Modern Tasarım CSS
   Dosya Yolu: css/kurumsal.css
*/

:root {
    --corp-primary: #0088cc; /* Sizin temanızın ana rengiyle değiştirebilirsiniz */
    --corp-dark: #212529;
    --corp-light: #f8f9fa;
    --corp-text: #777;
    --corp-border-radius: 12px;
    --corp-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Bölüm Genel Ayarları */
.corporate-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

/* Arkaplan Dekoratif Ögeler (Opsiyonel) */
.corporate-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,136,204,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Tekil Kurumsal Öge */
.corp-item-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 6rem;
}

.corp-item-wrapper:last-child {
    margin-bottom: 2rem;
}

/* Görsel Alanı Tasarımı */
.corp-media-box {
    position: relative;
    border-radius: var(--corp-border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: var(--corp-transition);
}

.corp-media-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.corp-media-box img, 
.corp-media-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.corp-media-box:hover img {
    transform: scale(1.05);
}

/* Video Wrapper */
.corp-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.corp-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Metin Alanı Tasarımı */
.corp-content-box {
    padding: 20px;
}

/* Başlık Stili */
.corp-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--corp-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.corp-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--corp-primary);
    border-radius: 2px;
}

/* Sağda hizalı metinler için çizgi ayarı */
.text-lg-end .corp-title::after {
    left: auto;
    right: 0;
}

/* Açıklama Metni */
.corp-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--corp-text);
    font-weight: 400;
}

.corp-text p {
    margin-bottom: 1.5rem;
}

/* Divider (Ayırıcı) */
.corp-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    margin: 4rem 0;
}

/* Medya Olmayan (Tam Genişlik) Durum */
.corp-full-width {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.corp-full-width .corp-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .corp-item-wrapper {
        margin-bottom: 4rem;
    }
    
    .corp-content-box {
        margin-top: 2rem;
        padding: 0;
        text-align: left !important; /* Mobilde her zaman sola dayalı */
    }

    .corp-title::after {
        left: 0 !important;
        right: auto !important;
        transform: none !important;
    }
    
    .ps-lg-5, .pe-lg-5 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}