::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#c9a24d, #a8842f);
    border-radius: 20px;
}

html{
    overflow-x: hidden;
}

body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #0d0d0d;
            overflow-x: hidden;
        }

        /* 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;
            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;
            }
            .hero-slider {
        height: calc(100vh - 70px); /* navbar yüksekliğine göre ayarla */
    }
        }


        /*popular-product-section stil başlangıcı*/

.section-title {
    background-color: #0d0d0d;
    text-align: center;
    padding-top: 20px; 
    padding-bottom: 2px;
}

.section-title h2 {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em; /* Yazıları birbirinden ayırarak ferahlatır */
    margin-bottom: 20px;
    font-weight: 300; /* Çok kalın değil, zarif bir ağırlık */ 
}

/* Premium vurgu çizgisi */
.section-title h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: #c5a059; /* Hafif altın/bronz rengi, premium hissettirir */
    margin: 15px auto 0;
}
 @media(max-width: 1000px) {
            .section-title h2 {  
             font-size: 2rem;
            }
        }
         
/* SECTION */
.experience-section {
    padding: 60px 20px;
    background: #0d0d0d;
}

/* CONTAINER */
.experience-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.experience-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: 0.4s;
}

/* PREMIUM FRAME */
.experience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.2),
        rgba(201,162,77,0.6),
        rgba(255,255,255,0.2)
    );

    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
    transition: 0.4s;
}

/* HOVER EFFECT */
.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.experience-card:hover::before {
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.4),
        rgba(201,162,77,1),
        rgba(255,255,255,0.4)
    );
}

/* IMAGE */
.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.experience-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

/* TEXT */
.overlay h3 {
    color: #fff;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 1.5rem;
}

.overlay a {
    color: #c9a24d;
    text-decoration: none;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

/* LINK HOVER */
.experience-card:hover .overlay a {
    opacity: 1;
    transform: translateY(0);
}

/* ================= */
/* 📱 RESPONSIVE */
/* ================= */

@media(max-width: 992px) {
    .experience-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .experience-container {
        grid-template-columns: 1fr;
    }

    .experience-card {
        height: 250px;
    }
}
/*stil sonu*/

/*=====LOGO=====*/

.logo-separator {

    padding: 60px 0; /* Bölümler arası nefes alması için boşluk */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    max-width: 150px; /* Logonun boyutunu buradan kontrol edebilirsin */
    transition: transform 0.5s ease;
    cursor: pointer;
}

.premium-logo {
    width: 100%;
    height: auto;
    /* Logonun etrafına çok hafif, premium bir ışıltı (parlama) ekler */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.15));
    transition: filter 0.5s ease;
}

/* Üstüne gelindiğinde hafif bir parlama ve büyüme */
.logo-wrapper:hover {
    transform: scale(1.10);
}

.logo-wrapper:hover .premium-logo {
    filter: drop-shadow(0 0 25px rgb(255, 191, 0));
}

@media(max-width: 576px) {
    .logo-wrapper {
    max-width: 100px; /* Logonun boyutunu buradan kontrol edebilirsin */
}
.logo-separator {

    padding: 40px 0; /* Bölümler arası nefes alması için boşluk */
}
}

/*video*/
.video-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    width: 100%;
    max-width: 900px;
    /* max-height yerine bunu kullanıyoruz, video her zaman 16:9 oranında kalır */
    aspect-ratio: 16 / 9; 
    border-radius: 15px;
    /* Kontrollerin kesilmemesi için overflow'u 'visible' veya 'hidden' (ama height ayarlı) kullanabiliriz */
    overflow: hidden; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative; /* Kontrollerin konumunu sabitlemek için önemli */
}

.video-wrapper video {
    width: 100%;
    height: 100%; /* wrapper'ın boyutuna tam oturmasını sağlar */
    display: block;
    object-fit: cover;
    border-radius: 15px;
}

