/* --- 1. Değişkenler ve Global Sıfırlama --- */
        :root {
            --primary-color: #00C2C7;
            --primary-hover: #00E5D4;
            --bg-dark: #ffffff;
            --bg-card: rgba(15, 23, 30, 0.65);
            --bg-lighter: #111821;
            --text-main: #ffffff;
            --text-light: #ffffff;
            --font-primary: 'Manrope', sans-serif;
            --font-heading: 'Play', sans-serif;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --container-width: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: var(--font-primary);
            color: var(--text-main);
            background-color: var(--bg-dark);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- 2. Yükleniyor (Loader) --- */
        .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-container.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .spinner {
            display: flex;
            gap: 6px;
        }

        .spinner > div {
            width: 15px;
            height: 15px;
            background-color: var(--primary-color);
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out both;
        }

        .spinner .bounce1 { animation-delay: -0.32s; }
        .spinner .bounce2 { animation-delay: -0.16s; }

        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1.0); }
        }

        /* --- 3. Header & Navigasyon --- */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #0A0F14;
            z-index: 1000;
        }

        .header-container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 18px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            max-height: 42px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .menu-list {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .menu-item {
            position: relative;
        }

        .menu-item > a {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 600;
            color: var(--text-light);
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.5px;
        }

        .menu-item > a i {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        @media (min-width: 992px) {
            .menu-item:hover > a {
                color: var(--primary-color);
            }

            .menu-item:hover > a i {
                transform: rotate(180deg);
            }

            .menu-item:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }
        }

        /* Dropdown */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(15px);
            background-color: var(--bg-lighter);
            min-width: 260px;
            border-radius: 6px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            padding: 12px 0;
            z-index: 100;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dropdown-menu li a {
            display: block;
            padding: 10px 24px;
            color: var(--text-main);
            font-size: 14px;
            font-weight: 500;
        }

        .dropdown-menu li:hover > a {
            background-color: var(--primary-color);
            color: var(--bg-dark);
            padding-left: 28px;
        }

        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 22px;
            cursor: pointer;
            z-index: 1100;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            transition: var(--transition);
        }

        .menu-overlay.show {
            opacity: 1;
            visibility: visible;
        }


/* --- Modern Dil Değiştirici (Language Switcher) Tasarımı --- */
.language-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 50px;
    gap: 4px;
    margin-left: 35px;
    backdrop-filter: blur(8px);
}

.language-switcher .lang {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

/* Üzerine gelindiğinde (Hover) */
.language-switcher .lang:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
}

/* Aktif (Seçili) Olan Dilin Şık Görünümü */
.language-switcher .lang.active {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(0, 194, 199, 0.3);
}

/* Mobildeki Konumu */
@media(max-width: 991px) {
    .language-switcher {
        margin: 25px auto 0 auto;
        padding: 5px;
        width: fit-content;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-left: 1px solid rgba(255,255,255,0.1);
        padding-top: 5px;
    }
}



        /* --- 4. Giriş (Hero) Bölümü --- */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: linear-gradient(to bottom, rgba(10, 15, 20, 0.85) 0%, rgba(10, 15, 20, 0.45) 60%, rgba(10, 15, 20, 0.95) 100%), 
                              url('../../../images/hero_bg.webp');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            background-attachment: fixed;
            padding: 140px 20px 80px 20px; 
            box-sizing: border-box;
        }

        .hero-content {
            max-width: var(--container-width);
            width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 5vw, 4.2rem);
            color: var(--text-light);
            line-height: 1.15;
            font-weight: 700;
            margin-bottom: 50px;
            letter-spacing: -0.5px;
        }

        .hero-title span {
            display: block;
        }

       /* Hero 4'lü Kart Yapısı */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 yerine 4 yapıldı */
    gap: 20px; /* Kartlar çoğaldığı için boşluğu biraz daralttık */
    width: 100%;
    margin-top: 20px;
}

/* Küçük ekranlar için responsive ayarı (Bunu eklemeyi unutma) */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2x2 olsun */
    }
}

