/* NAVBAR - ŞEFFAF BAŞLANGIÇ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.234);
            backdrop-filter: blur(5px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 999;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.377);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* NAVBAR İÇERİK DÜZENİ */
        .nav-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 40px 15px 120px;
            /* Sağa kaydırmak için sol padding artırıldı */
            min-height: 40px;
        }

        .logo img {
            height: 50px;
            display: block;
        }

        /* MENÜ VE HOVER EFEKTİ */
        .menu {
            display: flex;
            gap: 25px;
        }

        .menu a {
            text-decoration: none;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            position: relative;
            transition: 0.3s;
        }

        .menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: #c9a24d;
            transition: 0.3s;
        }

        .menu a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 13px;
            color: #fff;
        }

        .nav-right a {
            text-decoration: none;
            color: #fff;
        }

        .phone {
            font-weight: bold;
        }

        select {
            background: transparent;
            color: #ffffff;
            border: none;
            cursor: pointer;
        }
        option{
            background-color: #0000008b;
        }

        /* DROPDOWN YAPISI */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #00000007;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    top: 100%;
    left: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background-color: #c9a24d;
    color: #fff;
}

/* Hover olduğunda göster */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobil görünümde (hamburger menü açıkken) düzeltme */
@media(max-width: 1000px) {
    .dropdown-content {
        position: static;
        background-color: #222;
        box-shadow: none;
    }
}

        /* HERO SECTION */
        .hero-slider {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            background: #000;
        }
        .hero-logo {
                    width: 100px;
                    /* Genişlik 100px */
                    height: auto;
                    /* Yüksekliği otomatik ayarla */
                    display: block;
                    /* Ortalamak için gerekli */
                    margin: 0 auto 20px auto;
                    /* Üst/Alt boşluk ve yatayda ortalama */

                    /* Geçiş efekti ayarları */
                    transition: all 0.3s ease-in-out;
                    /* Tüm değişimler 0.3s sürer, yumuşak başlar ve biter */
                }

                /* Fareyle Üzerine Gelindiğinde (Hover) Durumu */
                .hero-logo:hover {
                    filter: brightness(1.3);
                    /* Parlaklığı %30 artır (parlama efekti) */
                    transform: scale(1.08);
                    /* Logoyu %8 oranında büyüt */
                }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: #fff;
            width: 90%;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .hero-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #c9a24d;
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 1px solid #c9a24d;
            border-radius: 2px;
        }

        .hero-btn:hover {
            background-color: transparent;
            border-color: #c9a24d;
            transform: scale(1.05);
        }

        /* SCROLLER */
        .photo-scroller {
            position: absolute;
            bottom: 20px;
            width: 100%;
            height: 150px;
            background: rgba(0, 0, 0, 0.4);
            overflow: hidden;
            z-index: 3;
            display: flex;
            align-items: center;
        }

        .scroller-track {
            display: flex;
            gap: 30px;
            animation: scroll 40s linear infinite;
        }

        .scroller-track img {
            height: 120px;
            width: 220px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
        }

        .scroller-track img:hover {
            transform: scale(1.05);
            filter: brightness(1.2);
        }

        @keyframes scroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(calc(-50% - 15px));
            }
        }

        /* MOBİL ÖZEL */
        @media(max-width: 1000px) {
            .nav-container {
                padding: 15px 20px;
                justify-content: flex-start;
            }

            .logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                z-index: 2;
            }

            .hamburger {
                position: absolute;
                right: 20px;
                z-index: 2;
                display: flex;
                flex-direction: column;
                gap: 5px;
                cursor: pointer;
            }

            .hamburger span {
                width: 25px;
                height: 3px;
                background-color: #fff;
                border-radius: 3px;
            }

            .nav-right,
            .menu {
                display: none;
            }

            .menu.active {
                display: flex;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #111;
                flex-direction: column;
            }

            .menu.active a {
                padding: 15px 40px;
                border-bottom: 1px solid #222;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .photo-scroller {
                height: 100px;
            }

            .scroller-track img {
                height: 80px;
                width: 140px;
            }
        }


        /*FOOTER*/

        .premium-footer {
    background: #0b0b0b;
    color: #fff;
    padding: 70px 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* CONTAINER */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* LOGO COL */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* LOGO */
.footer-logo img {
    height: 70px;
    width: auto;
    transition: 0.3s;
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* ALTIN ÇİZGİ */
.footer-logo::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #c9a24d;
    margin: 10px auto;
}

/* TEXT */
.footer-col h4 {
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-col p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.1;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #aaa;
    font-size: 13px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c9a24d;
}

/* SOCIAL */
.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;

    transition: 0.3s;
}

.socials a:hover {
    background: #c9a24d;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201,162,77,0.4);
}

/* ALT */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: #777;
    
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}