/*odalar*/
/* 1. Genel Yapı (Masaüstü için varsayılan) */
.home-rooms-section {
            padding: 60px 20px;
            background: var(--premium-gradient);
        }

        .home-rooms-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            /* Masaüstünde 4'lü */
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .mini-room-card {
            background-color: #121212;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .mini-room-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(197, 160, 89, 0.15);
        }

        .mini-room-image {
            height: 240px;
            overflow: hidden;
        }

        .mini-room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.6s;
        }

        .mini-room-card:hover img {
            transform: scale(1.08);
        }

        .mini-room-details {
            padding: 25px 15px;
            text-align: center;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: center;
        }

        .mini-room-details h4 {
            color: #ffffff;
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin: 0 0 10px 0;
        }

        .mini-features {
            color: #c5a059;
            font-size: 0.8rem;
        }

        /* Masaüstünde "Daha Fazla" butonunu tamamen gizle */
        .show-more-wrapper {
            display: none;
        }

        /* 2. MOBİL DÜZENLEME (768px ve altı) */
        @media (max-width: 768px) {
            .home-rooms-grid {
                grid-template-columns: repeat(2, 1fr);
                /* Mobilde 2'li */
                
                gap: 10px;
            }
            .mini-room-details h4 {
            font-size: 0.9rem;
        }
        .mini-features {
            font-size: 0.8rem;
        }

            .mini-room-image {
                height: 160px;
            }

            /* Mobilde 4.den sonrasını gizle */
            .mini-room-card.hidden {
                display: none;
            }

            /* Mobilde butonu göster */
            .show-more-wrapper {
                display: block;
                text-align: center;
                margin-top: 30px;
            }
        }

        .btn-more {
            background: transparent;
            border: 1px solid #c5a059;
            color: #c5a059;
            padding: 12px 30px;
            cursor: pointer;
            text-transform: uppercase;
            transition: 0.3s;
        }

        .btn-more:hover {
            background: #c5a059;
            color: #0d0d0d;
        }


        /*servis*/

        .premium-services {
            padding: 100px 20px;
            background: radial-gradient(circle at top, #111, #0d0d0d);
            color: #fff;
            overflow-x: hidden;
            /* Taşma engeli */
            width: 100%;
            /* Taşma engeli */
        }

        /* 🔥 ÜST METİN BLOĞU */
        .services-intro {
            max-width: 900px;
            margin: 0 auto 40px;
            padding: 25px 30px;
            text-align: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            backdrop-filter: blur(10px);
            position: relative;
        }

        /* Üst ışık çizgisi */
        .services-intro::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            width: 60%;
            height: 1px;
            background: linear-gradient(to right, transparent, #c9a24d, transparent);
            transform: translateX(-50%);
        }

        .services-intro p {
            color: #ccc;
            line-height: 1.8;
            font-size: 14px;
        }

        /* GRID YAPISI */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1050px;
            margin: 0 auto;
        }

        /* KARTLAR */
        .service-card {
            position: relative;
            padding: 20px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: 0.4s;
            overflow: hidden;
        }

        /* Kart üst ışık çizgisi */
        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            width: 60%;
            height: 1px;
            background: linear-gradient(to right, transparent, #c9a24d, transparent);
            transform: translateX(-50%);
        }

        /* Kart hover glow efekti */
        .service-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(201, 162, 77, 0.15), transparent 70%);
            opacity: 0;
            transition: 0.4s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(201, 162, 77, 0.4);
        }

        .service-card:hover::after {
            opacity: 1;
        }

        /* KART İÇERİĞİ VE BAŞLIKLAR */
        .service-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .service-title span {
            font-size: 20px;
        }

        .service-title h3 {
            font-weight: 400;
            margin: 0;
        }

        /* KART LİSTELERİ */
        .service-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-card ul li {
            color: #bbb;
            font-size: 14px;
            margin-bottom: 8px;
            position: relative;
            padding-left: 15px;
        }

        .service-card ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 7px;
            width: 5px;
            height: 5px;
            background: #c9a24d;
            border-radius: 50%;
        }

        /* =========================================
   RESPONSIVE (MOBİL UYUM)
========================================= */
        @media(max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 750px;
            }
        }

        @media(max-width: 576px) {
            .services-grid {
                grid-template-columns: 1fr;
                max-width: 100%;
            }

            /* Mobil cihazlarda iç boşlukları (padding) küçülterek ferahlatıyoruz */
            .premium-services {
                padding: 60px 15px;
            }

            .services-intro {
                padding: 20px 15px;
            }
        }
/*servis stil sonu*/


/*iletisim ve map*/