@media (max-width: 600px) {
    .hero-grid {
        grid-template-columns: 1fr !important; /* Telefonda alt alta gelsin */
    }
}
        .hero-card {
            background-color: var(--bg-card);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 30px;
            text-align: left;
            transition: var(--transition);
        }

        .hero-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .card-icon {
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .card-title {
            font-family: var(--font-heading);
            color: var(--text-light);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .card-desc {
            font-size: 13.5px;
            color: var(--text-main);
            line-height: 1.6;
        }

        /* --- 5. İkinci Bölüm: Gerçek İhtiyaçlar --- */
        .section-padding {
            padding: 100px 20px;
            background-color: #ffffff;
            color: #333333;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
        }

       .split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center; /* Bu komut metni ve videoyu dikeyde ortalar */
}
                /* Videoları kapsayan kutuları tam eşitleyelim */
.split-image, 
.dark-image {
    width: 100%;
    aspect-ratio: 16 / 9; /* Tüm videolar için ortak standart oran */
    overflow: hidden;
    border-radius: 6px;
    background-color: #000; /* Video yüklenirken boşluk kalırsa siyah olsun */
}

/* Videoların kendisini kutuya tam oturtalım */
.split-image video, 
.dark-image video {
    width: 100%;
    height: 100%;
    object-fit: cover !important; /* 'important' ile diğer kuralları eziyoruz */
    object-position: center;      /* Videoyu merkezleyerek keser */
    display: block;
}
        .split-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: #111111;
            line-height: 1.25;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .split-content p {
            font-size: 15px;
            color: #555555;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        /* --- 6. Ara Bant (Sonsuz Kayan Marquee) --- */
        .divider-banner {
            background: linear-gradient(90deg, #111111 0%, #1c2630 50%, #111111 100%);
            border-top: 2px solid var(--primary-color);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 24px 0;
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .divider-marquee {
            display: flex;
            width: 100%;
            overflow: hidden;
        }

        .divider-track {
            display: flex;
            align-items: center;
            gap: 30px;
            white-space: nowrap;
            width: max-content;
            animation: marquee 25s linear infinite;
        }

  .divider-item {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 24px; /* 16px değerini 24px ile güncelledik */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

        .divider-line {
            width: 30px;
            height: 2px;
            background-color: var(--primary-color);
            flex-shrink: 0;
        }

        .divider-item.active {
            color: #ffffff;
        }

        @keyframes marquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }

        /* --- 7. Koyu İkili Blok Alanı --- */
        .dark-sections {
            background-color: var(--bg-dark);
            padding: 100px 20px;
        }

        .dark-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 100px;
        }

        .dark-row:last-child {
            margin-bottom: 0;
        }

        .dark-row.reverse {
            direction: rtl;
        }

        .dark-row.reverse .dark-content {
            direction: ltr;
        }

        .dark-content h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: #111821;
            margin-bottom: 20px;
        }

        .dark-content h3 span {
            color: #232b36;
        }

        .dark-content p {
            font-size: 14px;
            color: #555555;
            line-height: 1.8;
        }

        .dark-image img,
        .dark-image video {
            width: 100%;
            height: auto;
            display: block;
            box-shadow: #ffffff;
        }

        
        
        /* --- Hizmet Alanları Başlığı - Kompakt ve Entegre --- */
.gallery-section {
    padding-top: 20px !important; /* Galeri üst boşluğunu minimize ettik */
}

.gallery-header {
    text-align: center;
    padding-bottom: 20px; /* Galeri ile başlık arasındaki boşluk */
    margin-top: -20px;    /* Bir önceki bölüme hafifçe yaklaştırdık */
}

.gallery-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}
        
        
        
        
        
        
        
        
        
        
        
        /* --- 8. Altılı Galeri Grid Alanı --- */
        .gallery-section {
            background-color: var(--bg-dark);
            padding: 40px 20px 80px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            aspect-ratio: 2 / 3; 
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 15, 20, 0.95) 0%, rgba(10, 15, 20, 0.5) 45%, rgba(0, 0, 0, 0) 100%);
            display: flex;
            align-items: flex-end;
            padding: 24px;
            box-sizing: border-box;
        }

        .gallery-content {
            width: 100%;
        }

        .gallery-title {
            font-family: var(--font-heading);
            color: var(--text-light);
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }

        .gallery-desc {
            font-size: 13px;
            color: var(--text-main);
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .gallery-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid transparent;
            padding-bottom: 2px;
        }

        .gallery-link i {
            font-size: 11px;
            transition: transform 0.3s ease;
        }

        .gallery-link:hover {
            color: var(--primary-hover);
            border-color: var(--primary-hover);
        }

        .gallery-link:hover i {
            transform: translateX(4px);
        }

