﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&display=swap');

/* --- LIGHT THEME VARIABLES (INVERTED) --- */
:root {
    --primary-gold: #D4AF37;
    --primary-gold-dark: #aa8c2c;
    --primary-gold-light: #f3d778;

    /* INVERTED BASE COLORS */
    --dark-bg: #ffffff;
    --dark-card: #ffffff;
    --text-light: #212529;
    /* Dark Text */
    --text-muted: #6c757d;
    /* Light Grey Text */

    /* NAVBAR / FOOTER SPECIFIC (DARK) */
    --nav-bg: #0f0f0f;
    --nav-text: #f8f9fa;
    --footer-bg: #050505;

    --font-main: 'Outfit', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

/* Utilities */
.text-gold {
    color: var(--primary-gold) !important;
}

/* Text Gradient - Keep as is */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--primary-gold-dark), var(--primary-gold), var(--primary-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.bg-gold {
    background-color: var(--primary-gold) !important;
}

/* Override .bg-dark to be Light mostly, except specific areas */
.bg-dark {
    background-color: #f8f9fa !important;
    color: #333 !important;
}

 

/* Force generic white text to dark */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}
.topbar_flex {
    justify-content: flex-end;
    align-content: center;
    align-items: center;
}

/* Dil seçici ana alan */
.lang-selector {
    position: relative;
}

/* Seçili dil */
.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px 6px;
}

    .lang-current img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }

    .lang-current i {
        font-size: 0.6rem;
        opacity: 0.7;
    }

/* Liste */
.lang-list {
    position: absolute;
    right: 0;
    top: 130%;
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 6px 0;
    list-style: none;
    min-width: 90px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.25s ease;
    z-index: 999;
}

/* Hover ile aç */
.lang-selector:hover .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Liste item */
.lang-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
}

    .lang-list a img {
        width: 18px;
        height: 12px;
        border-radius: 2px;
    }

    .lang-list a:hover {
        background: rgba(212, 175, 55, 0.15);
        color: #d4af37;
    }

.lang-current img,
.lang-list img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
}


/* DROPDOWN MENU GENEL */
.navbar .dropdown-menu {
    background: #0f0f0f !important;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* ITEM */
.navbar .dropdown-item {
    position: relative;
    color: #ddd;
    padding: 10px 20px 10px 26px;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    background: transparent;
}

/* SOL ALTIN ÇİZGİ (BAŞLANGIÇTA GİZLİ) */
.navbar .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #d4af37;
    opacity: 0;
    transition: opacity 0.25s ease;
}

/* HOVER */
.navbar .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #d4af37;
    padding-left: 29px; /* 3px sağa kayma */
}

/* HOVER'DA ALTIN ÇİZGİ GÖRÜNSÜN */
.navbar .dropdown-item:hover::before {
    opacity: 1;
}

/* AKTİF (İSTERSEN) */
.navbar .dropdown-item.active {
    color: #d4af37;
}
/* Hover ile dropdown aç */
.navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}





.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 300;
    transition: all 0.5s;
}


