/* Kurumsal Hosting Bölümü Stilleri - public_html/css/kurumsal.css dosyasına eklenecektir */

:root {
    --krh-dark: #0f172a;
    --krh-blue: #0284c7;
    --krh-blue-light: #e0f2fe;
    --krh-text: #475569;
    --krh-bg-card: #ffffff;
    --krh-bg-light: #f8fafc;
    --krh-radius-lg: 24px;
    --krh-radius-md: 12px;
}

.krh-main-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--krh-text);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* 1. BÖLÜM: GÖRSELLİ DETAYLI ANLATIM BLOKLARI */
.krh-intro-section {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--krh-bg-card);
    padding: 20px 0;
}

.krh-intro-section.krh-reverse {
    flex-direction: row-reverse;
}

.krh-image-group {
    flex: 1;
    position: relative;
    display: flex;
    gap: 16px;
}

.krh-img-lg {
    width: 70%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--krh-radius-lg);
}

.krh-img-sm {
    width: 25%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--krh-radius-lg);
    align-self: flex-end;
}

.krh-content-block {
    flex: 1.2;
}

.krh-content-block h2 {
    font-size: 32px;
    color: var(--krh-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.krh-content-block h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--krh-blue);
    margin-top: 12px;
    border-radius: 2px;
}

.krh-content-block p {
    font-size: 16px;
    margin-bottom: 16px;
    text-align: justify;
}

.krh-content-block strong {
    color: var(--krh-blue);
    font-weight: 600;
}

/* 2. BÖLÜM: ASİMETRİK ÖZELLİKLER GRID ALANI */
.krh-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: -40px;
    gap: 30px;
}

.krh-grid-title-left {
    max-width: 750px;
}

.krh-grid-title-left h2 {
    font-size: 32px;
    color: var(--krh-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.krh-grid-title-left p {
    font-size: 16px;
    color: var(--krh-text);
}

.krh-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.krh-card {
    background-color: var(--krh-bg-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--krh-radius-lg);
    padding: 30px;
    transition: all 0.3s ease;
}

.krh-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1;
}

.krh-card-highlight {
    grid-row: span 2;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.krh-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--krh-blue-light);
    color: var(--krh-blue);
    border-radius: var(--krh-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.krh-card-highlight .krh-icon-box {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.krh-card h3 {
    font-size: 19px;
    color: var(--krh-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.krh-card-highlight h3 {
    color: #ffffff;
    font-size: 24px;
}

.krh-card p {
    font-size: 14.5px;
    line-height: 1.6;
    text-align: justify;
}

.krh-card strong {
    color: var(--krh-blue);
    font-weight: 600;
}

.krh-card-highlight strong {
    color: #38bdf8;
    font-weight: 600;
}

/* Buton Yapıları */
.krh-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--krh-radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.krh-btn-outline {
    color: var(--krh-blue);
    border: 2px solid var(--krh-blue);
}

.krh-btn-outline:hover {
    background-color: var(--krh-blue);
    color: #ffffff;
}

.krh-btn-solid {
    background-color: var(--krh-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.krh-btn-solid:hover {
    background-color: #0369a1;
    transform: translateY(-1px);
}

/* Alt Banner Alanı */
.krh-footer-banner {
    background-color: var(--krh-bg-light);
    border: 1px solid #e2e8f0;
    border-radius: var(--krh-radius-lg);
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.krh-banner-text h3 {
    font-size: 20px;
    color: var(--krh-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.krh-banner-text p {
    font-size: 14.5px;
    color: var(--krh-text);
}

/* Responsive Ayarları */
@media (max-width: 968px) {
    .krh-main-wrapper {
        gap: 50px;
        margin: 30px auto;
    }

    .krh-intro-section, .krh-intro-section.krh-reverse {
        flex-direction: column;
        gap: 24px;
    }

    .krh-image-group {
        width: 100%;
    }

    .krh-img-lg {
        width: 65%;
        height: 240px;
    }

    .krh-img-sm {
        width: 30%;
        height: 170px;
    }

    .krh-content-block h2 {
        font-size: 24px;
    }

    .krh-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: -20px;
    }

    .krh-grid-layout {
        grid-template-columns: 1fr;
    }

    .krh-card-highlight {
        grid-row: span 1;
    }

    .krh-footer-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }

    .krh-action-right, .krh-banner-action {
        width: 100%;
    }

    .krh-btn {
        width: 100%;
        text-align: center;
    }
}