/* --- 9. Call to Action --- */
.cta-section {
    width: 100%;
    min-height: 480px;
    /* ESKİ KOD: background: linear-gradient(to right, rgba(255, 255, 255, 0) 45%, #111111 70%, #050505 100%), ... */
    
    /* YENİ KOD: Siyah degradeyi kaldırdık, arka planı komple siyah yaptık */
    background: #111111 url('../../../images/altbanner-2.png') no-repeat left center;
    background-size: cover; 
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    display: flex;
    align-items: center;
}

        .cta-container {
            max-width: var(--container-width);
            margin: 0 auto;
            width: 100%;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
        }

        .cta-box {
            width: 40%; 
            padding: 60px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            box-sizing: border-box;
            position: relative;
            z-index: 2;
        }

        .cta-box h3 {
            font-family: var(--font-heading);
            font-size: 2.3rem;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 35px;
            font-weight: 700;
            max-width: 450px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.35);
            color: #ffffff;
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 13.5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--primary-color);
            color: #000000;
            border-color: var(--primary-hover);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
        }

        /* --- 10. Footer --- */
        .main-footer {
            background-color: #06090c;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 20px 40px;
        }

        .footer-container {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
        }

     .footer-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

                /* Yazı boyutunu küçülttük */
                .footer-info p {
                    font-size: 14px; 
                    margin: 4px 0;
                    line-height: 1.4;
                    color: var(--text-main);
                }

                /* Telefon numarasını e-posta rengiyle (primary-color) eşitledik */
                .footer-info .phone-number {
                    color: var(--primary-color);
                    font-weight: 600;
                }

                /* Logo boyutunu büyüttük */
                .footer-logo img {
                    max-width: 200px; /* Logoyu buradan dilediğin gibi daha da büyütebilirsin */
                    height: auto;
                }

                .main-footer {
                        margin-top: 100px !important; /* !important ekledik */
                        padding-top: 40px;           /* İç boşluk da ekleyelim ki daha ferah dursun */
            }


        /* --- 11. Scroll To Top --- */
        .scroll-to-top {
            position: fixed;
            bottom: 25px;
            right: -100px;
            background-color: var(--primary-color);
            color: var(--bg-dark);
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 194, 199, 0.3);
            transition: var(--transition);
            z-index: 998;
        }

        .scroll-to-top.show {
            right: 25px;
        }

        .scroll-to-top:hover {
            background-color: var(--primary-hover);
            transform: translateY(-3px);
        }

        

        
        

        
        

        

        

        

        

        

        

        

        

        

        /* Mobil ve Tablet Tasarım Kuralları */
        @media (max-width: 991px) {
            .mobile-nav-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                background-color: var(--bg-lighter);
                padding: 30px 24px 40px;
                transition: var(--transition);
                overflow-y: auto;
                box-shadow: 10px 0 40px rgba(0,0,0,0.6);
                display: block;
                z-index: 1050;
            }

            .nav-menu.open {
                left: 0;
            }

            .menu-list {
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
            }

            .menu-item {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }

            .menu-item > a {
                padding: 16px 0;
                justify-content: space-between;
                font-size: 16px;
            }

            
            

            

            

            

            

            

            /* Mobilde Standart Alt Menü */
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: transparent;
                border: none;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            }

            .menu-item.dropdown-active .dropdown-menu {
                max-height: 500px;
                padding: 0 0 15px 15px;
            }

            .menu-item.dropdown-active > a i {
                transform: rotate(180deg);
            }

            .dropdown-menu li a {
                padding: 10px 0;
                color: rgba(255,255,255,0.6);
            }

            /* Kahraman Bölümü Mobilde */
            .hero-section {
                padding-top: 100px;
                min-height: auto;
                background-attachment: scroll;
            }

            .hero-content {
                align-items: center;
                text-align: center;
            }

            .hero-title {
                width: 100%;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }

            .hero-title span {
                text-align: center;
            }

            .hero-grid {
                gap: 16px;
            }

            /* İki Kolonlu Yapılar */
            .split-grid, .dark-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .dark-row.reverse {
                direction: ltr;
            }

            /* Altılı Galeri */
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            /* CTA Bölümü Mobilde */
            .cta-section {
                min-height: auto;
                background-color: #0a0f14;
                /* Mobil için ayrı banner; dosya yoksa mevcut masaüstü banner büyütülerek kullanılır. */
                background-image:
                    linear-gradient(to bottom, transparent 0, transparent 24%, rgba(10, 15, 20, 0.58) 43%, #0a0f14 76%, #0a0f14 100%),
                    url('../../../images/altbanner-2-mobile.jpg'),
                    url('../../../images/altbanner-2.png');
                background-repeat: no-repeat;
                background-position: center top, center top, 28% top;
                background-size: 100% 100%, 118% auto, 172% auto;
                padding: clamp(128px, 36vw, 170px) 0 30px;
            }

            .cta-container {
                justify-content: center;
                padding: 0 20px;
            }

            .cta-box {
                width: 100%;
                max-width: 480px;
                padding: 28px 4px 0;
                text-align: center;
                align-items: center;
                background: transparent;
                border: 0;
                border-radius: 0;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                transform: translateY(-20px);
            }

            .cta-box h3 {
                font-size: 1.6rem;
                margin-bottom: 22px;
                max-width: 100%;
                line-height: 1.35;
            }

            .cta-box .btn-primary {
                width: 100%;
            }

            /* Footer */
            .main-footer {
                margin-top: 60px !important;
            }

            .footer-container {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center;
            }

            .footer-info {
                text-align: center;
                align-items: center;
            }

            .footer-logo img {
                max-width: 160px;
                margin: 0 auto;
            }

            /* Header küçük ekranlarda daha kompakt */
            .header-container {
                padding: 14px 16px;
            }

            .logo img {
                max-height: 34px;
            }
        }

        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- 12. Küçük Telefonlar İçin İnce Ayarlar (480px ve altı) --- */
        @media (max-width: 480px) {
            .header-container {
                padding: 12px 14px;
            }

            .logo img {
                max-height: 30px;
            }

            .hero-section {
                padding: 90px 16px 60px 16px;
            }

            .hero-content {
                align-items: center;
                text-align: center;
            }

            .hero-title {
                width: 100%;
                margin-bottom: 32px;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }

            .hero-title span {
                text-align: center;
            }

            .hero-card {
                padding: 22px;
            }

            .section-padding {
                padding: 60px 16px;
            }

            .split-content p {
                font-size: 14px;
            }

            .dark-sections {
                padding: 60px 16px;
            }

            .dark-row {
                gap: 28px;
                margin-bottom: 60px;
            }

            .dark-content h3 {
                font-size: 1.5rem;
            }

            .gallery-header h2 {
                font-size: 1.5rem;
            }

            .gallery-item {
                aspect-ratio: 1 / 1;
            }

            .cta-box h3 {
                font-size: 1.5rem;
            }

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

            .main-footer {
                padding: 40px 16px 30px;
            }

            .footer-info p {
                font-size: 13px;
            }

            .divider-item {
                font-size: 18px;
            }

            .scroll-to-top {
                width: 40px;
                height: 40px;
                font-size: 14px;
                bottom: 16px;
            }

            .scroll-to-top.show {
                right: 16px;
            }
        }