.location-section {
            padding: 80px 20px;
            background-color: #0d0d0d;
            color: #fff;
        }

        .location-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start; /* Burayı 'center' yerine 'start' yapman yeterli */
}

        .location-info h2 {
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 20px;
            color: #fff;
        }

        .location-info p {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .contact-details p {
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: #c9a24d;
            /* Premium altın rengi vurgu */
        }

        .contact-details strong {
            color: #fff;
        }

        .map-container {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* Responsive Düzenlemeler */
        @media(max-width: 768px) {
            .location-wrapper {
                grid-template-columns: 1fr;
                /* Mobilde alt alta geçer */
                gap: 30px;
            }

            .map-container {
                height: 350px;
            }
        }
        /*iletisim stil sonu*/


        /*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;
    }
    .footer-bottom p {
    margin-bottom: 3em;
}
}


/*REZERVASYON*/
.alt_butonlar {
            position: fixed;
            width: 100%;
            max-width: 400px;
            height: 50px;
            bottom: 0;
            right: 0;
            display: flex;
            border: 1px solid #1F4B3F;
            z-index: 999;
        }

        .alt_butonlar>div {
            width: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid white;
            background-color: #C9A24D;
            /* ArkaPlan Rengi Şuanda Kurumsal Renktedir */
            text-align: center;
            padding: 10px;
        }

        .alt_butonlar>div:last-child {
            border-right: none;
        }

        .alt_butonlar a {
            text-decoration: none;
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            /* Metin ve ikon arasındaki boşluk */
            flex-direction: row-reverse;
            /* İkonu sola, metni sağa almak için */
        }

        .alt_butonlar img {
            height: 24px;
        }

        .alt_butonlar .ara,
        .alt_butonlar .wp {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .alt_butonlar .ara span,
        .alt_butonlar .wp span {
            font-size: 14px;
            color: white;
        }

        @media only screen and (max-width: 600px) {
            .alt_butonlar {
                max-width: 100%;
            }
        }

        /*=====GALERİ=====*/

        /* SECTION */
        .home-gallery-section {
            padding: 60px 20px;
        }

        /* CONTAINER */
        .home-gallery-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }

        /* LEFT */
        .gallery-left {
            flex: 1.2;
            width: 100%;
        }

        /* SLIDER */
        .gallery-slider {
            position: relative;
            width: 100%;
            height: 380px;
            min-height: 260px;
            border-radius: 20px;
            overflow: hidden;
            background: #000;
        }

        /* 🔥 KRİTİK FIX */
        .gallery-track {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* IMAGE */
        .gallery-track img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.7s ease;
        }

        .gallery-track img.active {
            opacity: 1;
        }

        /* NAV */
        .gallery-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 14px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }

        .gallery-btn:hover {
            background: #c9a24d;
            color: #000;
        }

        .prev {
            left: 15px;
        }

        .next {
            right: 15px;
        }

        /* DOTS */
        .gallery-dots {
            position: absolute;
            bottom: 15px;
            width: 100%;
            text-align: center;
        }

        .gallery-dot {
            width: 10px;
            height: 10px;
            margin: 0 5px;
            display: inline-block;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
        }

        .gallery-dot.active {
            background: #c9a24d;
        }

        /* RIGHT */
        .gallery-right {
            flex: 1;
            width: 100%;
            margin-top: 10px;
        }

        /* TITLE */
        .gallery-right h2 {
            color: #fff;
            font-weight: 300;
        }

        .gallery-right h2::after {
            content: "";
            display: block;
            width: 50px;
            height: 2px;
            background: #c9a24d;
            margin-top: 10px;
        }

        /* TEXT */
        .gallery-desc {
            color: #aaa;
            margin: 25px 0;
            line-height: 1.7;
        }

        /* BUTTON */
        .gallery-btn-link {
            display: inline-block;
            padding: 12px 25px;
            border: 1px solid #c9a24d;
            color: #c9a24d;
            text-decoration: none;
            transition: 0.3s;
        }

        .gallery-btn-link:hover {
            background: #c9a24d;
            color: #000;
        }

        /* MOBILE */
        @media(max-width:900px) {
            .home-gallery-container {
                flex-direction: column;
            }

            .gallery-left,
            .gallery-right {
                width: 100%;
            }

            .gallery-slider {
                height: 260px;
                min-height: 260px;
            }
        }


   #hzr-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 99998;
}

#hzr-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 700px;
    max-width: 90%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    display: none;
    z-index: 99999;
    transition: 0.3s;
}

#hzr-popup.show {
    transform: translate(-50%, -50%) scale(1);
}

#hzr-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.hzr-slider {
    position: relative;
}

.hzr-item {
    display: none;
}

.hzr-item.active {
    display: block;
}

.hzr-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hzr-item img {
    width: 100%;
    display: block;
}

.hzr-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
}

.hzr-prev { left: 0; }
.hzr-next { right: 0; }