﻿/* ==========================================
   🎨 MİNİMAL KURUMSAL TASARIM
   Rakamlarla Başkanlığımız + Dokümanlar
   Temiz, okunabilir, modern
   ========================================== */

/* ==========================================
   🎨 KURUMSAL RENK PALETİ
   ========================================== */
:root {
    --corporate-primary: #1B2B3A;
    --corporate-blue: #26394A;
    --corporate-accent: #b22222;
    --corporate-light: #f8f9fa;
}

/* ==========================================
   🌟 SERVICE SECTION
   ========================================== */

.service-section {
    position: relative;
    padding: 70px 0;
    background-size: cover !important;
    background-position: center !important;
}

    /* Kurumsal mavi overlay */
    /*.service-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 135deg, rgba(38, 57, 74, 0.75) 0%, rgba(27, 43, 58, 0.8) 100% );
        z-index: 1;
    }*/

    /* Kurumsal beyaz overlay */
    .service-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.8) 100% );
        z-index: 1;
    }

    .service-section .auto-container {
        position: relative;
        z-index: 2;
    }

    /* ==========================================
   🎯 BAŞLIK - Beyaz (overlay üzerinde okunabilir)
   ========================================== */

    .service-section .sec-title h6 span {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
    }

    .service-section .sec-title h2 {
        font-size: 36px;
        font-weight: 700;
        /*color: #ffffff;*/ /*Arka plan mavi olursa yazı beyaz olsun*/
        color: #26394A;
        margin-top: 10px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    /* ==========================================
   💎 SERVICE-BLOCK-ONE - Minimal Kartlar
   ========================================== */

    .service-section .service-block-one .inner-box {
        position: relative;
        padding: 30px 25px;
        min-height: 200px;
        /* Temiz beyaz glassmorphism */
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        /* Subtle border */
        border: 1px solid rgba(255, 255, 255, 0.8);
        /* Köşe yuvarlaması */
        border-radius: 12px;
        /* Soft shadow */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        /* Geçiş */
        transition: all 0.3s ease;
    }

        /* Hover */
        .service-section .service-block-one .inner-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        /* Alt çizgi accent - Kurumsal Mavi */
        .service-section .service-block-one .inner-box::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--corporate-blue);
            border-radius: 0 0 12px 12px;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-section .service-block-one .inner-box:hover::after {
            transform: scaleX(1);
        }

        /* İçerik - Koyu renkler (okunabilir) */
        .service-section .service-block-one .inner-box .btn-box {
            color: var(--corporate-primary);
            font-size: 14px;
            font-weight: 500;
            line-height: 1.5;
            min-height: 65px;
            margin-bottom: 12px;
        }

        .service-section .service-block-one .inner-box h4 {
            color: var(--corporate-primary);
        }

            /* Sayılar - Kurumsal Mavi */
            .service-section .service-block-one .inner-box h4 .counter {
                font-size: 42px;
                font-weight: 800;
                color: var(--corporate-blue);
            }

        /* Icon box - Kurumsal Mavi arka plan, beyaz ikon */
        .service-section .service-block-one .inner-box .icon-box {
            position: absolute;
            right: 20px;
            bottom: 20px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--corporate-blue);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

            .service-section .service-block-one .inner-box .icon-box img {
                width: 28px;
                height: 28px;
                opacity: 0.9;
                transition: all 0.3s ease;
            }

        .service-section .service-block-one .inner-box:hover .icon-box {
            transform: scale(1.05);
        }

            .service-section .service-block-one .inner-box:hover .icon-box img {
                opacity: 1;
            }

/* ==========================================
   📄 DOKÜMANLAR SECTION
   ========================================== */

.solutions-section {
    background: #f8f9fa;
}

    .solutions-section .sec-title h2 {
        font-size: 28px;
        font-weight: 700;
        color: var(--corporate-primary);
    }

/* ==========================================
   📋 SOLUTION-BLOCK-ONE - Doküman Kartları
   ========================================== */