/* ==========================================================
   INDEX — Premium Hero Card Interaction
   Scroll reveal ile çakışmadan, kartların eski yükselme hissini
   daha dengeli gölge, glow ve ikon hareketiyle geri getirir.
========================================================== */
.hero-grid {
    perspective: 1200px;
}

.hero-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 230px;
    background:
        linear-gradient(145deg, rgba(20, 31, 39, 0.82), rgba(8, 16, 22, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transform: translateY(0) scale(1);
    transition:
        transform 420ms cubic-bezier(.2, .8, .2, 1),
        border-color 360ms ease,
        box-shadow 420ms cubic-bezier(.2, .8, .2, 1),
        background-color 360ms ease;
    will-change: transform;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -2;
    border-radius: inherit;
    background: radial-gradient(
        420px circle at 20% 0%,
        rgba(32, 213, 195, 0.14),
        transparent 48%
    );
    opacity: 0;
    transition: opacity 400ms ease;
    pointer-events: none;
}

.hero-card::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 2px;
    z-index: -1;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transform: scaleX(.35);
    transform-origin: center;
    transition:
        opacity 320ms ease,
        transform 420ms cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
}

.hero-card:hover {
    transform: translateY(-9px) scale(1.012);
    border-color: rgba(32, 213, 195, 0.58);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.32),
        0 0 28px rgba(32, 213, 195, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-card:hover::before,
.hero-card:hover::after {
    opacity: 1;
}

.hero-card:hover::after {
    transform: scaleX(1);
}

.hero-card .card-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    border: 1px solid rgba(32, 213, 195, 0.18);
    border-radius: 12px;
    background: rgba(32, 213, 195, 0.055);
    box-shadow: inset 0 0 18px rgba(32, 213, 195, 0.035);
    transform: translateY(0) scale(1);
    transition:
        transform 420ms cubic-bezier(.2, .8, .2, 1),
        background-color 320ms ease,
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.hero-card:hover .card-icon {
    transform: translateY(-2px) scale(1.08);
    border-color: rgba(32, 213, 195, 0.46);
    background: rgba(32, 213, 195, 0.11);
    box-shadow:
        0 8px 22px rgba(32, 213, 195, 0.12),
        inset 0 0 18px rgba(32, 213, 195, 0.08);
}

.hero-card .card-icon i {
    transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.hero-card:hover .card-icon i {
    transform: scale(1.05);
}

.hero-card .card-title {
    transition:
        color 320ms ease,
        transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.hero-card:hover .card-title {
    color: #ffffff;
    transform: translateX(3px);
}

.hero-card .card-desc {
    transition: color 320ms ease;
}

.hero-card:hover .card-desc {
    color: rgba(255, 255, 255, 0.82);
}

@media (hover: none), (pointer: coarse) {
    .hero-card:hover {
        transform: none;
        border-color: rgba(255, 255, 255, 0.09);
        box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.025);
    }

    .hero-card:hover::before,
    .hero-card:hover::after {
        opacity: 0;
    }

    .hero-card:hover .card-icon,
    .hero-card:hover .card-title {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-card,
    .hero-card::before,
    .hero-card::after,
    .hero-card .card-icon,
    .hero-card .card-icon i,
    .hero-card .card-title,
    .hero-card .card-desc {
        transition: none !important;
    }
}

@media (max-width: 600px) {
    .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px;
        margin-top: 12px;
    }

    .hero-card {
        min-width: 0;
        min-height: 245px;
        padding: 14px 12px !important;
        border-radius: 7px;
    }

    .hero-card .card-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
        border-radius: 9px;
        font-size: 17px;
    }

    .hero-card .card-title {
        min-height: 32px;
        margin-bottom: 7px;
        font-size: 12.5px;
        line-height: 1.28;
        letter-spacing: 0.15px;
        overflow-wrap: anywhere;
    }

    .hero-card .card-desc {
        font-size: 10.5px;
        line-height: 1.45;
    }

    .gallery-section {
        padding: 34px 12px 54px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px;
    }

    .gallery-item {
        min-width: 0;
        aspect-ratio: 4 / 5 !important;
        border-radius: 5px;
    }

    .gallery-overlay {
        padding: 8px 7px;
        background: linear-gradient(to top, rgba(7, 12, 16, 0.96) 0%, rgba(7, 12, 16, 0.5) 58%, transparent 100%);
    }

    .gallery-title {
        margin-bottom: 0;
        font-size: 10.5px;
        line-height: 1.2;
        letter-spacing: 0;
        overflow-wrap: anywhere;
    }

    .gallery-desc,
    .gallery-link {
        display: none;
    }

    .gallery-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .gallery-item.mobile-description-open .gallery-title {
        display: none;
    }

    .gallery-item.mobile-description-open .gallery-desc {
        display: block;
        margin: 0;
        color: #ffffff;
        font-size: 10.5px;
        font-weight: 600;
        line-height: 1.3;
        overflow-wrap: anywhere;
        animation: mobileGalleryTextIn 180ms ease both;
    }
}

@keyframes mobileGalleryTextIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 360px) {
    .hero-card {
        min-height: 255px;
        padding: 13px 10px !important;
    }

    .hero-card .card-title {
        font-size: 12px;
    }

    .hero-card .card-desc {
        font-size: 10px;
    }

    .gallery-grid {
        gap: 6px;
    }

    .gallery-title {
        font-size: 9.5px;
    }
}

