/* ---- 1. CSS VARIABLES & TOKENS ---- */
:root {
    /* Premium Color Palette */
    --color-primary: #0c2448;
    /* Mavera Navy Blue */
    --color-primary-dark: #081a36;
    --color-secondary: #0c2448;
    /* Keep it navy for core elements */
    --color-accent: #f39200;
    /* Use orange only as an accent */

    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-light: #F9F9F7;
    /* Soft Cream/Beige */
    --color-dark: #1A1A1A;
    --color-dark-deep: #0D0D0D;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing & Sizes */
    --header-height: 90px;
    --container-width: 1400px;

    /* Typography - Haten Inspired */
    --font-haten-serif: 'Instrument Serif', serif;
    --font-haten-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- 2. RESET & BASE STYLES ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- 3. REUSABLE CLASSES & UTILITIES ---- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.text-gold {
    color: var(--color-primary);
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-dark-deep {
    background-color: var(--color-dark-deep);
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* Section Common Styles */
.section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title .subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--color-secondary);
}

.section-title.light-separator h2 {
    color: #fff;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 20px auto 0;
}

.separator.bg-gold {
    background-color: var(--color-primary);
}

/* Scroll Reveal Animations (Disabled for stability) */
.reveal {
    opacity: 1;
    transition: all 0.5s ease;
}

.reveal.active {
    opacity: 1;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* ---- 4. HEADER & NAVIGATION ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
    padding: 25px 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    backdrop-filter: blur(15px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 95%;
    /* Wider container for horizontal-heavy navigation */
    margin: 0 auto;
}

.logo-img {
    height: 95px;
    /* Elite Corporate Scale */
    width: auto;
    display: none;
    /* Controlled by theme/scroll classes */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    object-fit: contain;
}

.header.scrolled .logo-img {
    height: 75px;
    /* Elegant scale down */
}

/* Theme/State Logo Visibility Control */
.header.header-light:not(.scrolled) .logo-light {
    display: block;
}

.header.header-dark:not(.scrolled) .logo-dark {
    display: block;
}

.header.scrolled .logo-dark {
    display: block;
}

.header.scrolled .logo-light {
    display: none !important;
}

/* Force Mavera Navy for Header Light for better visibility */
.header.header-light:not(.scrolled) .nav-link,
.header.header-light:not(.scrolled) .lang-code,
.header.header-light:not(.scrolled) .lang-switcher i,
.header.header-light:not(.scrolled) .logo-text,
.header.header-light:not(.scrolled) .nav-toggle i {
    color: #0c2448 !important;
    /* Parliament Blue */
    font-weight: 600;
}

/* Isolation and Clean Blending */
/* Isolation and Clean Blending */
.header {
    background-color: transparent;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
}

/* Scrolled State */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
    padding: 10px 0 !important;
}

.header.scrolled .nav-link,
.header.scrolled .lang-code,
.header.scrolled .lang-switcher i,
.header.scrolled .nav-toggle i {
    color: #0c2448 !important;
    text-shadow: none !important;
}

/* Light Theme (White text for dark heroes) - Boost Visibility */
.header.header-light:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.header.header-light:not(.scrolled) .nav-link,
.header.header-light:not(.scrolled) .lang-code,
.header.header-light:not(.scrolled) .lang-switcher i,
.header.header-light:not(.scrolled) .nav-toggle i {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.5) !important;
}

/* Dark Theme (Navy logo for white heroes - eg: Dispenser) */
.header.header-dark:not(.scrolled) .logo-img {
    filter: none;
    mix-blend-mode: normal;
}

.header.header-dark:not(.scrolled) .nav-link,
.header.header-dark:not(.scrolled) .lang-code,
.header.header-dark:not(.scrolled) .lang-switcher i,
.header.header-dark:not(.scrolled) .nav-toggle i {
    color: #0c2448;
    /* Mavera Navy */
}

/* Cleanup old Subpage overrides */
.subpage-header {
    background-color: transparent;
    box-shadow: none;
}