.top-bar {
    background: #000 !important;
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.85rem;
    color: #fff !important;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Scroll'da gizle */
body.scrolled .top-bar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

body.scrolled .navbar-brand img {
 
    top: 5px;
}


.top-bar a,
.top-bar span,
.top-bar .text-white {
    color: #fff !important;
}

/* --- NAVBAR (DARK) --- */
.navbar {
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.5rem 0;
    transition: all 0.5s;
}

/* Scroll’da navbar efekt */
body.scrolled .navbar {
    padding: 0.4rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
body.scrolled .site-header {
    position: fixed;
    top: -41px;
}

    body {
        padding-top: 105px; /* top-bar + navbar */
    }

        body.scrolled {
            padding-top: 80px; /* sadece navbar */
        }
    /* Navbar Content - Force Dark Mode Styling */
.navbar-brand img {
    height: 100px;
    /* filter: brightness(0) invert(1); */
    position: absolute;
    top: -20px;
    transition: all 0.5s;
}
    /* White Logo */
    .navbar .nav-link {
        color: rgba(255, 255, 255, 0.8) !important;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin: 0 0.5rem;
        position: relative;
    }

        .navbar .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--primary-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            width: 100%;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: var(--primary-gold) !important;
        }
    /* --- BUTTONS --- */
    .btn-premium {
        background: linear-gradient(45deg, var(--primary-gold-dark), var(--primary-gold));
        border: none;
        color: #000;
        font-weight: 700;
        padding: 12px 30px;
        border-radius: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: all 0.4s ease;
    }

        .btn-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #fff;
            opacity: 0.2;
            z-index: -1;
            transition: width 0.4s ease;
            transform: skewX(-20deg);
            transform-origin: left;
        }

        .btn-premium:hover::before {
            width: 150%;
        }

        .btn-premium:hover {
            color: #000;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

    .btn-outline-premium {
        background: transparent;
        border: 2px solid var(--primary-gold);
        color: var(--primary-gold-dark);
        /* Darker gold for white bg */
        font-weight: 600;
        padding: 10px 28px;
        border-radius: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .btn-outline-premium:hover {
            background: var(--primary-gold);
            color: #000;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
    /* --- HERO SECTION --- */
    /* Keep Hero Dark/Video for impact */
    .hero-slider-section {
        position: relative;
        height: calc(100vh - 117px);
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: -1;
    }

    .hero-content {
        z-index: 1;
    }

    .hero-title {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        color: #fff;
    }
    /* Explicit white */
    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.7);
    }
    /* Explicit light grey */
    .hero-slider-section .text-white {
        color: #fff !important;
    }
    /* Swiper Basic */
    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

        .slide-bg img,
        .slide-bg video {
            /*    width: 100%;
    height: 100%;
    object-fit: cover;*/
        }

        .slide-bg .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
        }

    .swiper-button-next,
    .swiper-button-prev {
        color: var(--primary-gold);
        transition: all 0.3s;
    }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            color: #fff;
            text-shadow: 0 0 10px var(--primary-gold);
        }

    .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.5;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary-gold);
        opacity: 1;
    }

    .productSwiper {
        height: 950px;
        width: 100%;
        padding-bottom: 50px;
    }

        .productSwiper .swiper-slide {
            height: calc((100% - 30px) / 2) !important;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    @media (max-width: 768px) {
        .productSwiper {
            height: 1000px;
        }
    }
    /* --- PRODUCT VITRINE CARDS (LIGHT) --- */
    .product-vitrine-card {
        background: #ffffff !important;
        border: 1px solid #e9ecef;
        border-radius: 0;
        transition: all 0.4s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
    }

        .product-vitrine-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
    /* Fixed Height for Product Images */
    .product-vitrine-img {
        height: 200px !important;
        min-height: 200px;
        max-height: 200px;
        overflow: hidden;
        position: relative;
        border-bottom: 1px solid #eee;
        flex-shrink: 0;
    }

        .product-vitrine-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    /* Product Card Content */
    .product-vitrine-card .p-4 {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: #fff;
    }

    .product-vitrine-card h5 {
        color: #212529 !important;
    }

    .product-vitrine-card .text-muted {
        color: #6c757d !important;
    }
    /* Neon Border on Light - Subtle */
    .product-vitrine-card .neon-border {
        display: none;
        /* Hide neon on white for cleaner look */
    }
    /* --- SECTION PADDING & TITLES --- */
    .section-padding {
        padding: 100px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
    }

        .section-title h2 {
            font-size: 3rem;
            text-transform: uppercase;
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
            color: #000;
        }

            .section-title h2::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 3px;
                background: var(--primary-gold);
            }

        .section-title p {
            color: var(--text-muted);
            margin-top: 15px;
            font-size: 1.1rem;
        }
    /* --- CARDS (LIGHT MODE) --- */
    .card-premium,
    .product-vitrine-card {
        background: #ffffff;
        /* White Card */
        border: 1px solid #e9ecef;
        /* Light Border */
        border-radius: 0;
        padding: 2rem;
        transition: all 0.4s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        /* Subtle shadow */
    }

        .card-premium:hover,
        .product-vitrine-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            /* Lighter shadow */
        }

        .card-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .card-premium:hover::before {
            transform: scaleX(1);
        }

    .card-icon {
        font-size: 3rem;
        color: var(--primary-gold);
        margin-bottom: 1.5rem;
    }
    /* Text colors inside cards */
    .card-premium h3,
    .card-premium p,
    .product-vitrine-card h6 {
        color: #212529 !important;
    }

    .card-premium .text-muted {
        color: #6c757d !important;
    }
    /* --- NEON EFFECTS (Adjusted for Light Mode) --- */
    .neon-box {
        position: relative;
        padding: 3rem;
        background: #ffffff;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        min-height: 468px;
    }

        .neon-box .text-white {
            color: #000 !important;
        }

    .neon-border span {
        position: absolute;
        display: block;
    }

        .neon-border span:nth-child(1) {
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, transparent 85%, var(--primary-gold) 95%, transparent);
            animation: btn-anim1 8s linear infinite;
        }

        .neon-border span:nth-child(2) {
            top: -100%;
            right: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, transparent 85%, var(--primary-gold) 95%, transparent);
            animation: btn-anim2 8s linear infinite;
            animation-delay: 2s;
        }

        .neon-border span:nth-child(3) {
            bottom: 0;
            right: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(270deg, transparent, transparent 85%, var(--primary-gold) 95%, transparent);
            animation: btn-anim3 8s linear infinite;
            animation-delay: 4s;
        }

        .neon-border span:nth-child(4) {
            bottom: -100%;
            left: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(360deg, transparent, transparent 85%, var(--primary-gold) 95%, transparent);
            animation: btn-anim4 8s linear infinite;
            animation-delay: 6s;
        }
    /* Keyframes same as original */
    @keyframes btn-anim1 {
        0% {
            left: -100%;
        }

        50%, 100% {
            left: 100%;
        }
    }

    @keyframes btn-anim2 {
        0% {
            top: -100%;
        }

        50%, 100% {
            top: 100%;
        }
    }

    @keyframes btn-anim3 {
        0% {
            right: -100%;
        }

        50%, 100% {
            right: 100%;
        }
    }

    @keyframes btn-anim4 {
        0% {
            bottom: -100%;
        }

        50%, 100% {
            bottom: 100%;
        }
    }
    /* --- BACKGROUNDS (LIGHT) --- */
    .hologram-bg,
    .parallax-texture-bg {
        background: #f8f9fa !important;
        /* Force light grey backing */
        position: relative;
        border-top: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
    }
        /* Optional subtle grid overlay for tech feel on light */
        .hologram-bg::before,
        .hologram-world-bg::before {
            background-image: radial-gradient(#ced4da 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.3;
        }
    /* --- FOOTER (DARK) --- */
    .footer {
        background: #050505;
        padding-top: 80px;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        color: #fff;
    }

    .footer-widget h4 {
        color: #f8f9fa;
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
        text-transform: uppercase;
        border-left: 3px solid var(--primary-gold);
        padding-left: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #adb5bd;
        transition: all 0.3s;
    }

        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }

    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 30px 0;
        margin-top: 20px;
        color: #6c757d;
    }

    .footer .text-muted {
        color: #adb5bd !important;
    }
    /* =========================
   BRANDS – PREMIUM CORPORATE VERSION
========================= */
    /* BAŞLIK DİVİDER */
    .title-divider {
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        margin-top: 20px;
    }
    /* 5'Lİ GRID SİSTEMİ */
    .col-lg-2-4 {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    @media (min-width: 992px) {
        .col-lg-2-4 {
            flex: 0 0 20%;
            max-width: 20%;
        }
    }
    /* BRAND BOX */
    .brand-box {
        text-align: center;
        background: transparent;
        height: 100%;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .brand-box:hover {
            transform: translateY(-12px);
        }
    /* LOGO KART - ULTRA PREMIUM */
    .brand-logo-wrapper {
        position: relative;
        height: 160px;
        border-radius: 16px;
        padding: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Premium cam efekti */
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100% );
        /* Çoklu border efekti */
        border: 1px solid rgba(255,255,255,0.2);
        box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1) inset, 0 0 20px rgba(207,174,112,0.1) inset;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    /* GLOW EFEKTİ */
    .brand-glow {
        position: absolute;
        inset: -50%;
        background: radial-gradient( circle at center, rgba(207,174,112,0.15) 0%, transparent 70% );
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    /* HOLOGRAFİK ARKA PLAN */
    .brand-logo-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 120deg, transparent 30%, rgba(207,174,112,0.1), rgba(255,255,255,0.1), transparent 70% );
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    /* PREMİUM SHINE EFEKTİ */
    .brand-logo-wrapper::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient( 60deg, transparent 35%, rgba(255,255,255,0.4) 50%, transparent 65% );
        transform: translateX(-100%) rotate(20deg);
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    /* HOVER ANIMASYONLAR */
    .brand-box:hover .brand-logo-wrapper {
        border-color: rgba(207,174,112,0.6);
        box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(207,174,112,0.3) inset, 0 0 30px rgba(207,174,112,0.2) inset, 0 0 40px rgba(207,174,112,0.15);
        transform: scale(1.02);
    }

    .brand-box:hover .brand-glow {
        opacity: 1;
    }

    .brand-box:hover .brand-logo-wrapper::before {
        opacity: 1;
    }

    .brand-box:hover .brand-logo-wrapper::after {
        transform: translateX(100%) rotate(20deg);
    }
    /* LOGO STİLİ */
    .brand-logo-wrapper img {
        position: relative;
        z-index: 2;
        max-width: 75%;
        max-height: 75%;
        object-fit: contain;
        filter: grayscale(100%) contrast(1.2) brightness(1.3);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    /* LOGO HOVER */
    .brand-box:hover img {
        filter: grayscale(0%) contrast(1.3) brightness(1.1) drop-shadow(0 0 20px rgba(207,174,112,0.3));
        transform: scale(1.08);
    }
    /* MARKA ADI */
    .brand-info {
        margin-top: 20px;
    }

    .brand-name {
        margin: 0;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 2px;
        color: rgba(207,174,112,0.8) !important;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

    .brand-box:hover .brand-name {
        color: var(--primary-gold) !important;
        letter-spacing: 3px;
    }

    .marka-bg {
        /* Arka plan resmi ve yumuşak bir geçiş için linear-gradient */
        background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('/Upload/markalar_bg.jpg');
        /* Resmin tüm alanı kaplamasını sağlar */
        background-size: cover;
        /* Resmi merkeze sabitler */
        background-position: center;
        /* Sayfa kaydırılsa bile arka planın sabit kalması (Parallax etkisi) premium bir hava katar */
        background-attachment: fixed;
        background-repeat: no-repeat;
        /* İçeriklerin rahat okunması için yeterli boşluk */
        padding: 80px 0;
        /* Yazı renklerini beyaz yaparak okunabilirliği artırır */
        color: #ffffff;
        /* Göz yormaması için yumuşak bir geçiş efekti */
        transition: all 0.3s ease-in-out;
    }
    /* ALT BİLGİ */
    .text-muted-light {
        color: rgba(255,255,255,0.5) !important;
        font-size: 0.9rem;
    }

    .text-gold {
        color: var(--primary-gold) !important;
    }
    /* MOBİL RESPONSIVE */
    @media (max-width: 991px) {
        .brand-logo-wrapper {
            height: 140px;
        }

        .brand-name {
            font-size: 0.8rem;
            letter-spacing: 1.5px;
        }
    }

    @media (max-width: 767px) {
        .brand-logo-wrapper {
            height: 120px;
            padding: 16px;
        }

        .brand-name {
            font-size: 0.75rem;
            margin-top: 12px;
        }

        .row.g-5 {
            row-gap: 2rem !important;
        }
    }
    /* Image Hover Zoom/Shine Utilities */
    .img-hover-zoom {
        overflow: hidden;
        position: relative;
        border-radius: 0;
    }

        .img-hover-zoom img {
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .img-hover-zoom:hover img {
            transform: scale(1.1);
        }

    .img-shine {
        position: relative;
        overflow: hidden;
        display: block;
    }

        .img-shine::before {
            position: absolute;
            top: 0;
            left: -75%;
            z-index: 2;
            display: block;
            content: '';
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(212, 175, 55, 0.3) 100%);
            transform: skewX(-25deg);
        }

        .img-shine:hover::before {
            animation: shine 0.75s;
        }

    @keyframes shine {
        100% {
            left: 125%;
        }
    }
    /* Contact/Action Box */
    .contact-action-box {
        background: #fff;
        border: 1px solid #eee;
        padding: 3rem;
        text-align: center;
        transition: all 0.3s;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    }

        .contact-action-box h3 {
            color: #000;
        }

        .contact-action-box:hover {
            border-color: var(--primary-gold);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
        }

    .contact-icon-large {
        font-size: 3.5rem;
        color: var(--primary-gold);
        margin-bottom: 1.5rem;
    }
    /* Video Button */
    .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background: rgba(212, 175, 55, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-size: 2rem;
        transition: all 0.3s ease;
        z-index: 5;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }

    .gallery-large:hover .play-icon {
        background: #fff;
        transform: translate(-50%, -50%) scale(1.1);
    }
    /* --- GALLERY GRID (LIGHT) --- */
    .gallery-small {
        height: 250px;
        overflow: hidden;
        position: relative;
        border: 1px solid #eee;
    }

        .gallery-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-small:hover img {
            transform: scale(1.1);
        }

    .gallery-large {
        height: 500px;
        position: relative;
        overflow: hidden;
    }

        .gallery-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    /* --- CONTACT BLOCK (LIGHT) --- */
    .contact-action-box {
        background: #ffffff;
        border: 1px solid #dee2e6;
        padding: 3rem;
        text-align: center;
        transition: all 0.3s;
        height: 100%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

        .contact-action-box h3 {
            color: #212529 !important;
        }
        /* Dark Title */
        .contact-action-box p {
            color: #6c757d !important;
        }

        .contact-action-box:hover {
            border-color: var(--primary-gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

    .contact-icon-large {
        font-size: 3.5rem;
        color: var(--primary-gold);
        margin-bottom: 1.5rem;
    }
    /* --- QUALITY / SERVICES (LIGHT) --- */
    .quality-section {
        background-color: #f8f9fa;
        padding: 5rem 0;
    }

    .quality-step-box {
        text-align: center;
        padding: 2rem;
    }

        .quality-step-box h4 {
            color: #212529 !important;
        }

        .quality-step-box p {
            color: #6c757d !important;
        }

    .quality-icon-wrapper {
        width: 80px;
        height: 80px;
        background: #fff;
        border: 1px solid #dee2e6;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: var(--primary-gold);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    /* --- GLOBAL EXPORT MAP (LIGHT) --- */
    .global-export-section {
        padding: 100px 0;
        background-color: #f8f9fa;
        /* Light BG */
        /* If there's a map image, filter it or use opacity */
        position: relative;
    }

        .global-export-section h2,
        .global-export-section h6 {
            color: #212529 !important;
        }

        .global-export-section p {
            color: #6c757d !important;
        }

        .global-export-section .display-5 {
            color: var(--primary-gold) !important;
        }

        .global-export-section span.text-white {
            color: #6c757d !important;
        }
    /* Invert stats text */
    /* --- BRANDS SECTION (LIGHT) --- */
    /* .brand-box already defined previously but let's reinforce */
    .brand-box .brand-name {
        color: #212529 !important;
    }

    .brand-logo-wrapper {
        background: #fff;
        border: 1px solid #eee;
    }
    /* --- NEWSLETTER STRIP (DARK - KEEPING IT DARK) --- */
    /* This was added at the end of style.css, must make sure it stays Dark */
    .newsletter-strip {
        background: #050505 !important;
        padding: 3rem 0;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        color: #fff !important;
    }

        .newsletter-strip h5,
        .newsletter-strip span,
        .newsletter-strip p {
            color: rgba(255, 255, 255, 0.8);
        }

        .newsletter-strip .text-muted {
            color: #adb5bd !important;
        }

    .newsletter-form .form-control-dark {
        background: #fff !important;
        border: none;
        color: #333;
    }

    .newsletter-form .form-check-label {
        color: #adb5bd;
    }
    /* --- FOOTER (DARK - KEEPING IT DARK) --- */
    /* Footer styles mostly covered, double check overrides */
    .footer {
        background: #050505 !important;
        color: #fff !important;
    }

        .footer h4 {
            color: #f8f9fa !important;
        }
    /* =========================
   FOOTER ÜST KUŞAK
========================= */

    .footerUstKusak {
        background: linear-gradient(180deg, #676767, #121212);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgb(212 175 63);
        padding: 20px 0;
    }

    .footer-ust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        transition: transform .3s ease;
    }

        .footer-ust-item:hover {
            transform: translateY(-5px);
        }

        .footer-ust-item .icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 8px 20px rgba(0,0,0,0.4);
            transition: all .3s ease;
        }

            .footer-ust-item .icon i {
                font-size: 22px;
                color: var(--primary-gold);
            }

        .footer-ust-item h6 {
            margin: 0;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: .5px;
            text-transform: uppercase;
            color: #fff;
        }

        .footer-ust-item p {
            margin: 0;
            font-size: 0.75rem;
            color: #aaa;
        }
        /* Hover vurgu */
        .footer-ust-item:hover .icon {
            background: rgba(255,215,0,0.12);
            box-shadow: 0 12px 30px rgba(255,215,0,0.15), inset 0 0 0 1px rgba(255,215,0,0.35);
        }
    /* =========================
   PARÇA DAĞILIM (SON HAL)
========================= */

    .ParcaDagilim {
        padding: 65px 0;
        background: #f5f5f5;
    }
    /* MARKA BLOĞU (AYRI AYRI KUTU) */
.parca-wrapper {
    background: #dedede75;
    box-shadow: 0px 5px 0rem rgb(212 175 55 / 68%);
    border-radius: 10px;
    
}
    /* SATIR */
    .parca-row {
        min-height: 360px;
    }
    /* =========================
   SOL SİYAH / GÖRSELLİ ALAN
========================= */

    .parca-left-image {
        position: relative;
        height: 100%;
        min-height: 360px;
        background-size: cover;
        background-position: center;
        border-radius: 12px 0 0 12px;
        overflow: hidden;
    }

        .parca-left-image::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient( 180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.9) );
        }

    .parca-left-overlay {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .parca-left-overlay h3 {
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
    /* MODEL LİSTESİ */
    .model-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .model-list li {
            padding: 10px 14px;
            margin-bottom: 8px;
            background: rgba(255,255,255,0.08);
            border-radius: 6px;
            cursor: pointer;
            color: #ddd;
            transition: all .3s ease;
            font-size: 14px;
        }

            .model-list li:hover,
            .model-list li.active {
                background: rgba(255,215,0,0.35);
                color: #000;
            }
    /* ParcaDagilim sol kart - mevcut brand-box yapısına uyumlu */
    .parcaLeftCard {
        border: 0;
        background: transparent;
        height: 100%;
    }

    .parcaLeftBg {
        min-height: 360px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
    }
        /* Siyah overlay */
        .parcaLeftBg::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.92));
        }

    .parcaLeftOverlay {
        position: relative;
        z-index: 2;
        height: 100%;
        padding: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    /* Logo wrapper içindeki img biraz küçülsün */
    .parcaLeftBrand .brand-logo-wrapper {
        background: rgba(255,255,255,.92);
        border-radius: 10px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 82px;
    }

        .parcaLeftBrand .brand-logo-wrapper img {
            max-height: 55px;
            width: auto;
        }
    /* Brand name beyaz */
    .parcaLeftBrand .brand-name {
        color: #fff !important;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 10px 0 0;
        text-transform: uppercase;
    }
    /* =========================
   SAĞ ÜRÜN ALANI
========================= */

    .parca-right {
        padding: 20px;
        padding-right: 15px;
    }
    /* =========================
   PRODUCT CARD
========================= */

    .product-card {
        position: relative;
        border-radius: 5px;
      /*  padding: 14px;*/
        overflow: hidden;
        /* border: 1px solid #adb5bd; */
        transition: transform .3s ease;
        box-shadow: 4px 9px 10px #f0f0f0;
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .09);
    }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0px 5px 1px #ffc10766;
        }

        .product-card img {
            width: 100%;
            height: 220px; /* sabit yükseklik */
            object-fit: cover; /* taşan kısmı kır, oranı koru */
            object-position: center;
            display: block;
        }
        /* SHINE EFEKTİ (KORUNDU) */
        .product-card::after {
            content: "";
            position: absolute;
            top: -150%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient( 60deg, transparent 40%, rgba(255,255,255,0.6), transparent 60% );
            transform: translateX(-100%);
        }

        .product-card:hover::after {
            animation: shine 1s ease forwards;
        }

    @keyframes shine {
        to {
            transform: translateX(100%);
        }
    }

    .product-card2 {
        border: 1px solid #dddddd;
    }

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-top: 0px;
    color: #222;
    height: 40px;
    padding: 10px;
}

.product-oem {
    font-size: 13px;
    line-height: 1;
    color: #999;
    padding: 5px 0px;
    margin-top: 20px;
    padding: 10px;
}

    .product-stok {
        background-color: #e2f2da;
        color: #44782a;
        padding: 3px;
        display: inline-block;
        font-size: 12px;
        position: absolute;
        top: 10px;
        left: 10px;
    }

.urun-btn {
    display: inline-block;
    background: rgba(197, 165, 114, 0.1);
    color: #c5a572;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin:10px;
}

    .urun-btn:hover {
        background: linear-gradient(135deg, #c5a572 0%, #9d8456 100%);
        color: white;
        border-color: #c5a572;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(197, 165, 114, 0.4);
    }

    /* =========================
   OWL CAROUSEL
========================= */

    .parca-owl .item {
        padding: 5px;
    }

    .parca-owl .owl-nav {
        position: absolute;
        right: 0px;
        bottom: -39px;
    }

        .parca-owl .owl-nav button {
            background: rgba(0, 0, 0, 0.6) !important;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            color: #fff !important;
            transition: background .3s ease;
            margin-right: 5px;
        }

            .parca-owl .owl-nav button:hover {
                background: rgba(255,215,0,0.9) !important;
                color: #000 !important;
            }









    .onecikanlar {
        padding: 90px 0;
        background: #fff;
    }
    /* BAŞLIK */
    .onecikan-baslik .onecikan-mini {
        display: inline-block;
        color: #d4a017;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .onecikan-baslik h2 {
        font-weight: 800;
        letter-spacing: 1px;
    }

    .onecikan-baslik p {
        color: #6c757d;
        margin-top: 10px;
    }
    /* KART */
    .onecikan-card {
        border: 1px solid #eee;
        background: #fff;
        position: relative;
        height: 100%;
        transition: all .3s ease;
        overflow: hidden;
    }

        .onecikan-card:hover {
            box-shadow: 0 15px 35px rgba(0,0,0,.08);
            transform: translateY(-6px);
        }
        /* STOKTA */
        .onecikan-card .stokta {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #d4a017;
            color: #000;
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
    /* IMAGE */
    .onecikan-img {
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .onecikan-img img {
            max-width: 85%;
            max-height: 85%;
            transition: transform .4s ease;
        }

    .onecikan-card:hover img {
        transform: scale(1.08);
    }
    /* BODY */
    .onecikan-body {
        text-align: center;
        padding: 25px 20px;
        border-top: 1px solid #eee;
    }

        .onecikan-body h5 {
            font-weight: 700;
            margin-bottom: 5px;
        }

        .onecikan-body span {
            font-size: 14px;
            color: #6c757d;
        }
    /* BUTTON */
    .onecikan-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 30px;
        border: 1px solid #d4a017;
        color: #d4a017;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        transition: .3s;
    }

        .onecikan-btn:hover {
            background: #d4a017;
            color: #000;
        }



.WhatsappBlok1 {
    background: linear-gradient(135deg, #cd9b05 0%, #8B7541 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .WhatsappBlok1::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        border: 60px solid rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .WhatsappBlok1::after {
        content: '';
        position: absolute;
        top: -30%;
        right: -5%;
        width: 350px;
        height: 350px;
        border: 40px solid rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

.WhatsappBlok1-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.WhatsappBlok1-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.WhatsappBlok1-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.7;
}

.WhatsappBlok1-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.WhatsappBlok1-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1rem;
}

    .WhatsappBlok1-feature i {
        width: 24px;
        height: 24px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        flex-shrink: 0;
    }

.WhatsappBlok1-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.WhatsappBlok1-icon-container {
    position: relative;
    margin-bottom: 30px;
}

.WhatsappBlok1-icon-circle {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: WhatsappBlok1Pulse 2s ease-in-out infinite;
}

.WhatsappBlok1-icon-inner {
    width: 140px;
    height: 140px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

    .WhatsappBlok1-icon-inner i {
        font-size: 70px;
        color: #25D366;
    }

@keyframes WhatsappBlok1Pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.WhatsappBlok1-button {
    background-color: #fff;
    color: #25D366;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

    .WhatsappBlok1-button:hover {
        background-color: #25D366;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
    }

    .WhatsappBlok1-button i {
        font-size: 24px;
    }

.WhatsappBlok1-phone-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.WhatsappBlok1-phone {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

    .WhatsappBlok1-phone:hover {
        color: #fff;
        transform: scale(1.05);
    }




.onlineKatalog {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    overflow: hidden;
    animation: katalogGlow 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes katalogGlow {
    0%, 100% {
        background: rgba(212, 175, 55, 0);
        color: #ffffff !important;
        box-shadow: none;
    }

    50% {
        background: rgba(212, 175, 55, 0.5);
        color: #111111 !important;
        box-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
    }
}

.onlineKatalog i {
    animation: iconGlow 2.5s ease-in-out infinite;
    transition: color 0.3s ease;
}

@keyframes iconGlow {
    0%, 100% {
        color: #d4af37;
    }

    50% {
        color: #111111;
    }
}

/* Shine sweep */
.onlineKatalog::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient( 120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100% );
    animation: shineSweep 2.5s ease-in-out infinite;
}

@keyframes shineSweep {
    0% {
        left: -75%;
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    60% {
        left: 125%;
        opacity: 0;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

/* Hover */
.onlineKatalog:hover {
    animation: none;
    background: rgba(212, 175, 55, 0.6) !important;
    color: #111111 !important;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.6);
}

    .onlineKatalog:hover i {
        animation: none;
        color: #111111 !important;
    }

    .onlineKatalog:hover::after {
        animation: none;
        display: none;
    }
@media (max-width: 991px) {
    .WhatsappBlok1-title {
        font-size: 2.5rem;
    }

    .WhatsappBlok1-right {
        margin-top: 50px;
    }

    .WhatsappBlok1-features {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .WhatsappBlok1 {
        padding: 60px 0;
    }

    .WhatsappBlok1-title {
        font-size: 2rem;
        text-align: center;
    }

    .WhatsappBlok1-description {
        text-align: center;
        font-size: 1rem;
    }

    .WhatsappBlok1-badge {
        margin: 0 auto 20px;
    }

    .WhatsappBlok1-icon-circle {
        width: 160px;
        height: 160px;
    }

    .WhatsappBlok1-icon-inner {
        width: 110px;
        height: 110px;
    }

        .WhatsappBlok1-icon-inner i {
            font-size: 55px;
        }

    .WhatsappBlok1-phone {
        font-size: 1.5rem;
    }
}