.solution-block-one {
    margin-bottom: 15px;
}

    .solution-block-one .inner-box {
        position: relative;
        display: flex;
        align-items: center;
        padding: 18px 20px;
        min-height: 90px;
        /* Beyaz kart */
        background: #ffffff !important;
        /* Köşe yuvarlaması */
        border-radius: 10px !important;
        /* Border */
        border: 1px solid #e5e7eb !important;
        /* Shadow */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
        /* Geçiş */
        transition: all 0.3s ease;
    }

        /* Hover - Kurumsal Mavi border */
        .solution-block-one .inner-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
            border-color: var(--corporate-blue) !important;
        }

        /* Icon */
        .solution-block-one .inner-box .icon-box {
            display: flex;
            align-items: center;
            width: 100%;
        }

            .solution-block-one .inner-box .icon-box.bg_boy {
                background: transparent !important;
            }

            .solution-block-one .inner-box .icon-box a {
                display: flex;
                align-items: center;
                width: 100%;
                text-decoration: none;
            }

            /* İkon - Kurumsal Mavi tonları */
            .solution-block-one .inner-box .icon-box img {
                width: 42px !important;
                height: 42px !important;
                padding: 8px !important;
                background: rgba(37, 38, 56, 0.08);
                border-radius: 8px;
                margin-right: 15px;
                flex-shrink: 0;
                transition: all 0.3s ease;
                float: none !important;
            }

        .solution-block-one .inner-box:hover .icon-box img {
            background: var(--corporate-blue);
        }

        /* Başlık */
        .solution-block-one .inner-box h4 {
            font-size: 13px !important;
            font-weight: 600 !important;
            color: var(--corporate-primary) !important;
            line-height: 1.4 !important;
            margin: 0 !important;
            padding: 0 !important;
            width: auto !important;
            float: none !important;
            flex: 1;
            transition: color 0.3s ease;
        }

        /* Hover - Kurumsal Mavi yazı */
        .solution-block-one .inner-box:hover h4 {
            color: var(--corporate-blue) !important;
        }

        /* Arrow - Kurumsal Mavi */
        .solution-block-one .inner-box::after {
            content: '→';
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 18px;
            color: #cbd5e1;
            transition: all 0.3s ease;
        }

        .solution-block-one .inner-box:hover::after {
            color: var(--corporate-blue);
            transform: translateY(-50%) translateX(3px);
        }

/* ==========================================
   🎬 SCROLL ANİMASYONLARI
   ========================================== */

.service-section .service-block-one.scroll-animate-card {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: var(--card-delay, 0s);
}

    .service-section .service-block-one.scroll-animate-card.animate-visible {
        opacity: 1;
        transform: translateY(0);
    }

.solution-block-one.scroll-animate-card {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: var(--card-delay, 0s);
}

    .solution-block-one.scroll-animate-card.animate-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ==========================================
   📱 RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .service-section {
        padding: 50px 0;
    }

        .service-section .sec-title h2 {
            font-size: 28px;
        }

        .service-section .service-block-one .inner-box {
            min-height: 170px;
            padding: 22px 18px;
        }

            .service-section .service-block-one .inner-box h4 .counter {
                font-size: 34px;
            }

            .service-section .service-block-one .inner-box:hover {
                transform: translateY(-4px);
            }

    .solution-block-one .inner-box:hover {
        transform: translateY(-3px);
    }

    .solution-block-one .inner-box::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .service-section .service-block-one .inner-box .icon-box {
        width: 42px;
        height: 42px;
        right: 12px;
        bottom: 12px;
    }

    .solution-block-one .inner-box .icon-box img {
        width: 38px !important;
        height: 38px !important;
    }

    .solution-block-one .inner-box h4 {
        font-size: 12px !important;
    }
}

/* ==========================================
   ♿ REDUCED MOTION
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    .service-section .service-block-one.scroll-animate-card,
    .solution-block-one.scroll-animate-card {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