@media (max-width: 768px) {
    .main-footer .footer-container {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .main-footer .footer-logo,
    .main-footer .footer-info {
        width: 100%;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .main-footer .footer-logo img {
        margin: 0 !important;
    }
}

.gallery-section-gap {
    height: 48px;
    background-color: var(--bg-dark);
}

@media (max-width: 600px) {
    .hero-section {
        padding: 84px 14px 38px !important;
    }

    .hero-title {
        margin-bottom: 24px !important;
        font-size: clamp(1.8rem, 8vw, 2.25rem);
        line-height: 1.18;
    }

    .section-padding {
        padding: 42px 16px !important;
    }

    .split-grid,
    .dark-row {
        gap: 24px !important;
    }

    .split-content h2,
    .dark-content h3 {
        margin-bottom: 14px;
        line-height: 1.25;
    }

    .split-content p,
    .dark-content p {
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .split-content p:last-child,
    .dark-content p:last-child {
        margin-bottom: 0;
    }

    .dark-sections {
        padding: 42px 16px !important;
    }

    .dark-row {
        margin-bottom: 42px !important;
    }

    .dark-row:last-child {
        margin-bottom: 0 !important;
    }

    .divider-banner {
        padding: 16px 0;
    }

    .divider-track {
        gap: 20px;
    }

    .divider-line {
        width: 24px;
    }

    .gallery-section-gap {
        display: none;
    }

    .gallery-section {
        padding: 24px 12px 40px !important;
    }

    .gallery-header {
        margin-top: 0;
        padding-bottom: 12px;
    }

    .gallery-header h2 {
        margin: 0;
        font-size: 1.55rem;
        line-height: 1.2;
    }
}