.nav-link {
    font-size: 0.78rem;
    /* Optimized for long menus */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    /* Prevent wrapping within single link */
}

.header.scrolled .nav-link {
    color: var(--color-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-list {
    display: flex;
    gap: 1rem;
    /* Tighter gap for senior corporate look */
}

.nav-close,
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-secondary);
}

.header:not(.scrolled) .nav-toggle {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    color: #fff;
}

.header.scrolled .lang-switcher {
    color: var(--color-secondary);
}

.current-lang {
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-dropdown {
    position: absolute;
    top: 150%;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    padding: 10px 15px;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--color-secondary);
    transition: 0.2s;
}

.lang-dropdown li:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
}

.lang-dropdown li.active {
    font-weight: 600;
    color: var(--color-primary);
}

/* ---- 5. HERO SECTION ---- */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* ---- HERO SWIPER JS OVERRIDES ---- */
.hero-swiper,
.dispenser-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-swiper .swiper-slide,
.dispenser-swiper .swiper-slide {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swiper .slide-bg,
.dispenser-swiper .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    /* Reduced scale to minimize cropping */
    transition: transform 10s ease-out;
    /* Slower, smoother zoom */
    z-index: -1;
}

.hero-swiper .swiper-slide-active .slide-bg,
.dispenser-swiper .swiper-slide-active .slide-bg {
    transform: scale(1);
}

/* Slide Content Animations (Haten Style Fade Up) */
.animated-layer {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}

.swiper-slide-active .animated-layer {
    opacity: 1;
    transform: translateY(0);
}

.animated-layer.delay-1 {
    transition-delay: 0.2s;
}

.animated-layer.delay-2 {
    transition-delay: 0.4s;
}

.animated-layer.delay-3 {
    transition-delay: 0.6s;
}

/* Adjust controls */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-primary);
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Top-Bottom balanced gradient for header and button visibility */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Boost legibility */
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.hero-content-inner {
    max-width: 650px;
    padding-left: 20px;
}

.hero-subtitle {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #e0e0e0;
    /* High-contrast soft white */
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 5rem;
    font-family: 'Instrument Serif', 'Playfair Display', serif;
    color: #fff;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-desc {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-down .btn {
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    min-width: 200px;
}

.scroll-down a {
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* ---- 6. KURUMSAL SECTION ---- */
.hakkimizda {
    position: relative;
    overflow: hidden;
    background-color: #f0ede6;
    /* Slightly warmer, deeper cream base */
}

.relative-z {
    position: relative;
    z-index: 10;
}

.dynamic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

/* Luxury Woven / Line Pattern overlay */
.dynamic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.03) 0, rgba(212, 175, 55, 0.03) 1px, transparent 1px, transparent 15px),
        repeating-linear-gradient(-45deg, rgba(212, 175, 55, 0.015) 0, rgba(212, 175, 55, 0.015) 1px, transparent 1px, transparent 15px);
    z-index: 1;
}

/* Subtle Brand Typography Watermark */
.watermark-text {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 28vw;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.12;
    white-space: nowrap;
    z-index: 1;
    user-select: none;
    animation: panWatermark 40s linear infinite;
}

@keyframes panWatermark {
    0% {
        left: 100%;
    }

    100% {
        left: -200%;
    }
}

/* Premium Light Shimmer Sweep */
.light-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.4) 45%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.2) 55%, transparent 80%);
    z-index: 1;
    transform: skewX(-15deg);
    animation: sweepLight 15s infinite;
}

