   /* Navbar Stilleri */
    .navbar {
        background-color: var(--header-bg);
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        padding-top: 12px !important;
        padding-bottom: 12px;
        transition: all 0.3s ease;
    }
    
    .navbar-brand {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--primary-color);
    }
    
    .navbar .nav-link {
        font-weight: 500;
        color: var(--text-color);
        padding: 10px 18px;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--secondary-color) !important;
    }
    
    /* Dropdown Menü */
    .dropdown-menu {
        border: none;
        box-shadow: 0 4px 6px rgba(0,0,0,.1);
    }
    
    .dropdown-item:hover {
        background-color: var(--primary-color);
        color: white;
    }
    
    /* Logo */
    .logo-main {
        height: 65px;
        width: auto;
        object-fit: contain;
        transition: all 0.3s ease-in-out;
    }



     /* Tablet ve Mobil için Navbar */
    @media (max-width: 991px) {
        body { 
            padding-top: 80px !important; 
        }
        
        .logo-main { 
            height: 45px !important; 
        }
        
        .navbar-collapse {
            background: #ffffff;
            border-top: 1px solid #eee;
            padding: 20px;
            margin-top: 10px;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        /* Mobil Dropdown Menü */
        .navbar-nav .dropdown-menu {
            position: static;
            float: none;
            width: 100%;
            transform: none;
            border: 1px solid #f1f1f1;
            background: #fdfdfd;
            margin: 10px 0;
            box-shadow: none;
        }

        /* Dil ve Buton Düzeni */
        .d-flex.align-items-center.gap-2 {
            flex-direction: column;
            align-items: stretch;
            margin-top: 20px;
        }

        .btn-lang, 
        .btn-primary.d-none.d-lg-flex {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 14px;
            border-radius: 10px;
        }
    }