 
        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
        
        :root {
            --brand-blue: #3b82f6;
            --brand-dark: #030712;
            --brand-accent: #6366f1;
        }

        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background-color: var(--brand-dark);
            color: #f8fafc;
            overflow-x: hidden;
            padding-bottom: 120px;
            -webkit-tap-highlight-color: transparent;
        }

       
        .bg-mesh {
            position: fixed;
            inset: 0;
            z-index: -1;
            background-image: 
                radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.12) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
                radial-gradient(at 50% 100%, rgba(37, 99, 235, 0.08) 0px, transparent 50%);
        }

        .bg-mesh::after {
            content: "";
            position: absolute; inset: 0;
            background-image: url("https://grainy-gradients.vercel.app/noise.svg");
            opacity: 0.12; filter: contrast(150%); pointer-events: none;
        }

       
        .desktop-dropdown {
            position: relative;
            display: inline-block;
        }
        .desktop-dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            min-width: 260px;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.25rem;
            padding: 0.75rem;
            margin-top: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            z-index: 100;
        }
        .desktop-dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 1.5rem;
        }
        .desktop-dropdown:hover .desktop-dropdown-content {
            display: block;
            animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateX(-50%) translateY(15px); }
            to { opacity: 1; transform: translateX(-50%) translateY(0); }
        }


    
       @media (max-width: 1024px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 94%;
        height: 72px;
        background: rgba(15, 23, 42, 0.8);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        z-index: 1001;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .mobile-dock-item {
        color: #94a3b8;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .mobile-dock-item:hover,
    .mobile-dock-item.active {
        color: var(--brand-blue);
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }

    .mobile-dock-item:hover i {
        transform: translateY(-5px);
    }

    .mobile-dock-item i {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .mobile-dock-item span {
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
    }

    /* GÜNCEL TEKLİF BUTONU - Genişletilmiş Versiyon */
    .mobile-teklif-btn {
        background: linear-gradient(135deg, var(--brand-blue), var(--brand-accent));
        color: white !important;
        /* Sabit 62px yerine içeriğe göre genişleyen yapı */
        min-width: 85px; 
        padding: 0 12px;
        height: 65px;
        border-radius: 22px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: -45px;
        border: 4px solid var(--brand-dark);
        box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
        animation: float 3s ease-in-out infinite;
        transition: all 0.3s ease;
        /* Metnin alt satıra geçmesini önler */
        white-space: nowrap;
    }

    .mobile-teklif-btn span {
        font-size: 11px; /* Metin uzun olduğu için biraz küçültüldü */
        font-weight: bold;
        margin-top: 2px;
        line-height: 1;
    }

    .mobile-teklif-btn:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.6);
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
}

        .hero-title { background: linear-gradient(to bottom, #ffffff 30%, #94a3b8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .btn-glow { background: linear-gradient(135deg, var(--brand-blue), var(--brand-accent)); box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.5); transition: all 0.3s ease; }
        .btn-glow:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.7); }

 
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

 
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 2rem;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.slider-image-container {
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

 
.slider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.slider-indicator.active {
    width: 32px;
    background: #3b82f6;  
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

 
.btn-glow {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.5);
}

 
@media (max-width: 768px) {
     
    .snap-start { 
        min-height: 380px !important; 
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }
    
     
    .slider-image-container {
        width: 92% !important;
        height: 200px !important;
    }

    .slider-img {
        max-height: 200px !important;
        border-radius: 1.5rem;
    }

    
    h2 {
        font-size: 1.85rem !important;
        line-height: 1.1 !important;
    }
    
    p {
        font-size: 0.875rem !important;
        margin-bottom: 1.5rem !important;
    }
}
        