@keyframes sweepLight {

    0%,
    60% {
        left: -150%;
        opacity: 0;
    }

    65% {
        opacity: 1;
    }

    80%,
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Floating Gold Dust Particles */
.gold-dust {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow:
        15vw 20vh var(--color-primary), 35vw 50vh var(--color-primary), 80vw 15vh var(--color-primary),
        90vw 80vh var(--color-primary), 50vw 90vh var(--color-primary), 25vw 80vh var(--color-primary),
        70vw 35vh var(--color-primary), 65vw 60vh var(--color-primary), 10vw 85vh var(--color-primary);
    z-index: 1;
    opacity: 0.4;
}

.layer-1 {
    animation: floatDust 20s linear infinite;
}

.layer-2 {
    box-shadow:
        20vw 10vh var(--color-primary), 45vw 40vh var(--color-primary), 85vw 25vh var(--color-primary),
        95vw 70vh var(--color-primary), 40vw 85vh var(--color-primary), 15vw 75vh var(--color-primary),
        60vw 25vh var(--color-primary), 75vw 50vh var(--color-primary), 5vw 65vh var(--color-primary);
    opacity: 0.2;
    transform: scale(0.6);
    animation: floatDustReverse 30s linear infinite;
}

@keyframes floatDust {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
        opacity: 0.8;
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatDustReverse {
    0% {
        transform: scale(0.6) translateY(0);
    }

    50% {
        transform: scale(0.6) translateY(40px);
        opacity: 0.6;
    }

    100% {
        transform: scale(0.6) translateY(0);
    }
}

/* Organic Liquid Morphing Shapes */
.blob {
    position: absolute;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.8), 0 15px 40px rgba(212, 175, 55, 0.08);
    animation: floatGeometric 22s infinite ease-in-out alternate, morphLiquid 15s infinite ease-in-out;
    z-index: 2;
}

/* Large Gold Serum Drop */
.blob-1 {
    top: -5%;
    left: -2%;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(255, 255, 255, 0.2) 100%);
    animation-delay: 0s, 0s;
}

/* Medium Pearl Drop */
.blob-2 {
    top: 55%;
    right: -8%;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(212, 175, 55, 0.05) 100%);
    animation-duration: 28s, 18s;
    animation-delay: -5s, -3s;
}

/* Small Bronze Drop */
.blob-3 {
    bottom: -5%;
    left: 25%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    animation-duration: 20s, 12s;
    animation-delay: -10s, -7s;
}

@keyframes floatGeometric {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) translateX(20px) rotate(8deg);
    }

    100% {
        transform: translateY(10px) translateX(-10px) rotate(-5deg);
    }
}

@keyframes morphLiquid {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

/* ---- UPDATED ABOUT US REDESIGN (SENIOR DEV EDITION) ---- */
.about-hero-section {
    padding: 120px 0 40px 0;
    /* Significantly reduced to show content below */
    text-align: center;
    background: #fff;
}

.about-hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    /* Reduced from 4rem */
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.about-hero-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    font-weight: 400;
}

/* Breadcrumbs Style */
.breadcrumb-nav {
    margin-bottom: 40px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}

.breadcrumb-nav a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav span {
    margin: 0 10px;
}

.about-container-box {
    background: #fff;
    border-radius: 40px;
    /* More modern rounded */
    padding: 60px 80px;
    /* Reduced vertical padding */
    margin-bottom: 30px;
    /* Reduced margin between sections */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.02);
    /* Extremely subtle */
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-container-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.04);
}

.about-container-box.light-grey {
    background: #fbfbfb;
}

.about-container-box.pale-olive {
    background: #f5f7ed;
    border: none;
}

.about-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.2;
}

.about-text-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.about-rounded-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
    filter: grayscale(10%) contrast(105%);
    transition: filter 0.5s ease;
}

.about-container-box:hover .about-rounded-img {
    filter: grayscale(0%) contrast(100%);
}

