        /* --- GENEL AYARLAR --- */
        :root {
            --pars-orange: #ff6b00;
            --pars-blue-dark: #0a254e;
            --pars-blue-card: #112240;
            --pars-blue-btn: #0056b3;
            --text-white: #e6f1ff;
            --text-gray: #8892b0;
            --transition: all 0.3s ease;
        }

        /* 1. Body'yi tam ekran yüksekliğine zorla */
        /* 1. Sayfa yüksekliğini ve akıcılığını ayarla */
        html {
            height: 100%;
            scroll-behavior: smooth;
            box-sizing: border-box;
        }

        /* 2. Body: İçeriği dikey diz ve en az ekran boyu kadar yer kapla */
        body {
            margin: 0;
            padding: 0;
            min-height: 100%;
            /* Sayfa boyu %100 olsun */
            display: flex;
            flex-direction: column;
            /* İçerikleri (header, main, footer) alt alta diz */

            background-color: rgba(243, 242, 234, 0.984);
            font-family: 'Roboto', sans-serif;
            color: var(--text-white);
        }

        /* 3. Ana içerik: Kalan tüm boşluğu doldur (Footer'ı aşağı iter) */
        main {
            flex: 1 0 auto;
        }

        /* 4. Footer: Boyutunu koru, asla küçülme */
        footer {
            flex-shrink: 0;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1% 1%;
            background-color: var(--pars-blue-dark);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--pars-orange);
            position: absolute;
            /* Veya hiçbir şey yazma (static kalsın) */
            width: 98%;
            z-index: 9999 !important;
        }

        .logo-link {
            text-decoration: none;
            display: flex;
            align-items: center;
            color: white;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            background: var(--pars-orange);
            color: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        header .logo-text {
            font-family: 'Expletus Sans', cursive;
            font-size: 1.2rem;
            line-height: 1;
            color: white;
        }

        header .logo-text span {
            color: var(--pars-orange);
        }

        header .logo-text small {
            display: block;
            font-size: 0.6rem;
            color: var(--text-gray);
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
        }

        .nav-list {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-list>li {
            position: relative;
            margin-left: 15px;
        }

        .nav-list>li>a {
            color: var(--text-white);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.80rem;
            font-weight: 500;
            padding: 12px 10px;
            display: block;
            transition: var(--transition);
            position: relative;
        }

        .nav-list>li>a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 10px;
            background-color: var(--pars-orange);
            transition: width 0.3s ease;
        }

        .nav-list>li>a:hover::after,
        .nav-list>li>a.active::after {
            width: calc(100% - 20px);
        }

        /* --- DROPDOWN (DESKTOP) --- */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--pars-blue-card);
            min-width: 240px;
            list-style: none;
            margin: 0;
            padding: 10px 0;
            border-top: 2px solid var(--pars-orange);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: none;
            flex-direction: column;
            border-radius: 0 0 4px 4px;

        }

        .dropdown-menu li a {
            text-transform: uppercase;
            font-size: 0.8rem;
            padding: 12px 20px;
            color: var(--text-white);
            text-decoration: none;
            display: block;
            transition: var(--transition);
        }

        .dropdown-menu li a:hover {
            background-color: rgba(255, 107, 0, 0.1);
            color: var(--pars-orange);
            padding-left: 25px;
        }

        .has-dropdown:hover .dropdown-menu {
            display: flex;
        }

        /* ================================================================
   NAVIGASYON BUTONLARI - ÇİZGİLER İÇERİDE SÜRÜMÜ
   ================================================================ */

        /* 1. TURUNCU BUTON (Stelle Finden / Bewerben) */
        header .main-nav .nav-list .btn-nav-orange {
            background-color: var(--pars-orange) !important;
            color: white !important;
            font-weight: 800 !important;
            border-radius: 4px;
            padding: 8px 16px !important;
            position: relative;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            z-index: 1;
        }

        /* Turuncu Butonun Altındaki LACİVERT Çizgi (İçeride) */
        header .main-nav .nav-list .btn-nav-orange::after {
            content: "";
            position: absolute;
            /* DÜZELTME: -4px yerine +3px yaptık, çizgi kutunun içine girdi */
            bottom: 3px;
            left: 15%;
            width: 70%;
            height: 3px;
            background-color: #103b7b;
            /* Pars Laciverti */
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        /* 2. MAVİ BUTON (Personal Anfragen) */
        header .main-nav .nav-list .btn-nav-blue {
            background-color: var(--pars-blue-btn) !important;
            color: white !important;
            font-weight: 800 !important;
            border-radius: 4px;
            padding: 8px 16px !important;
            position: relative;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            z-index: 1;
        }

        /* Mavi Butonun Altındaki TURUNCU Çizgi (İçeride) */
        header .main-nav .nav-list .btn-nav-blue::after {
            content: "";
            position: absolute;
            /* DÜZELTME: -4px yerine +3px yaptık */
            bottom: 3px;
            left: 15%;
            width: 70%;
            height: 3px;
            background-color: var(--pars-orange);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: center;
        }

        /* --- HOVER VE ACTIVE DURUMLARI (HER İKİ BUTON İÇİN) --- */

        .btn-nav-orange:hover::after,
        .btn-nav-blue:hover::after,
        .btn-nav-orange.active::after,
        .btn-nav-blue.active::after {
            transform: scaleX(1) !important;
        }

        /* Hoverda Buton Parlaması */
        .btn-nav-orange:hover,
        .btn-nav-blue:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(-1px);
        }

        /* --- HAMBURGER --- */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            z-index: 3000;
        }

        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: var(--text-white);
            transition: var(--transition);
            border-radius: 2px;
        }

        /* --- ÖZEL BUTON ALTI ÇİZGİ RENKLERİ --- */

        /* Turuncu Buton (Stelle Finden) -> Alt Çizgi Mavi Olsun */
        .nav-list>li>a.btn-nav-orange::after {
            background-color: #0056b3;
            /* Senin kullandığın mavi tonu */
        }

        /* Mavi Buton (Personal Anfragen) -> Alt Çizgi Turuncu Olsun */
        .nav-list>li>a.btn-nav-blue::after {
            background-color: var(--pars-orange);
            /* Zaten turuncu ama garantiye alalım */
        }

        /* Hover durumunda çizgilerin parlamasını istersen (Opsiyonel) */
        .nav-list>li>a.btn-nav-orange:hover::after {
            background-color: #007bff;
            /* Bir tık daha açık mavi */
        }

        /* --- RESPONSIVE (1300PX) --- */
        @media (max-width: 1300px) {
            .hamburger {
                display: flex;
            }

            .main-nav {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                height: calc(100vh - 60px);
                overflow-y: auto;
                background: rgba(10, 25, 47, 0.98);
                padding: 20px 0 100px;
                border-bottom: 2px solid var(--pars-orange);
                z-index: 2500;
            }

            .main-nav.active {
                display: block;
            }

            .nav-list {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            /* MOBİL DROPDOWN AYARI */
            .dropdown-menu {
                display: none !important;
                /* JS ile açılacak */
                position: static;
                width: 100%;
                background: rgba(255, 255, 255, 0.05);
                box-shadow: none;
                padding: 0;
            }

            .dropdown-menu.show {
                display: block !important;
                margin-top: 10px;
                border-left: 3px solid var(--pars-orange);
            }

            .nav-list>li {
                width: 100%;
                text-align: center;
                margin: 5px 0;
            }

            .nav-list>li>a {
                display: inline-block;
                width: auto;
                font-size: 1.1rem;
            }

            .nav-list>li>a::after {
                display: none;
            }

            .btn-nav-orange,
            .btn-nav-blue {
                min-width: 250px;
                margin-top: 10px;
                text-align: center;
            }

            /* Hamburger Animasyon */
            .hamburger.open span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }

            .hamburger.open span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.open span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
        }