.services-mini-list li {
    font-size: 0.95rem;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Team/Signature Section */
.team-signature-section {
    padding: 100px 0;
    text-align: center;
}

.team-signature-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.signature-area {
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .about-row {
        gap: 40px;
    }

    .about-container-box {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .about-row {
        grid-template-columns: 1fr;
    }

    .about-rounded-img {
        height: 400px;
    }
}

/* Premium Corporate Layout Restored & Enhanced */
.hakkimizda .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.about-text p {
    color: #444;
    line-height: 1.8;
}

.img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Subtle Gold Border */
}

.img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.img-placeholder {
    width: 100%;
    padding-top: 130%;
    /* Taller, elegant aspect ratio */
    background-color: #f8f8f8;
    background-position: center;
    background-size: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-wrapper:hover .img-placeholder {
    transform: scale(1.05);
    /* Smooth premium zoom on hover */
}

/* ---- 8. İLETİŞİM SECTION (HATEN STYLE) ---- */
.iletisim {
    padding-bottom: 0;
}

.contact-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-card {
    border-radius: 12px;
    padding: 3rem 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #fff;
}

/* Charcoal Luxury Info Card */
.info-card {
    background-color: #111;
    /* Deep Charcoal */
}

.info-card h3 {
    color: #fff;
}

.info-card .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-card .info-item i {
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
    color: var(--color-primary);
    /* Gold Icons */
}

.info-card .info-item p {
    color: #fff;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Premium White Form Card */
.form-card {
    background-color: #fff;
    color: #333;
}

.form-card h3 {
    color: #111;
}

.form-card h3::after {
    background-color: var(--color-primary);
}

.contact-form-haten .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form-haten .input-group {
    display: flex;
    flex-direction: column;
}

.contact-form-haten .input-group.full-width {
    margin-bottom: 2rem;
}

.contact-form-haten label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-haten input,
.contact-form-haten textarea {
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 12px 15px;
    color: #333;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-haten input:focus,
.contact-form-haten textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.contact-form-haten .phone-input {
    display: flex;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #ddd;
}

.contact-form-haten .phone-input .country-code {
    background: #f3f4f6;
    color: #555;
    padding: 12px 15px;
    font-weight: 500;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.contact-form-haten .phone-input input {
    border: none;
    border-radius: 0;
    flex: 1;
}

.btn-gold {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-gold:hover {
    background-color: #b8860b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1.05rem;
    border-radius: 6px;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    background: #eee;
    margin-top: 4rem;
    /* Spacing between cards and map */
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ccc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    top: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-card h4 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ---- 7. ÜRÜNLER SECTION ---- */
.products-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Styling */
.category-sidebar {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.sidebar-header i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.category-list {
    list-style: none;
}

.category-item {
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.category-item i {
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.category-item:hover {
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--color-primary);
}

.category-item.active {
    background-color: rgba(212, 175, 55, 0.15);
    /* Orange/Peach tinted */
    color: var(--color-primary);
    font-weight: 600;
}

.category-item:hover i,
.category-item.active i {
    opacity: 1;
    transform: translateX(0);
}

/* Product Grid Styling */
.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

@keyframes filterScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.product-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-img {
    overflow: hidden;
    background: radial-gradient(circle, #ffffff 0%, #f3f3f3 100%);
    /* Studio lighting effect */
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-img .img-placeholder.small {
    height: 220px;
    width: 100%;
    background-color: transparent !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
    /* Product depth for white items */
}

.product-item:hover .img-placeholder.small {
    transform: scale(1.08);
}

.product-info {
    padding: 20px 15px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-info h4 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.btn-incele {
    margin-top: auto;
    padding-top: 15px;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-item:hover .btn-incele {
    gap: 12px;
    color: var(--color-secondary);
}

/* ---- 8. CONTACT & FOOTER ---- */
.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 5px;
}

.info-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--color-text-light);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

input:focus,
textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.footer {
    padding: 80px 0 0 0;
}

.footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 60px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
    color: var(--color-primary);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--color-primary);
}

.footer-bottom {
    background-color: #080808;
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ---- 9. RESPONSIVE DESIGN ---- */
@media (max-width: 992px) {

    .hakkimizda .about-grid,
    .contact-cards-container {
        grid-template-columns: 1fr;
    }

    .contact-form-haten .form-row {
        grid-template-columns: 1fr;
    }

    .products-wrapper {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    /* Opportunity Store Mobile Refinement */
    .mobile-centered {
        text-align: center;
        padding-top: 100px !important;
    }

    .title-badge-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .section-desc {
        font-size: 14px !important;
        margin: 15px auto 0 !important;
    }

    .premium-empty-state {
        margin: 20px 15px !important;
        padding: 40px 20px !important;
    }

    .premium-empty-state h2 {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 1150px) {

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        padding: 5rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition-fast);
        z-index: 1001;
    }

    .nav-menu.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-link {
        color: var(--color-secondary);
        font-size: 1.1rem;
    }

    .nav-close {
        position: absolute;
        top: 1.5rem;
        right: 2rem;
    }

    .header {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        padding: 15px 0;
    }

    .header .logo-text,
    .header .nav-toggle,
    .header .lang-switcher {
        color: var(--color-secondary);
    }

    /* Force dark logo visibility for all themes on mobile */
    .header .logo-light {
        display: none !important;
    }

    .header .logo-dark {
        display: block !important;
    }

    .header .logo-img {
        height: 70px !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .form-group.row {
        grid-template-columns: 1fr;
    }

    @media(max-width: 900px) {
        .traceability-grid {
            grid-template-columns: 1fr;
        }
    }
}

/* =========================================================================
   12. BRANDS INFINITE MARQUEE
   ========================================================================= */
.brands-section {
    position: relative;
    z-index: 10;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #faf9f6;
    padding: 2.5rem 0;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.03), inset 0 -5px 15px rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.brand-item {
    padding: 0 4rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
    transition: all 0.4s ease;
    cursor: default;
}

.brand-item:hover {
    opacity: 1;
    color: var(--color-primary);
    transform: scale(1.05);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Add gradient fade masks to edges for a premium blended look */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #faf9f6, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #faf9f6, transparent);
}

@media(max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ---- DISPENSER PAGE SPECIFIC STYLES ---- */
.dispenser-hero {
    min-height: 70vh;
    padding-top: calc(var(--header-height) + 100px);
    padding-bottom: 80px;
    background: linear-gradient(rgba(12, 36, 72, 0.75), rgba(12, 36, 72, 0.75)), url('../images/dispenser/hero-dispenser.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.dispenser-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.dispenser-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.smart-features {
    padding: 80px 0;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    transition: var(--transition-smooth);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-weight: 700;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

.series-section {
    padding: 100px 0;
}

.series-section.alt {
    background: #f9f9f9;
}

.series-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.series-section.alt .series-container {
    flex-direction: row-reverse;
}

.series-img {
    flex: 1;
}

.series-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.series-info {
    flex: 1;
}

.series-info h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.series-info p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.1rem;
}

.series-features {
    list-style: none;
    padding: 0;
}

.series-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #444;
}

.series-features li i {
    color: var(--color-secondary);
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .series-container,
    .series-section.alt .series-container {
        flex-direction: column-reverse;
    }

    .dispenser-hero h1 {
        font-size: 2.5rem;
    }
}

.dispenser-page .pageSliderContent {
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.dispenser-swiper {
    width: 100%;
    height: 100%;
}

.dispenser-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dispenser-swiper .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center; /* New v3 images are already centered */
    transition: transform 10s ease;
}

.dispenser-swiper .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.dispenser-swiper .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 20px;
}

/* --- Haten Premium Reveal Animations --- */
.rexa-reveal {
    opacity: 1;
    /* Default to visible for safety */
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-enabled .rexa-reveal {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(60px);
}

.rexa-reveal.active {
    opacity: 1 !important;
    filter: blur(0px) !important;
    transform: translateY(0px) !important;
}

/* --- Scroll Fix --- */
html.lenis {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis-stopped {
    overflow: hidden;
}

/* --- Dispenser Page Refinements --- */
.dispenser-page .pageDetailContent.textImg {
    background-color: #f5f5f5 !important;
    padding: 100px 0 !important;
    overflow: hidden;
}

.dispenser-page .row.flex-nowrap-md {
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .dispenser-page .row.flex-nowrap-md {
        flex-wrap: nowrap !important;
    }
}

.weta-icerik-tag {
    font-family: 'Instrument Serif', serif !important;
    font-style: italic;
    font-size: 45px !important;
    line-height: 1.1;
    color: var(--color-primary) !important;
    /* Mavera Blue */
    margin-bottom: 30px;
    font-weight: 500 !important;
    display: block;
}

.weta-description p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    color: #333333 !important;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400 !important;
}

.rexa-gorseller.gorsel-right {
    padding-left: 2rem !important;
}

.rg-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    justify-content: flex-end;
}

.rexa-gorseller img {
    border-radius: 5px !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

/* Standard Responsive Grid System (Global) */
.row {
    display: flex !important;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    padding: 0 15px;
    flex: 0 0 auto;
    width: 100%;
}

.col-6 {
    width: 50% !important;
}

@media (min-width: 768px) {
    .col-md-8 {
        width: 66.66666667% !important;
    }

    .col-md-4 {
        width: 33.33333333% !important;
    }

    .col-md-5 {
        width: 41.66666667% !important;
    }

    .col-md-7 {
        width: 58.33333333% !important;
    }

    .col-md-6 {
        width: 50% !important;
    }
}

@media (min-width: 992px) {
    .col-lg-8 {
        width: 66.66666667% !important;
    }

    .col-lg-4 {
        width: 33.33333333% !important;
    }

    .col-lg-5 {
        width: 41.66666667% !important;
    }

    .col-lg-7 {
        width: 58.33333333% !important;
    }

    .col-lg-6 {
        width: 50% !important;
    }
}

/* Flex Utilities Missing from Theme */
.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.text-center {
    text-align: center !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Force Side-by-Side on Desktop to prevent image drop */
@media (min-width: 768px) {
    .flex-nowrap-md {
        flex-wrap: nowrap !important;
    }

    .flex-nowrap-md>.col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .flex-nowrap-md>.col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

.privateIconwrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    margin-top: 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.privateIconwrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #eee;
    transform: translateX(-50%);
}

.privateIconwrapper .item {
    padding: 35px 20px;
    display: flex;
    gap: 20px;
    position: relative;
}

.privateIconwrapper .item:nth-child(1),
.privateIconwrapper .item:nth-child(2) {
    border-bottom: 1px solid #000;
}

.privateIconwrapper .icon {
    width: 45px;
    flex-shrink: 0;
}

.privateIconwrapper .content-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.privateIconwrapper .content-description p {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    margin: 0;
}

.weta-icerik-tag .tag {
    font-size: 1rem;
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #666;
}

.weta-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.privateIconwrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.privateIconwrapper .item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 40px 30px;
    position: relative;
}

/* Horizontal Line */
.privateIconwrapper .item:nth-child(1),
.privateIconwrapper .item:nth-child(2) {
    border-bottom: 1px solid #ddd;
}

/* Vertical Line */
.privateIconwrapper .item:nth-child(odd) {
    border-right: 1px solid #ddd;
}

.privateIconwrapper .icon {
    flex-shrink: 0;
    width: 60px;
}

.privateIconwrapper .icon img {
    width: 100%;
}

.privateIconwrapper .content-title h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.privateIconwrapper .content-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.gallery-section {
    padding: 120px 0;
    background: #fff;
}

.dispenser-illustration-wrapper {
    position: relative;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dispenser-illustration-wrapper img {
    width: 100%;
    max-width: 600px;
    /* Slightly larger */
    height: auto;
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.gallery-wrapper {
    margin-bottom: 50px;
}

.img-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    background: #fff;
}

.img-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-img img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-info {
    padding: 20px;
}

.series-features-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .privateIconwrapper {
        grid-template-columns: 1fr;
    }

    .weta-icerik-tag {
        font-size: 2rem;
    }
}

/* =========================================================================
   14. HERO SLIDER BUTTONS (PREMIUM UPGRADE)
   ========================================================================= */
.btn-premium,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Primary Gold Button */
.btn-premium {
    background-color: var(--color-primary);
    color: #fff !important;
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-premium:hover {
    background-color: #0c2448;
    border-color: #0c2448;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Outline White Button */
.btn-outline {
    background-color: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background-color: #fff;
    color: #0c2448 !important;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.btn-premium span,
.btn-outline span {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .btn-premium,
    .btn-outline {
        width: 100%;
        padding: 14px 25px;
    }
}