/* ===== CSS VARIABLES ===== */
:root {
    --primary-yellow: #FABF1E;
    --primary-brown: #5D3A1A;
    --dark-brown: #2D2D2D;
    --text-gray: #666;
    --light-gray: #F5F5F5;
    --bg-text-color: #E8E8E8;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;

    /* Premium Design System */
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 16px 50px rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 8px 30px rgba(250, 191, 30, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-bg-dark: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(0, 0, 0, 0.04);
    --dark-gradient: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 50%, #0f0f0f 100%);
    --premium-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --yellow-gradient: linear-gradient(135deg, var(--primary-yellow) 0%, #e6a800 100%);
}

/* Premium Keyframe Animations */
@keyframes gentleFloat {

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

    50% {
        transform: translateY(-12px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(250, 191, 30, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(250, 191, 30, 0.6);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== I18N FLASH PREVENTION ===== */
/* Hide ONLY main content i18n elements - header/footer always visible */
main [data-i18n],
main [data-i18n-html],
.hero-section [data-i18n],
.hero-section [data-i18n-html],
.products-hero [data-i18n],
.products-hero [data-i18n-html],
.cta-section [data-i18n],
.cta-section [data-i18n-html],
.features [data-i18n],
.features [data-i18n-html],
.about-section [data-i18n],
.about-section [data-i18n-html],
.dealers-section [data-i18n],
.dealers-section [data-i18n-html],
.news-section [data-i18n],
.news-section [data-i18n-html],
.news-detail-section [data-i18n],
.news-detail-section [data-i18n-html],
.product-detail [data-i18n],
.product-detail [data-i18n-html],
.products-section [data-i18n],
.products-section [data-i18n-html] {
    opacity: 0;
    transition: opacity 0.15s ease-in;
}

/* Hero section staggered animations */
.agriplot-hero-badge,
.agriplot-hero-title,
.agriplot-hero-desc,
.agriplot-hero-buttons,
.agriplot-hero-image {
    opacity: 0;
    transform: translateY(25px);
}

html.i18n-ready .agriplot-hero-badge {
    animation: heroElementIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0s;
}

html.i18n-ready .agriplot-hero-title {
    animation: heroElementIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.1s;
}

html.i18n-ready .agriplot-hero-desc {
    animation: heroElementIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
}

html.i18n-ready .agriplot-hero-buttons {
    animation: heroElementIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.3s;
}

html.i18n-ready .agriplot-hero-image {
    animation: heroImageIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.15s;
}

@keyframes heroElementIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Lucide icon placeholder - prevent layout shift */
.agriplot-hero-badge i[data-lucide] {
    width: 16px;
    height: 16px;
    display: inline-block;
}

/* Show when i18n is ready */
html.i18n-ready [data-i18n],
html.i18n-ready [data-i18n-html] {
    opacity: 1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white);
    color: var(--dark-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== HEADER - REFERANS GORSELE UYGUN ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: none;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-weight: 400;
    font-size: 15px;
    color: #333;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    padding-bottom: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: #111;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    border-radius: 999px;
    transition: width 0.25s ease, opacity 0.25s ease;
    opacity: 0;
}

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

/* ===== LANGUAGE DROPDOWN - DESKTOP ===== */
.language-dropdown {
    position: relative;
    z-index: 1000;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.lang-current:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lang-current .lang-flag {
    font-size: 18px;
    line-height: 1;
}

.lang-current .lang-code {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.lang-arrow {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.language-dropdown:hover .lang-arrow {
    opacity: 1;
    transform: rotate(180deg);
}

/* Dropdown Menu */
.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(250, 191, 30, 0.1);
}

.lang-option.active {
    background: rgba(250, 191, 30, 0.15);
}

.lang-option .lang-flag {
    font-size: 20px;
    line-height: 1;
}

.lang-option .lang-name {
    font-size: 14px;
    font-weight: 500;
}

/* Eski bayrak butonları - mobil için korunsun */
.language-selector {
    display: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark-brown);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== HEADER SCROLL EFFECT ===== */
.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: transparent;
}

.header.scrolled .header-container {
    padding: 10px 50px;
}

.header.scrolled .logo img {
    height: 40px;
}

/* ===== HEADER TRANSITIONS ===== */
.header-container {
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   PRODUCT DETAIL PAGE - BIREBIR REFERANS GÖRSELE UYGUN
   ================================================================ */

.product-detail-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
}

/* Product detail sayfasi - Header yok */
.product-detail-page {
    background: #f5f5f5;
}

.product-detail-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 70px;
    padding-bottom: 20px;
    min-height: calc(100vh - 120px);
    overflow: hidden;
    background: #f5f5f5;
}

/* Buyuk Arka Plan Kategori Yazisi - EXCAVATOR tarzi - GORSELIN USTUNDE */
.bg-category-text {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(70px, 12vw, 160px);
    font-weight: 900;
    color: #E8E8E8;
    white-space: nowrap;
    z-index: 1;
    user-select: none;
    letter-spacing: -3px;
    text-transform: uppercase;
    font-family: 'Arial Black', 'Impact', 'Helvetica Neue', sans-serif;
    line-height: 1;
    pointer-events: none;
}

/* Ust Orta Logo/Ikon - Gizli */
.top-center-logo {
    display: none;
}

/* Navigasyon Oklari - Sol ve Sag - INCE CIZGI */
.nav-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 25px 20px;
    transition: var(--transition);
    color: #bbb;
    text-decoration: none;
}

.nav-arrow:hover {
    color: #666;
}

.nav-arrow svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.nav-arrow.prev {
    left: 50px;
}

.nav-arrow.next {
    right: 50px;
}

/* Urun Icerik Duzeni - SOLDA RESIM, SAGDA BILGI */
.product-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 120px;
    position: relative;
    z-index: 2;
    align-items: center;
    gap: 60px;
}

.product-image-container {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-image {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
}

/* Urun Bilgisi - Sag Taraf - BIREBIR REFERANS */
.product-info {
    flex: 1;
    min-width: 400px;
    padding-right: 30px;
    position: relative;
    z-index: 5;
}

.product-model {
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

.product-model::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-yellow);
    z-index: -1;
    transform: translateY(20%);
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
    max-width: 320px;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    min-width: 0;
    flex: 1;
}

.spec-item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.spec-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e6a800 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(250, 191, 30, 0.3);
    transition: all 0.3s ease;
}

.spec-item:hover .spec-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(250, 191, 30, 0.4);
}

.spec-icon svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

.spec-icon i {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 2;
}

.spec-content {
    flex: 1;
}

.spec-label {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.spec-value {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.spec-value .unit {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-left: 0;
}

/* ===== CATALOG DOWNLOAD BANNER - YELLOW HORIZONTAL DESIGN ===== */
.catalog-download-banner {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e6a800 100%);
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(212, 168, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.catalog-download-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.catalog-download-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.catalog-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.catalog-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1a1a1a;
    flex-shrink: 0;
}

.catalog-info {
    flex: 1;
}

.catalog-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.catalog-subtitle {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.7);
    margin: 0;
    line-height: 1.4;
}

.catalog-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #1a1a1a;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.catalog-download-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.catalog-download-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.catalog-download-btn span {
    font-weight: 800;
}

/* ===== KATEGORİ/ÖZELLİK BARI - ÜRÜN ALTI ===== */
.category-bar {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border-top: none;
    padding: 0;
    position: relative;
}

/* Model Slider Bar */
.category-bar.model-slider-bar {
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    overflow: visible;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.category-bar.model-slider-bar .category-icons {
    display: block;
    max-width: none;
    padding: 0;
}

.model-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.model-slider-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
    cursor: grab;
}

.model-slider-wrapper:active {
    cursor: grabbing;
}

.model-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.model-slider-track {
    display: flex;
    gap: 12px;
    padding: 24px 20px;
    width: max-content;
    justify-content: center;
}

.model-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 28px;
    background: #fff;
    border: 2px solid #eaeaea;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 130px;
    position: relative;
    overflow: hidden;
}

.model-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), #e6a800);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.model-item:hover {
    border-color: rgba(250, 191, 30, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.model-item:hover::before {
    transform: scaleX(1);
}

.model-item.active {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-color: transparent;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.model-item.active::before {
    transform: scaleX(1);
}

.model-item.active .model-name {
    color: #fff;
}

.model-item.active .model-spec {
    color: var(--primary-yellow);
    font-weight: 600;
}

.model-name {
    font-size: 15px;
    font-weight: 800;
    color: #333;
    margin-bottom: 6px;
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.model-spec {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    font-weight: 500;
}

/* Model Slider Navigation Arrows */
.model-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: #fff;
    border: 2px solid #eaeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.model-slider-nav:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.model-slider-nav:hover svg {
    stroke: #fff;
}

.model-slider-nav svg {
    width: 18px;
    height: 18px;
    stroke: #333;
    stroke-width: 2.5;
    fill: none;
    transition: stroke 0.3s ease;
}

.model-slider-nav.prev {
    left: 10px;
}

.model-slider-nav.next {
    right: 10px;
}

/* Auto-slide progress indicator - hidden */
.model-progress-bar,
.model-progress-fill {
    display: none;
}

/* Responsive Model Slider */
@media (max-width: 768px) {
    .category-bar.model-slider-bar {
        padding: 0;
        overflow: visible;
    }

    .model-slider-container {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 12px;
        overflow: visible;
    }

    .model-slider-wrapper {
        -webkit-overflow-scrolling: touch;
        flex: 1;
        overflow-x: auto;
        overflow-y: hidden;
        min-width: 0;
        touch-action: pan-x;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .model-slider-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Override category-icons styles for model slider */
    .category-bar.model-slider-bar .category-icons {
        display: block;
        flex-wrap: nowrap;
        overflow: visible;
    }

    .model-slider-nav {
        position: static;
        transform: none;
        flex-shrink: 0;
        display: flex;
        width: 32px;
        height: 32px;
        background: #fff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .model-slider-nav svg {
        width: 12px;
        height: 12px;
    }

    .model-slider-nav.prev {
        order: -1;
    }

    .model-slider-nav.next {
        order: 1;
    }

    .model-slider-track {
        padding: 12px 5px;
        gap: 8px;
    }

    .model-item {
        padding: 10px 14px;
        min-width: 90px;
    }

    .model-name {
        font-size: 12px;
    }

    .model-spec {
        font-size: 10px;
    }
}

.category-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.category-icons {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    opacity: 0.5;
    padding: 28px 30px;
    position: relative;
    pointer-events: auto;
    color: inherit;
}

a.category-item {
    text-decoration: none;
    color: inherit;
}

.category-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.category-item:hover,
.category-item.active {
    opacity: 1;
}

.category-item:hover::after,
.category-item.active::after {
    width: 50px;
}

.category-item.active {
    background: rgba(250, 191, 30, 0.03);
}

.category-item.active .category-icon {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e6a800 100%);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(250, 191, 30, 0.35);
    transform: scale(1.05);
}

.category-item.active .category-icon svg {
    stroke: #fff;
}

.category-item.active .category-name {
    color: #1a1a1a;
    font-weight: 700;
}

.category-icon {
    width: 52px;
    height: 52px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.category-item:hover .category-icon {
    border-color: var(--primary-yellow);
    transform: scale(1.08);
}

.category-item:hover .category-icon svg {
    stroke: var(--primary-yellow);
}

.category-icon svg {
    width: 22px;
    height: 22px;
    stroke: #888;
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s ease;
}

.category-name {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-align: center;
    font-style: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* ================================================================
   PRODUCT DETAILS EXTENDED - DETAYLI BİLGİLER
   ================================================================ */

.product-details-extended {
    background: linear-gradient(180deg, #f5f5f5 0%, #fff 100%);
    padding: 0;
}

.details-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 50px 60px;
}

.details-section {
    margin-bottom: 45px;
}

.details-section:last-child {
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5px;
}

.details-section .section-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    letter-spacing: -0.5px;
}

.details-section .section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    border-radius: 2px;
}

.details-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
}

/* Models Table - First Section */
.models-section {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 35px rgba(0, 0, 0, 0.08);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.models-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.models-table thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.models-table th {
    padding: 18px 24px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.models-table td {
    padding: 16px 24px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.models-table tbody tr.even {
    background: #fafafa;
}

.models-table tbody tr:hover {
    background: #fff8e6;
}

.models-table tbody tr:last-child td {
    border-bottom: none;
}

.models-table td strong {
    color: #1a1a1a;
    font-weight: 700;
}

.power-badge {
    background: var(--primary-yellow);
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

/* Models Table - Mobile Horizontal Scroll with Sticky First Column */
@media (max-width: 768px) {
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        border: 1px solid #e8e8e8;
    }

    .models-table {
        min-width: 550px;
    }

    .models-table th,
    .models-table td {
        padding: 12px 14px;
        font-size: 12px;
        white-space: nowrap;
    }

    .models-table th:first-child,
    .models-table td:first-child {
        position: sticky;
        left: 0;
        z-index: 1;
        min-width: 90px;
        box-shadow: 2px 0 4px rgba(0,0,0,0.06);
    }

    .models-table thead th:first-child {
        background: #1a1a1a;
    }

    .models-table tbody tr.even td:first-child {
        background: #fafafa;
    }

    .models-table tbody tr.odd td:first-child {
        background: #fff;
    }

    .power-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .models-table th,
    .models-table td {
        padding: 10px 12px;
        font-size: 11px;
    }

    .models-table th:first-child,
    .models-table td:first-child {
        min-width: 80px;
    }
}

/* ===== VIDEO SECTION - COMPACT & AESTHETIC ===== */
.details-section.video-section {
    background: #fff;
    padding: 0;
    border-radius: 24px;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.video-container {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.video-info-panel {
    flex: 0 0 320px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-info-panel::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(250, 191, 30, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(250, 191, 30, 0.1);
    border: 1px solid rgba(250, 191, 30, 0.25);
    border-radius: 30px;
    margin-bottom: 20px;
    width: fit-content;
}

.video-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--primary-yellow);
    stroke: none;
}

.video-badge span {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.video-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.6;
}

.video-play-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-play-hint svg {
    width: 36px;
    height: 36px;
    opacity: 0.9;
    color: var(--primary-yellow);
}

.video-play-hint svg circle {
    stroke: var(--primary-yellow);
}

.video-play-hint svg polygon {
    fill: var(--primary-yellow);
}

.video-play-hint span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.video-player {
    flex: 1;
    position: relative;
    background: #000;
}

.video-frame-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    background: #000;
}

.video-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Section Responsive */
@media (max-width: 992px) {
    .video-container {
        flex-direction: column;
    }

    .video-info-panel {
        flex: 0 0 auto;
        padding: 40px 35px;
    }

    .video-frame-container {
        min-height: 0;
        padding-bottom: 56.25%;
    }
}

@media (max-width: 600px) {
    .details-section.video-section {
        border-radius: 18px;
        margin-left: -10px;
        margin-right: -10px;
    }

    .video-info-panel {
        padding: 30px 25px;
    }

    .video-title {
        font-size: 22px;
    }

    .video-play-hint {
        display: none;
    }
}

/* Technical Grid with Icons */
.technical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-card {
    background: linear-gradient(135deg, #fff 0%, #fcfcfc 100%);
    padding: 24px 28px;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-yellow);
}

.tech-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(145deg, var(--primary-yellow) 0%, #d4a824 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 168, 36, 0.35);
    transition: var(--transition);
}

.tech-card:hover .tech-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(212, 168, 36, 0.5);
}

.tech-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    stroke-width: 1.5;
    fill: none;
}

.tech-icon i {
    width: 26px;
    height: 26px;
    color: #fff;
    stroke: #fff;
}

.tech-content {
    flex: 1;
}

.tech-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.tech-value {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-weight: 500;
}

/* Features Section - Premium Bento Grid */
.details-section.features-section {
    background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 50px 50px;
    border-radius: 28px;
    margin-left: -30px;
    margin-right: -30px;
    position: relative;
    overflow: hidden;
}

.features-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-size: clamp(100px, 18vw, 280px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    z-index: 1;
    letter-spacing: 15px;
    text-transform: uppercase;
    font-family: 'Arial Black', 'Impact', sans-serif;
    pointer-events: none;
    user-select: none;
}

.features-header-bar {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(212, 168, 36, 0.15) 0%, rgba(212, 168, 36, 0.05) 100%);
    border: 1px solid rgba(212, 168, 36, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
}

.features-badge svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--primary-yellow);
    stroke-width: 1.5;
}

.features-badge span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.features-main-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.features-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Bento Grid Layout */
.features-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    position: relative;
    z-index: 2;
}

/* Hero Feature Card - Sol taraf büyük kart */
.feature-hero-card {
    background: linear-gradient(145deg, #1e1e1e 0%, #151515 100%);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-hero-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 36, 0.3);
}

.feature-hero-card:hover .feature-hero-glow {
    opacity: 1;
}

.feature-hero-card:hover .feature-hero-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.feature-hero-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 168, 36, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #b8941f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 15px 40px rgba(212, 168, 36, 0.3);
}

.feature-hero-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #0d0d0d;
    stroke-width: 2;
    transition: transform 0.4s ease;
}

.feature-hero-icon i {
    width: 40px;
    height: 40px;
    color: #0d0d0d;
    stroke: #0d0d0d;
    stroke-width: 2;
    transition: transform 0.4s ease;
}

.feature-hero-card:hover .feature-hero-icon i {
    transform: scale(1.1) rotate(5deg);
}

.feature-hero-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

.feature-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-hero-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.feature-hero-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-hero-card:hover .feature-hero-accent {
    opacity: 1;
}

/* Sağ taraf grid kartları */
.features-grid-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-grid-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.feature-grid-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(212, 168, 36, 0.2);
    transform: translateY(-5px);
}

.feature-grid-card:hover .feature-card-icon {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #b8941f 100%);
    box-shadow: 0 8px 25px rgba(212, 168, 36, 0.25);
}

.feature-grid-card:hover .feature-card-icon svg {
    stroke: #0d0d0d;
}

.feature-grid-card:hover .feature-card-number {
    color: var(--primary-yellow);
}

.feature-grid-card:hover .feature-card-line {
    width: 60px;
    background: var(--primary-yellow);
}

.feature-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    transition: color 0.3s ease;
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.feature-card-icon i {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.6);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.feature-grid-card:hover .feature-card-icon i {
    color: #0d0d0d;
    stroke: #0d0d0d;
}

.feature-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.feature-card-line {
    position: absolute;
    bottom: 0;
    left: 28px;
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive - Bento Grid */
@media (max-width: 992px) {
    .features-bento-grid {
        grid-template-columns: 1fr;
    }

    .feature-hero-card {
        min-height: 300px;
    }

    .features-grid-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .details-section.features-section {
        padding: 50px 24px;
        margin-left: -10px;
        margin-right: -10px;
        border-radius: 20px;
    }

    .features-main-title {
        font-size: 32px;
    }

    .features-grid-right {
        grid-template-columns: 1fr;
    }

    .feature-hero-card {
        padding: 30px;
        min-height: 280px;
    }

    .feature-grid-card {
        padding: 24px;
    }
}

/* Rollers Section - Yeni Tasarım */
.details-section.rollers-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    padding: 30px 50px 50px;
    border-radius: 24px;
    margin-left: -30px;
    margin-right: -30px;
    position: relative;
    overflow: hidden;
}

.details-section.rollers-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.rollers-container {
    position: relative;
    z-index: 2;
}

.rollers-header {
    text-align: center;
    margin-bottom: 30px;
}

.rollers-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 8px 20px;
    background: rgba(212, 168, 36, 0.1);
    border-radius: 30px;
}

.rollers-title {
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.rollers-subtitle {
    font-size: 16px;
    color: #888;
    margin: 0;
}

.rollers-showcase {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.roller-item {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 36px 42px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.roller-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-yellow), #d4a824);
    opacity: 0;
    transition: var(--transition);
}

.roller-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 168, 36, 0.15);
}

.roller-item:hover::before {
    opacity: 1;
}

.roller-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 140px;
}

.roller-icon-wrapper {
    width: 76px;
    height: 76px;
    background: linear-gradient(145deg, var(--primary-yellow) 0%, #d4a824 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 168, 36, 0.35);
    transition: var(--transition);
}

.roller-item:hover .roller-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(212, 168, 36, 0.5);
}

.roller-icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    stroke-width: 1.5;
    fill: none;
}

.roller-icon-wrapper i {
    width: 32px;
    height: 32px;
    color: #fff;
    stroke: #fff;
}

.roller-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    font-family: 'Arial Black', sans-serif;
    line-height: 1;
    transition: var(--transition);
}

.roller-item:hover .roller-number {
    color: rgba(212, 168, 36, 0.15);
}

.roller-info {
    flex: 1;
}

.roller-name {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.roller-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== GALERİ BÖLÜMÜ ===== */
.details-section.gallery-section {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 168, 36, 0.85), rgba(26, 26, 26, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    width: 48px;
    height: 48px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay svg {
    transform: scale(1);
}

/* Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-lightbox-close:hover {
    background: var(--primary-yellow);
}

.gallery-lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-lightbox-prev {
    left: 30px;
}

.gallery-lightbox-next {
    right: 30px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: var(--primary-yellow);
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev svg,
.gallery-lightbox-next svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* ===== DÖKÜMANLAR BÖLÜMÜ ===== */
.details-section.documents-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    padding: 40px;
    border-radius: 20px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.document-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 168, 36, 0.3);
}

.document-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.document-icon.pdf {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.document-icon.doc {
    background: linear-gradient(135deg, #2b579a, #1e4178);
}

.document-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
}

.document-icon svg text {
    font-weight: 700;
    font-size: 6px;
}

.document-info {
    flex: 1;
    min-width: 0;
}

.document-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.document-action {
    font-size: 13px;
    color: var(--primary-yellow);
    font-weight: 500;
}

.document-download-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 168, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.document-card:hover .document-download-icon {
    background: var(--primary-yellow);
}

.document-download-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-yellow);
    stroke-width: 2;
    fill: none;
    transition: stroke 0.3s ease;
}

.document-card:hover .document-download-icon svg {
    stroke: #fff;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    padding: 26px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-yellow), #d4a824);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 168, 36, 0.2);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e6a800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 168, 36, 0.35);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 168, 36, 0.5);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 1.8;
    fill: none;
}

.feature-number {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.feature-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    font-weight: 500;
}

/* Rollers Grid with Icons */
.rollers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.roller-card {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    padding: 36px 28px;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.roller-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), #e6a800);
    opacity: 0;
    transition: var(--transition);
}

.roller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 168, 36, 0.3);
}

.roller-card:hover::before {
    opacity: 1;
}

.roller-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, var(--primary-yellow) 0%, #d4a824 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 35px rgba(212, 168, 36, 0.4);
    transition: var(--transition);
}

.roller-card:hover .roller-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 12px 40px rgba(212, 168, 36, 0.55);
}

.roller-icon svg {
    width: 36px;
    height: 36px;
    stroke: #fff;
    stroke-width: 1.5;
    fill: none;
}

.roller-type {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.roller-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive for Details */
@media (max-width: 992px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-header {
        position: static;
        text-align: center;
    }

    .features-title {
        font-size: 32px;
    }

    .features-bg-text {
        font-size: clamp(60px, 12vw, 120px);
    }

    .technical-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rollers-title {
        font-size: 30px;
    }

    .rollers-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .roller-item {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }

    .roller-visual {
        flex-direction: column;
        min-width: auto;
    }

    .roller-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .details-container {
        padding: 30px 16px;
    }

    .details-section.features-section {
        padding: 35px 20px;
    }

    .details-section.rollers-section {
        padding: 20px 16px 40px;
    }

    .rollers-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .features-title {
        font-size: 28px;
    }

    .features-label {
        font-size: 10px;
        padding: 6px 12px;
    }

    .feature-item {
        padding: 20px 0;
        gap: 16px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .technical-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .tech-card {
        padding: 18px 14px;
        gap: 14px;
        flex-direction: column;
        text-align: center;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin: 0 auto;
    }

    .tech-icon svg,
    .tech-icon i {
        width: 24px;
        height: 24px;
    }

    .tech-label {
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .tech-value {
        font-size: 13px;
        line-height: 1.5;
    }

    .rollers-title {
        font-size: 26px;
    }

    .roller-item {
        padding: 16px 12px;
        gap: 10px;
    }

    .roller-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .roller-icon-wrapper svg,
    .roller-icon-wrapper i {
        width: 24px;
        height: 24px;
    }

    .roller-name {
        font-size: 15px;
        line-height: 1.3;
    }

    .roller-description {
        font-size: 12px;
        line-height: 1.4;
    }

    .roller-number {
        font-size: 28px;
    }

    .models-section {
        padding: 25px;
    }

    .models-table th,
    .models-table td {
        padding: 12px 14px;
        font-size: 12px;
    }

    .tech-card {
        flex-direction: column;
        text-align: center;
    }

    .tech-icon {
        margin: 0 auto;
    }
}

/* ================================================================
   ÜRÜNLER SAYFASI
   ================================================================ */

.products-section {
    padding: 110px 40px 80px;
    min-height: 100vh;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    height: 220px;
    background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.product-card-image::before {
    content: attr(data-category);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.025);
    white-space: nowrap;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
}

.product-card-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.product-card:hover .product-card-image img {
    transform: scale(1.03);
}

.product-card-info {
    padding: 22px;
}

.product-card-category {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.product-card-model {
    font-size: 13px;
    color: #999;
}

/* ================================================================
   ANASAYFA - SEKSİ LANDING PAGE
   ================================================================ */

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.hero-slider {
    position: relative;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide .bg-category-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 18vw, 280px);
    font-weight: 900;
    color: #ECECEC;
    white-space: nowrap;
    z-index: 1;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: 'Arial Black', 'Helvetica Neue', Impact, sans-serif;
}

.hero-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
    align-items: center;
    gap: 40px;
    padding-top: 70px;
}

.hero-image-container {
    flex: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.12));
    animation: gentleFloat 5s ease-in-out infinite;
}

@keyframes gentleFloat {

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

    50% {
        transform: translateY(-12px);
    }
}

.hero-info {
    flex: 0.6;
}

.hero-model {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 25px;
}

.hero-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-yellow);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 168, 36, 0.25);
}

.hero-cta:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hero-cta svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Hero Navigasyon Okları */
.hero-slider .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    color: #bbb;
}

.hero-slider .nav-arrow:hover {
    color: #666;
}

.hero-slider .nav-arrow.prev {
    left: 30px;
}

.hero-slider .nav-arrow.next {
    right: 30px;
}

/* Slider Noktaları */
.slider-dots {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover {
    background: #999;
}

.slider-dot.active {
    background: var(--primary-yellow);
    transform: scale(1.4);
}

/* Hero Kategori Bar */
.hero-section .category-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
}

/* ================================================================
   ÖZELLİKLER BÖLÜMÜ
   ================================================================ */

.features-section {
    padding: 90px 40px;
    background: #fafafa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e0b020 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 168, 36, 0.2);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* ================================================================
   CTA BÖLÜMÜ - PREMIUM
   ================================================================ */

.cta-section-premium {
    padding: 100px 40px;
    background: var(--dark-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(250, 191, 30, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 70% 30%, rgba(250, 191, 30, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.cta-floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(250, 191, 30, 0.15) 0%, transparent 70%);
    animation: gentleFloat 10s ease-in-out infinite;
}

.cta-shape-1 {
    width: 350px;
    height: 350px;
    top: -120px;
    right: 8%;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 12%;
    animation-delay: 5s;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section-premium .cta-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-section-premium .cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Premium CTA Button */
.cta-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--yellow-gradient);
    color: #1a1a1a;
    padding: 22px 52px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s var(--premium-timing);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.cta-btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.6s;
}

.cta-btn-premium:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(250, 191, 30, 0.55);
}

.cta-btn-premium:hover::before {
    left: 100%;
}

.cta-btn-premium svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.cta-btn-premium:hover svg {
    transform: translateX(6px);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    color: var(--white);
    padding: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 60px;
}

.footer-brand {
    flex: 0 0 250px;
}

.footer-logo {
    height: 45px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a,
.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    text-decoration: none;
    margin: 0;
}

.footer-col a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
        padding: 50px 0 40px;
    }

    .footer-brand {
        flex: 0 0 auto;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        padding: 0 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }
}

/* ===== LOADING ===== */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #eee;
    border-top-color: var(--primary-yellow);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {

    .product-content,
    .hero-content {
        padding: 20px 50px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .product-content,
    .hero-content {
        flex-direction: column;
        padding: 25px 30px;
        text-align: center;
        gap: 30px;
    }

    .product-info,
    .hero-info {
        padding: 0;
        min-width: auto;
        width: 100%;
    }

    .product-description {
        max-width: 100%;
        text-align: center;
    }

    .product-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-specs {
        align-items: center;
    }

    .spec-item {
        text-align: left;
    }

    .bg-category-text,
    .hero-slide .bg-category-text {
        font-size: clamp(50px, 14vw, 140px);
    }

    .category-icons {
        gap: 0;
        flex-wrap: wrap;
    }

    .category-item {
        padding: 22px 28px;
    }

    .nav-arrow.prev {
        left: 15px;
    }

    .nav-arrow.next {
        right: 15px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 20px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .language-selector {
        margin: 0;
        justify-content: center;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .category-item {
        padding: 20px 20px;
    }

    .category-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 10px;
    }

    .category-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Catalog Banner Mobile */
    .catalog-download-banner {
        padding: 20px;
        margin-bottom: 24px;
    }

    .catalog-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .catalog-banner-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .catalog-badge {
        padding: 6px 12px;
        font-size: 10px;
    }

    .catalog-title {
        font-size: 16px;
    }

    .catalog-subtitle {
        font-size: 13px;
    }

    .catalog-download-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .category-name {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .slider-dots {
        bottom: 115px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .product-image,
    .hero-image {
        max-height: 280px;
    }
}

@media (max-width: 480px) {

    .bg-category-text,
    .hero-slide .bg-category-text {
        font-size: 45px;
        letter-spacing: 5px;
    }

    .product-model,
    .hero-model {
        font-size: 24px;
    }

    .spec-value {
        font-size: 18px;
    }

    .category-icons {
        gap: 0;
        justify-content: space-around;
    }

    .category-item {
        padding: 18px 12px;
        flex: 1;
        min-width: 0;
    }

    .category-item::after {
        width: 0 !important;
    }

    .category-item.active::after {
        width: 30px !important;
    }

    .category-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
    }

    .category-icon svg {
        width: 18px;
        height: 18px;
    }

    .category-name {
        font-size: 9px;
        letter-spacing: 0.8px;
    }
}

/* ===== PRODUCTS PAGE REDESIGN ===== */

/* Hero Section */
.products-hero {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
    margin-top: 70px;
}

.products-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(250, 191, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(250, 191, 30, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.products-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.products-hero-badge {
    display: none;
}

.products-hero-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.products-hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-top: 8px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Filter Section */
.products-filter-section {
    background: #fff;
    position: sticky;
    top: 70px;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.products-filter-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Search Box - Desktop */
.products-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 280px;
    min-width: 200px;
    padding: 10px 16px;
    background: #fafafa;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
    order: 2;
    flex-shrink: 0;
}

.products-search-box:hover {
    border-color: #d0d0d0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.products-search-box:focus-within {
    border-color: var(--primary-yellow);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(250, 191, 30, 0.12);
}

.products-search-box>svg {
    width: 18px;
    height: 18px;
    color: #999;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.products-search-box:focus-within>svg {
    color: var(--primary-yellow);
}

.products-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background: transparent;
    font-weight: 400;
}

.products-search-box input::placeholder {
    color: #aaa;
    font-weight: 400;
}

.search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: none;
    background: #e8e8e8;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-clear:hover {
    background: #e0e0e0;
}

.search-clear svg {
    width: 12px;
    height: 12px;
    color: #666;
}

.products-filter-container {
    flex: 1;
    position: relative;
    order: 1;
    min-width: 0;
}

.category-filters {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.category-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #f8f8f8;
    border: 1px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.category-filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-yellow);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 0;
}

.category-filter-btn>* {
    position: relative;
    z-index: 1;
}

.category-filter-btn svg,
.category-filter-btn i {
    width: 15px;
    height: 15px;
    stroke-width: 1.8;
    transition: all 0.2s ease;
    color: #888;
}

.category-filter-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.category-filter-btn:hover svg,
.category-filter-btn:hover i {
    color: #555;
}

.category-filter-btn:active {
    transform: scale(0.98);
}

.category-filter-btn.active {
    background: transparent;
    border-color: transparent;
    color: #1a1a1a;
}

.category-filter-btn.active::before {
    opacity: 1;
}

.category-filter-btn.active svg,
.category-filter-btn.active i {
    color: #1a1a1a;
    stroke-width: 2;
}

/* Prevent text jumping by using pseudo-element to reserve bold space */
.category-filter-btn span {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.category-filter-btn span::after {
    content: attr(data-text);
    height: 0;
    visibility: hidden;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    font-weight: 600;
}

.category-filter-btn.active span {
    font-weight: 600;
}

/* Category Filter Navigation Arrows - Desktop'ta gizli */
.category-filter-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.category-filter-nav:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.category-filter-nav svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.category-filter-nav.prev {
    left: 0;
}

.category-filter-nav.next {
    right: 0;
}

@media (max-width: 768px) {
    .products-filter-section {
        overflow-x: hidden;
        max-width: 100vw;
        top: 56px;
    }

    .products-filter-wrapper {
        flex-direction: column;
        padding: 12px 15px 0;
        gap: 0;
        overflow: hidden;
        max-width: 100%;
    }

    /* Search Bar - Kompakt ve Estetik */
    .products-search-box {
        order: 0;
        width: 100%;
        min-width: 0;
        padding: 10px 16px;
        margin: 0 0 10px;
        background: #fff;
        border: 1.5px solid #e5e5e5;
        border-radius: 25px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .products-search-box > svg {
        width: 16px;
        height: 16px;
        color: #999;
    }

    .products-search-box input {
        font-size: 14px;
    }

    .products-search-box input::placeholder {
        color: #aaa;
        font-size: 13px;
    }

    .products-filter-container {
        order: 1;
        padding: 0 32px;
        overflow: hidden;
        max-width: 100%;
    }

    .category-filter-nav {
        display: flex;
        width: 26px;
        height: 26px;
    }

    .category-filter-nav svg {
        width: 12px;
        height: 12px;
    }

    .category-filter-nav.prev {
        left: 0;
    }

    .category-filter-nav.next {
        right: 0;
    }

    /* Kategori butonları - mobil orijinal stiller */
    .category-filters {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        padding: 10px 0;
        max-width: 100%;
    }

    .category-filter-btn {
        flex-shrink: 0;
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
        background: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .category-filter-btn:hover {
        transform: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .category-filter-btn.active {
        border-color: var(--primary-yellow);
        box-shadow: 0 2px 8px rgba(218, 165, 32, 0.2);
    }

    .category-filter-btn span {
        display: inline !important;
        flex-direction: unset !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: unset !important;
        max-width: none !important;
    }

    .category-filter-btn svg,
    .category-filter-btn i {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
}

/* Products Section Page Specific */
.products-page-section {
    background: #fafafa;
    padding: 60px 0 80px;
    min-height: calc(100vh - 500px);
}

.products-grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.products-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* Enhanced Product Cards for Products Page */
.products-page-grid .product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.products-page-grid .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.products-page-grid .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.products-page-grid .product-card:hover::before {
    transform: scaleX(1);
}

.products-page-grid .product-card-image {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Badge removed - clean product cards */

.products-page-grid .product-card-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-page-grid .product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.products-page-grid .product-card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.products-page-grid .product-card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.products-page-grid .product-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.products-page-grid .product-card-action {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.products-page-grid .product-card-action svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.products-page-grid .product-card:hover .product-card-action {
    color: var(--primary-yellow);
}

.products-page-grid .product-card:hover .product-card-action svg {
    transform: translateX(4px);
}

/* Product Card Base Transitions */
.products-page-grid .product-card {
    transition: opacity 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Category filter button icons */
.category-filter-btn i,
.category-filter-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Products Page Responsive */
@media (max-width: 1024px) {
    .products-hero {
        height: 130px;
    }

    .products-hero-title {
        font-size: 28px;
    }

    .products-filter-container {
        padding: 0 30px;
    }

    .products-grid-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .products-hero {
        height: 120px;
        margin-top: 56px;
    }

    .products-hero-title {
        font-size: 26px;
    }

    .products-filter-container {
        padding: 0 20px;
    }

    .category-filters {
        gap: 8px;
        padding: 14px 0;
    }

    .category-filter-btn {
        padding: 10px 18px;
        font-size: 13px;
        gap: 8px;
        border-radius: 10px;
    }

    .category-filter-btn svg,
    .category-filter-btn i {
        width: 16px;
        height: 16px;
    }

    .category-filter-btn:hover {
        transform: none;
    }

    .products-page-section {
        padding: 40px 0 60px;
    }

    .products-grid-wrapper {
        padding: 0 20px;
    }

    .products-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .products-page-grid .product-card-image {
        height: 220px;
    }

    .products-page-grid .product-card-info {
        padding: 20px;
    }

    .products-page-grid .product-card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .products-hero {
        height: 110px;
    }

    .products-hero-title {
        font-size: 24px;
    }

    /* Search Bar - 480px */
    .products-filter-wrapper {
        padding: 10px 12px 0;
    }

    .products-search-box {
        padding: 8px 14px;
        border-radius: 20px;
    }

    .products-search-box > svg {
        width: 15px;
        height: 15px;
    }

    .products-search-box input {
        font-size: 13px;
    }

    .products-filter-container {
        padding: 0 28px;
    }

    /* Kategori butonları - tam boyut, yatay scroll */
    .category-filters {
        gap: 6px;
        padding: 8px 0;
    }

    .category-filter-btn {
        flex-direction: row;
        align-items: center;
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 8px;
        min-width: auto;
        flex-shrink: 0;
        gap: 5px;
        background: #fff;
        border: 1px solid #e8e8e8;
    }

    .category-filter-btn span {
        display: inline !important;
        flex-direction: unset !important;
        font-size: 11px;
        font-weight: 500;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: unset !important;
        max-width: none !important;
    }

    .category-filter-btn span::after {
        display: none;
    }

    .category-filter-btn svg,
    .category-filter-btn i {
        width: 16px;
        height: 16px;
    }

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

/* ===== HOMEPAGE STYLES ===== */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Hero Carousel */
/* ===== HERO SECTION REDESIGN ===== */
.homepage-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    min-height: 600px;
    margin-top: 0;
    /* Remove margin as it should be behind transparent header or just full screen */
    overflow: hidden;
    background: #000;
    /* Fallback */
}

/* Hero Background Watermark Text */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(100px, 22vw, 350px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    white-space: nowrap;
    z-index: 1;
    user-select: none;
    letter-spacing: -8px;
    text-transform: uppercase;
    font-family: 'Arial Black', 'Impact', 'Helvetica Neue', sans-serif;
    pointer-events: none;
}

/* Floating Decorative Elements */
.hero-floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: gentleFloat 8s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    bottom: 15%;
    left: -180px;
    animation-delay: 2.5s;
}

.floating-shape.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    bottom: -80px;
    right: 25%;
    animation-delay: 5s;
}

.hero-carousel,
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

/* Background Image with Zoom Effect */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.1);
}

/* Premium Gradient Overlay */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Content Layout */
.hero-slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Animations Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Typography & Elements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(250, 191, 30, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(250, 191, 30, 0.35);
    color: var(--primary-yellow);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(250, 191, 30, 0.25);
    text-shadow: 0 0 20px rgba(250, 191, 30, 0.5);
}

.hero-slide.active .hero-badge {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.hero-title {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: -1px;
}

.hero-slide.active .hero-title {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-slide.active .hero-subtitle {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--yellow-gradient);
    color: #000;
    padding: 20px 44px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s var(--premium-timing);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-slide.active .hero-btn {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.35);
}

.hero-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-btn:hover svg {
    transform: translateX(6px);
}

/* Navigation Arrows - Glassmorphism */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    /* Hidden initially, shown on hover of hero */
}

.homepage-hero:hover .hero-nav {
    opacity: 1;
}

.hero-nav:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(250, 191, 30, 0.5);
}

.hero-nav svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    transition: stroke 0.3s ease;
}

.hero-nav:hover svg {
    stroke: #000;
}

.hero-prev {
    left: 40px;
    transform: translateY(-50%) translateX(-20px);
}

.homepage-hero:hover .hero-prev {
    transform: translateY(-50%) translateX(0);
}

.hero-next {
    right: 40px;
    transform: translateY(-50%) translateX(20px);
}

.homepage-hero:hover .hero-next {
    transform: translateY(-50%) translateX(0);
}

/* Hero Dots - Modern Lines */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background: var(--primary-yellow);
    width: 60px;
    box-shadow: 0 0 10px rgba(250, 191, 30, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .homepage-hero {
        height: 100vh;
        /* Keep full height on mobile too */
    }

    .hero-slide-content {
        padding: 0 24px;
        align-items: flex-start;
        text-align: left;
    }

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

    .hero-nav {
        display: none;
        /* Hide arrows on mobile, rely on swipe */
    }

    .hero-dots {
        bottom: 20px;
    }
}

/* Quick Actions Section - Premium Redesign */
.quick-actions-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

/* Section Background Watermark Text */
.section-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 14vw, 200px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.025);
    white-space: nowrap;
    z-index: 0;
    user-select: none;
    letter-spacing: -4px;
    text-transform: uppercase;
    font-family: 'Arial Black', 'Impact', 'Helvetica Neue', sans-serif;
    pointer-events: none;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Quick Action Cards */
.quick-action-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-light);
    transition: all 0.4s var(--premium-timing);
}

.quick-action-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(250, 191, 30, 0.3);
    box-shadow: var(--shadow-medium);
}

/* Gradient Icon Boxes */
.quick-action-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--yellow-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(250, 191, 30, 0.35);
    transition: all 0.4s var(--premium-timing);
}

.quick-action-card:hover .quick-action-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(250, 191, 30, 0.5);
}

.quick-action-icon i,
.quick-action-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke: var(--white);
    stroke-width: 2;
}

.quick-action-content {
    flex: 1;
    min-width: 0;
}

.quick-action-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.quick-action-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.quick-action-arrow {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s var(--premium-timing);
}

.quick-action-card:hover .quick-action-arrow {
    opacity: 1;
    transform: translateX(0);
}

.quick-action-arrow svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-yellow);
    stroke-width: 2.5;
}

/* Section Header - Premium */
.section-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: var(--yellow-gradient);
    color: #1a1a1a;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(250, 191, 30, 0.3);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

/* Yellow Highlight Effect for Titles */
.section-title-highlight {
    display: inline;
    position: relative;
}

.section-title-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 14px;
    background: var(--primary-yellow);
    z-index: -1;
    opacity: 0.6;
    transform: skewX(-3deg);
}

.section-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-brown);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border: 2px solid var(--primary-brown);
    border-radius: 8px;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--primary-brown);
    color: var(--white);
}

.view-all-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(4px);
}

/* Featured Products Section - Premium */
.featured-products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* Premium Product Cards - Glassmorphism */
.featured-product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-light);
    transition: all 0.5s var(--premium-timing);
    position: relative;
}

.featured-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--premium-timing);
    z-index: 10;
}

.featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(250, 191, 30, 0.25);
}

.featured-product-card:hover::before {
    transform: scaleX(1);
}

.featured-product-image {
    position: relative;
    padding-top: 80%;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f8f8 0%, #eee 100%);
}

.featured-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s var(--premium-timing);
}

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.1);
}

.featured-product-content {
    padding: 24px;
    background: #fff;
}

.featured-product-name {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.featured-product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.featured-product-card:hover .featured-product-link {
    color: var(--primary-yellow);
}

.featured-product-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    stroke-width: 2;
}

.featured-product-card:hover .featured-product-link svg {
    transform: translateX(6px);
    stroke: var(--primary-yellow);
}

/* Company Banner Section - Premium */
.company-banner-section {
    padding: 120px 0;
    background: linear-gradient(145deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

/* Rotated Background Watermark */
.company-bg-text {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: clamp(100px, 18vw, 250px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    white-space: nowrap;
    z-index: 0;
    user-select: none;
    letter-spacing: 15px;
    text-transform: uppercase;
    font-family: 'Arial Black', 'Impact', 'Helvetica Neue', sans-serif;
    pointer-events: none;
}

.company-banner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.company-banner-content .section-badge {
    margin-bottom: 24px;
}

.company-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.company-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* Floating Stats Cards */
.company-stats-floating {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.company-stats-floating .company-stat {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 32px;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.4s var(--premium-timing);
    animation: gentleFloat 5s ease-in-out infinite;
}

.company-stats-floating .company-stat:nth-child(2) {
    animation-delay: 1.5s;
}

.company-stats-floating .company-stat:nth-child(3) {
    animation-delay: 3s;
}

.company-stats-floating .company-stat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

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

.stat-value {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--yellow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Button Style */
.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: var(--white);
    padding: 18px 38px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--premium-timing);
    position: relative;
    overflow: hidden;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 191, 30, 0.3), transparent);
    transition: 0.6s;
}

.premium-btn:hover {
    background: var(--yellow-gradient);
    color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.premium-btn:hover::before {
    left: 100%;
}

.premium-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.premium-btn:hover svg {
    transform: translateX(6px);
}

/* Company Image Enhancement */
.company-banner-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2);
    position: relative;
}

.company-banner-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 191, 30, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.company-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--premium-timing);
}

.company-banner-image:hover img {
    transform: scale(1.05);
}

/* News Section - Amazone.net Style Refined */
.news-section {
    padding: 0px 0;
    background: #f7f7f7;
    /* Subtle gray background */
}

.news-section .container {
    max-width: 1400px;
    padding: 0 60px;
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    /* Increased gap for better separation */
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    /* Large vertical spacing between items */
}

.news-card {
    display: grid;
    grid-template-columns: 50% 50%;
    /* Balanced split */
    gap: 0;
    background: transparent;
    overflow: visible;
    text-decoration: none;
    border: none;
    min-height: 450px;
    align-items: center;
}

/* Alternating layout */
.news-card:nth-child(even) {
    grid-template-columns: 50% 50%;
}

.news-card:nth-child(even) .news-card-image {
    order: 2;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    /* Sharper slant */
    margin-left: -1px;
}

.news-card:nth-child(even) .news-card-content {
    order: 1;
    padding-right: 80px;
    padding-left: 0;
    text-align: right;
    /* Align text to image for even items */
}

.news-card:nth-child(odd) .news-card-image {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    /* Sharper slant */
    margin-right: -1px;
}

.news-card:nth-child(odd) .news-card-content {
    padding-left: 80px;
    padding-right: 0;
    text-align: left;
}

.news-card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Stronger shadow */
    border-radius: 0;
    /* Sharp corners for premium feel */
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.news-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Align content items based on text alignment */
.news-card:nth-child(even) .news-card-content {
    align-items: flex-end;
}

.news-card:nth-child(odd) .news-card-content {
    align-items: flex-start;
}

.news-card-title {
    font-size: 36px;
    /* Larger title */
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
    font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
    /* Stronger font */
}

.news-card:hover .news-card-title {
    color: var(--primary-yellow);
}

.news-card-summary {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 500px;
    /* Limit width for readability */
}

.news-card-link {
    font-size: 15px;
    font-weight: 800;
    color: #e6a800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.news-card-link::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-link {
    color: #d49a00;
    border-bottom-color: #d49a00;
}

.news-card:hover .news-card-link::after {
    transform: translateX(8px);
}

/* Responsive News */
@media (max-width: 992px) {
    .news-section {
        padding: 0px 0;
    }

    .news-section .container {
        padding: 0 20px;
    }

    .news-list {
        gap: 60px;
    }

    .news-card,
    .news-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: auto;
    }

    .news-card:nth-child(even) .news-card-image {
        order: 0;
    }

    .news-card:nth-child(even) .news-card-content {
        order: 1;
        text-align: left;
        align-items: flex-start;
        padding: 0;
    }

    .news-card:nth-child(odd) .news-card-content {
        padding: 0;
    }

    .news-card-image,
    .news-card:nth-child(even) .news-card-image,
    .news-card:nth-child(odd) .news-card-image {
        clip-path: none;
        height: 280px;
        border-radius: 12px;
    }

    .news-card-content {
        padding: 50px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: var(--white);
    }

    .news-card-date {
        display: none;
    }

    .news-card-title {
        font-size: 26px;
        font-weight: 700;
        color: #c75b12;
        margin-bottom: 24px;
        line-height: 1.35;
    }

    .news-card-summary {
        font-size: 16px;
        color: #4a4a4a;
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .news-card-link {
        display: inline-block;
        color: #e87a1e;
        font-size: 16px;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .news-card-link svg {
        display: none;
    }

    .news-card:hover .news-card-link {
        color: #c75b12;
    }

    .news-video {
        display: none;
    }

    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* ===== NEWS SECTION - DARK BENTO GRID ===== */
.news-section-dark {
    padding: 120px 0;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.news-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(250, 191, 30, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(250, 191, 30, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.section-bg-text-dark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(120px, 20vw, 320px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    z-index: 0;
    letter-spacing: 20px;
    text-transform: uppercase;
    font-family: 'Arial Black', 'Impact', sans-serif;
    pointer-events: none;
}

/* Dark Section Header */
.section-header-dark {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.section-badge-dark {
    background: linear-gradient(135deg, rgba(250, 191, 30, 0.15) 0%, rgba(250, 191, 30, 0.05) 100%);
    border: 1px solid rgba(250, 191, 30, 0.35);
    color: var(--primary-yellow);
    box-shadow: 0 4px 20px rgba(250, 191, 30, 0.15);
}

.section-title-dark {
    color: #fff;
}

/* News Bento Grid Layout */
.news-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.news-section-dark .news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Dark Bento News Cards */
.news-section-dark .news-card {
    display: flex;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    min-height: auto;
    transition: all 0.4s var(--premium-timing);
    grid-template-columns: unset;
}

.news-section-dark .news-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(250, 191, 30, 0.35);
    transform: translateY(-6px);
}

.news-section-dark .news-card-image {
    width: 200px;
    min-width: 200px;
    height: auto;
    min-height: 180px;
    clip-path: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.news-section-dark .news-card:nth-child(odd) .news-card-image,
.news-section-dark .news-card:nth-child(even) .news-card-image {
    clip-path: none;
    margin: 0;
    order: 0;
}

.news-section-dark .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-section-dark .news-card-content {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.news-section-dark .news-card:nth-child(odd) .news-card-content,
.news-section-dark .news-card:nth-child(even) .news-card-content {
    padding: 28px 32px;
    text-align: left;
    align-items: flex-start;
}

.news-section-dark .news-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.35;
    font-family: inherit;
    transition: color 0.3s ease;
}

.news-section-dark .news-card:hover .news-card-title {
    color: var(--primary-yellow);
}

.news-section-dark .news-card-summary {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 16px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    max-width: 100%;
}

.news-section-dark .news-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: none;
    padding-bottom: 0;
}

.news-section-dark .news-card-link::after {
    content: '→';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.news-section-dark .news-card:hover .news-card-link {
    color: var(--primary-yellow);
    border-bottom-color: transparent;
}

.news-section-dark .news-card:hover .news-card-link::after {
    transform: translateX(6px);
}

/* Video Section in Dark Theme */
.news-section-dark .news-video {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    display: block;
}

.news-section-dark .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
}

.news-section-dark .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== RESPONSIVE - PREMIUM HOMEPAGE ===== */
@media (max-width: 1200px) {
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-bento-grid {
        grid-template-columns: 1fr;
    }

    .news-section-dark .news-video {
        min-height: 350px;
    }
}

@media (max-width: 992px) {
    .homepage-hero {
        height: 70vh;
        margin-top: 70px;
    }

    .hero-slide-content {
        padding: 0 5%;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .company-banner-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .company-banner-image {
        order: -1;
        max-height: 400px;
    }

    .company-stats-floating {
        justify-content: center;
        flex-wrap: wrap;
    }

    .company-stats-floating .company-stat {
        animation: none;
    }

    .news-section-dark .news-card {
        flex-direction: column;
    }

    .news-section-dark .news-card-image {
        width: 100%;
        height: 200px;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .homepage-hero {
        height: 60vh;
        min-height: 400px;
    }

    /* Hide watermark texts on mobile */
    .section-bg-text,
    .hero-bg-text,
    .section-bg-text-dark,
    .company-bg-text {
        display: none;
    }

    .hero-floating-elements,
    .cta-floating-shapes {
        opacity: 0.4;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-section-dark {
        padding: 80px 0;
    }

    .news-section-dark .news-list {
        gap: 16px;
    }

    .news-section-dark .news-card-content {
        padding: 20px 24px;
    }

    .news-section-dark .news-card-title {
        font-size: 17px;
    }

    .cta-section-premium {
        padding: 70px 20px;
    }

    .hero-nav {
        display: none;
    }

    .quick-action-card {
        padding: 20px;
    }

    .company-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
    }

    .featured-products-section,
    .company-banner-section,
    .news-section-dark,
    .quick-actions-section {
        padding: 60px 0;
    }

    .company-stats-floating {
        flex-direction: column;
        align-items: center;
    }

    .news-section-dark .news-card-image {
        height: 160px;
    }

    .cta-section-premium .cta-title {
        font-size: 28px;
    }

    .cta-btn-premium {
        padding: 18px 36px;
        font-size: 13px;
    }
}

/* ================================================================
   FOCOFIRM STYLE - YENİ TASARIM
   ================================================================ */

/* ===== FOCOFIRM HEADER ===== */
.header-focofirm {
    background: #fff;
    box-shadow: none;
    border-bottom: 1px solid #f0f0f0;
}

.header-focofirm .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
}

.header-focofirm .logo img {
    height: 44px;
    width: auto;
}

/* Navigasyon Ortada */
.nav-menu-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    gap: 0;
}

.nav-pills {
    display: flex;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 4px;
    gap: 2px;
}

.nav-pill {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-pill:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.03);
}

.nav-pill.active {
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

.nav-pill::after {
    display: none;
}

/* Header Sağ Taraf */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobil Dil Seçici - Desktop'ta Gizli */
.mobile-lang-selector {
    display: none;
}

.header-focofirm .language-selector {
    margin-left: 0;
}

/* İletişim Butonu */
.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.contact-btn:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(250, 191, 30, 0.4);
}

/* ===== AGRIPLOT HERO ===== */
.agriplot-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #FDFDFD;
    margin-top: 70px;
}

.agriplot-hero-content {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.agriplot-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #FABF1E;
    border-radius: 50px;
    color: #FABF1E;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.agriplot-hero-badge svg {
    width: 16px;
    height: 16px;
}

.agriplot-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.agriplot-hero-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 32px;
}

.agriplot-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.agriplot-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.agriplot-btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.agriplot-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.agriplot-btn-secondary:hover {
    background: #f9f9f9;
    border-color: #ccc;
}

.agriplot-hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    margin-top: -220px;
    z-index: 1;
}

.agriplot-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Agriplot Hero Responsive - Tablet Only (iPad Air vb.) */
@media (min-width: 769px) and (max-width: 1024px) {
    .agriplot-hero {
        min-height: auto;
    }

    .agriplot-hero-content {
        padding: 50px 20px 40px;
    }

    .agriplot-hero-image {
        min-height: 350px;
        margin-top: -120px;
    }
}

/* Agriplot Hero Responsive - Mobile */
@media (max-width: 768px) {
    .agriplot-hero {
        min-height: auto;
        position: relative;
        z-index: 5;
    }

    .agriplot-hero-content {
        padding: 10px 16px 40px;
    }

    .agriplot-hero-title {
        font-size: 32px;
    }

    .agriplot-hero-desc {
        font-size: 17px;
    }

    .agriplot-hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .agriplot-btn-primary,
    .agriplot-btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .agriplot-hero-image {
        flex: none;
        height: auto;
        min-height: unset;
        margin-top: 0;
        overflow: visible;
    }

    .agriplot-hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ===== FOCOFIRM FEATURE CARDS ===== */
.focofirm-features {
    padding: 80px 0;
    background: #fff;
}

.focofirm-features-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.focofirm-feature-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.focofirm-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.focofirm-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e6a800 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.focofirm-feature-icon i,
.focofirm-feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 2;
}

.focofirm-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.focofirm-feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.focofirm-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.focofirm-feature-link:hover {
    color: #e6a800;
    gap: 12px;
}

/* Orta Metin */
.focofirm-features-center {
    text-align: center;
    padding: 0 20px;
}

.focofirm-features-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.focofirm-features-title .highlight {
    color: var(--primary-yellow);
    font-weight: 700;
}

/* ===== FOCOFIRM MISSION ===== */
.focofirm-mission {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5fff5 0%, #fff 100%);
}

.focofirm-mission-text {
    font-size: clamp(20px, 3vw, 32px);
    font-style: italic;
    text-align: center;
    color: #333;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.focofirm-mission-text em {
    font-weight: 700;
    color: var(--primary-yellow);
    font-style: normal;
}

.focofirm-mission-text .inline-icon {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin: 0 5px;
}

/* ===== FOCOFIRM PARTNERS ===== */
.focofirm-partners {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.focofirm-partners-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.focofirm-partners-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.focofirm-partner-logo {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.focofirm-partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===== FOCOFIRM VIDEO ===== */
.focofirm-video {
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
}

.focofirm-video-content {
    display: flex;
    min-height: 500px;
}

.focofirm-video-text {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #fff;
}

.focofirm-video-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.focofirm-video-title {
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 0.9;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-family: 'Arial Black', 'Impact', sans-serif;
}

.focofirm-video-player {
    flex: 1;
    position: relative;
}

.focofirm-video-player img,
.focofirm-video-player iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.focofirm-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(250, 191, 30, 0.4);
}

.focofirm-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.focofirm-video-play-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 5px;
}

/* ===== FOCOFIRM BLOG - BİREBİR TASARIM ===== */
.focofirm-blog {
    padding: 0px 0;
    background: #fff;
}

.focofirm-blog .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.focofirm-blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.focofirm-blog-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 auto;
}

.focofirm-blog-title .highlight {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: 700;
    /* Thicker font as requested */
    color: var(--primary-yellow);
    display: inline;
}

/* Blog Grid */
.focofirm-blog-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 60px;
}

/* Blog Card Base */
.focofirm-blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
}

.focofirm-blog-card:hover {
    transform: translateY(-5px);
}

/* Side Cards (1 & 3) */
.focofirm-blog-card:nth-child(1),
.focofirm-blog-card:nth-child(3) {
    flex: 0 0 300px;
    max-width: 300px;
    margin-top: 40px;
    /* Offset to center relative to large card */
}

/* Middle Card (2) */
.focofirm-blog-card:nth-child(2) {
    flex: 0 0 500px;
    max-width: 500px;
}

/* Images */
.focofirm-blog-card-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.focofirm-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.focofirm-blog-card:hover .focofirm-blog-card-image img {
    transform: scale(1.05);
}

/* Side Card Images */
.focofirm-blog-card:nth-child(1) .focofirm-blog-card-image,
.focofirm-blog-card:nth-child(3) .focofirm-blog-card-image {
    height: 220px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Middle Card Image */
.focofirm-blog-card:nth-child(2) .focofirm-blog-card-image {
    height: 400px;
    border-radius: 24px;
    margin-bottom: 0;
}

/* Content */
.focofirm-blog-card-content {
    display: flex;
    flex-direction: column;
}

/* Side Card Content */
.focofirm-blog-card:nth-child(1) .focofirm-blog-card-content,
.focofirm-blog-card:nth-child(3) .focofirm-blog-card-content {
    padding: 0 5px;
}

/* Middle Card Content - Overlay */
.focofirm-blog-card:nth-child(2) .focofirm-blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 65%;
    /* Match the width in the image */
    padding: 30px;
    border-top-right-radius: 30px;
    /* The curve */
    border-bottom-left-radius: 24px;
    /* Match card corner */
    box-shadow: none;
    /* The reference looks flat/integrated */
    z-index: 2;
}

/* Middle Card Title */
.focofirm-blog-card:nth-child(2) .focofirm-blog-card-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 800;
}

/* Middle Card Description */
.focofirm-blog-card:nth-child(2) .focofirm-blog-card-desc {
    font-size: 15px;
    margin-bottom: 20px;
}

/* Titles */
.focofirm-blog-card-title {
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.focofirm-blog-card:nth-child(1) .focofirm-blog-card-title,
.focofirm-blog-card:nth-child(3) .focofirm-blog-card-title {
    font-size: 18px;
}

.focofirm-blog-card:nth-child(2) .focofirm-blog-card-title {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Descriptions */
.focofirm-blog-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Links */
.focofirm-blog-card-link {
    font-size: 12px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.focofirm-blog-card-link span {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.focofirm-blog-card:hover .focofirm-blog-card-link span {
    transform: translate(3px, -3px);
}

/* Footer (Progress & Nav) */
.focofirm-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.focofirm-blog-progress {
    flex: 1;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    overflow: hidden;
}

.focofirm-blog-progress-bar {
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Nav Buttons */
.focofirm-blog-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.focofirm-blog-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.focofirm-blog-nav-btn.prev {
    background: transparent;
}

.focofirm-blog-nav-btn.prev svg {
    stroke: #1a1a1a;
    width: 24px;
    height: 24px;
}

.focofirm-blog-nav-btn.next {
    background: var(--primary-yellow);
    color: #1a1a1a;
}

.focofirm-blog-nav-btn.next svg {
    stroke: #1a1a1a;
    width: 24px;
    height: 24px;
}

.focofirm-blog-nav-btn.next:hover {
    background: #e6a800;
    transform: scale(1.05);
}

/* Blog empty state */
.focofirm-blog-grid .no-news {
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 60px 20px;
    width: 100%;
}

/* ===== FOCOFIRM CONTACT CTA ===== */
.focofirm-contact-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.focofirm-contact-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.focofirm-contact-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.focofirm-contact-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 30, 0.95) 0%, rgba(20, 40, 20, 0.9) 100%);
    z-index: 2;
}

.focofirm-contact-cta .container {
    position: relative;
    z-index: 3;
}

.focofirm-contact-cta-content {
    max-width: 600px;
}

.focofirm-contact-cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.focofirm-contact-cta-title span {
    color: var(--primary-yellow);
}

.focofirm-contact-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

.focofirm-contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--primary-yellow);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.focofirm-contact-btn:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* ===== FOCOFIRM PRODUCTS ===== */
.focofirm-products {
    padding: 80px 0 100px;
    background: #fff;
    position: relative;
}

.focofirm-products::before {
    display: none;
}

.focofirm-products .container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.focofirm-section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.focofirm-section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.focofirm-section-badge {
    display: none;
}

.focofirm-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.focofirm-section-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== FOCOFIRM PRODUCT CARDS ===== */
.focofirm-products-wrapper {
    display: block;
}

.focofirm-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Product Card - Premium Style */
.focofirm-product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    position: relative;
}

.focofirm-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), #e6a800);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.focofirm-product-card::after {
    display: none;
}

.focofirm-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.focofirm-product-card:hover::before {
    opacity: 1;
}

/* Product Image */
.focofirm-product-image {
    height: 280px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 35px;
    position: relative;
}

.focofirm-product-image::before {
    display: none;
}

.focofirm-product-image::after {
    display: none;
}

.focofirm-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
}

.focofirm-product-card:hover .focofirm-product-image img {
    transform: scale(1.06);
}

/* Product Content */
.focofirm-product-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
}

.focofirm-product-content::before {
    display: none;
}

.focofirm-product-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.focofirm-product-card:hover .focofirm-product-name {
    color: #333;
}

.focofirm-product-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA Link - Modern Arrow Button Style */
.focofirm-product-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 14px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: auto;
}

.focofirm-product-link .link-text {
    transition: all 0.3s ease;
}

.focofirm-product-link .link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-yellow);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.3);
}

.focofirm-product-link .link-arrow svg {
    width: 16px;
    height: 16px;
    color: #fff;
    transition: transform 0.3s ease;
}

.focofirm-product-link:hover .link-text {
    color: var(--primary-yellow);
}

.focofirm-product-link:hover .link-arrow {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.4);
}

.focofirm-product-link:hover .link-arrow svg {
    transform: translateX(2px);
}

.focofirm-product-card:hover .focofirm-product-link .link-arrow {
    background: #d49800;
}

/* View All Button - Simple Text Link */
.focofirm-view-all-side {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.focofirm-view-all-btn-nh {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.focofirm-view-all-btn-nh span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nh-arrow-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nh-arrow-circle svg {
    width: 18px;
    height: 18px;
    color: #fff;
    transition: transform 0.3s ease;
}

.focofirm-view-all-btn-nh:hover span {
    color: var(--primary-yellow);
}

.focofirm-view-all-btn-nh:hover .nh-arrow-circle {
    transform: translateX(5px);
}

.focofirm-view-all-btn-nh:hover .nh-arrow-circle svg {
    transform: translateX(2px);
}

/* Legacy class support */
.focofirm-view-all-circle {
    display: none;
}

/* Hide old footer button */
.focofirm-section-footer {
    display: none;
}

.focofirm-view-all-btn {
    display: none;
}

/* ===== FOCOFIRM STATS ===== */
.focofirm-stats {
    padding: 80px 0;
    background: #fff;
}

.focofirm-stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.focofirm-stat-item {
    text-align: center;
}

.focofirm-stat-value {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 10px;
}

.focofirm-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* ===== FOCOFIRM FOOTER ===== */
.footer-focofirm {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 40px 0 20px;
}

.footer-focofirm .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-focofirm .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.footer-focofirm .footer-brand {
    flex: 0 0 auto;
}

.footer-focofirm .footer-logo {
    height: 40px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav-link {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--primary-yellow);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal-link {
    font-size: 12px;
    color: #999;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #666;
}

.footer-focofirm .footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    color: #999;
}

/* ===== HERO SECTION - FOCOFIRM STYLE ===== */
.focofirm-hero {
    position: relative;
    height: 85vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 20px;
    /* Gap from sides */
    border-radius: 60px;
    /* Rounded all corners */
    margin-top: 80px;
    /* Header height offset */
}

.focofirm-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.focofirm-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.focofirm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.focofirm-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    margin-top: -50px;
    /* Visual adjustment */
}

.focofirm-hero-subtitle {
    font-size: clamp(24px, 3vw, 36px);
    color: #fff;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 1.2;
    font-family: 'Segoe UI', sans-serif;
}

.focofirm-hero-title {
    font-size: clamp(60px, 10vw, 150px);
    font-weight: 900;
    color: var(--primary-yellow);
    /* Yellow as requested */
    line-height: 1;
    margin: 0;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.focofirm-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* ===== FEATURE CARDS SECTION ===== */
.focofirm-features {
    padding: 30px 0 100px;
    background: #fff;
}

.focofirm-features .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.focofirm-features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Feature Cards (Left & Right) */
.focofirm-feature-card {
    background: #F9F9F5;
    /* Beige background */
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.focofirm-feature-card:hover {
    transform: translateY(-10px);
}

.focofirm-feature-content {
    position: relative;
    z-index: 2;
}

.focofirm-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.focofirm-feature-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.focofirm-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-yellow);
    /* Yellow accent */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.focofirm-feature-link:hover {
    color: #e6a800;
}

.focofirm-feature-link span {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.focofirm-feature-link:hover span {
    transform: translate(3px, -3px);
}

.focofirm-feature-image {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}

.focofirm-feature-image img {
    max-width: 130px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.focofirm-feature-card:hover .focofirm-feature-image img {
    transform: scale(1.03);
}

/* Feature card text highlight */
.focofirm-feature-title .highlight {
    color: var(--primary-yellow);
    font-weight: 800;
}

/* Center Text Section */
.focofirm-features-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.focofirm-features-title {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
}

.focofirm-features-title .highlight {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: 700;
    color: var(--primary-yellow);
    /* Yellow accent */
    display: block;
    margin-top: 10px;
}

/* ===== SUSTAINABLE FEATURES SECTION ===== */
.sustainable-header {
    text-align: center;
    margin-bottom: 50px;
}

.sustainable-title {
    font-size: 38px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto;
}

.sustainable-title .highlight {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: 700;
    color: var(--primary-yellow);
}

/* 3 Kolonlu Grid: Sol Kart | Video | Sağ Kart */
.sustainable-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 30px;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

/* Video Container - Estetik Tasarım */
.sustainable-video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sustainable-video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    width: 100%;
    max-width: 100%;
}

.sustainable-video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.sustainable-video-player iframe,
.sustainable-video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Thumbnail Style */
.sustainable-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.sustainable-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Button - Modern Tasarım */
.sustainable-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.sustainable-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-yellow);
}

.sustainable-play-btn svg {
    width: 30px;
    height: 30px;
    fill: #1a1a1a;
    margin-left: 4px; /* Optik düzeltme */
}

.sustainable-play-btn:hover svg {
    fill: #fff;
}

/* Video Title - Videonun Üstünde */
.sustainable-video-title {
    color: #1a1a1a;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.sustainable-video-title .highlight {
    color: var(--primary-yellow);
    font-weight: 800;
}

/* Card Stilleri */
.sustainable-card {
    background: #F9F9F5;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
}

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

.sustainable-card-content {
    margin-bottom: 20px;
}

.sustainable-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.sustainable-card-title .highlight {
    color: var(--primary-yellow);
    font-weight: 800;
}

.sustainable-card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.sustainable-card-image {
    position: relative;
    width: 100%;
    margin-top: auto;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.sustainable-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sustainable-card:hover .sustainable-card-image img {
    transform: scale(1.08);
}

/* Sustainable Features Responsive */
@media (max-width: 1200px) {
    .sustainable-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }

    .sustainable-grid .sustainable-card:first-child {
        order: 1;
    }

    .sustainable-grid .sustainable-video-wrapper {
        order: 0;
    }

    .sustainable-grid .sustainable-card:last-child {
        order: 2;
    }

    .sustainable-video-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .sustainable-play-btn {
        width: 60px;
        height: 60px;
    }

    .sustainable-play-btn svg {
        width: 24px;
        height: 24px;
    }

    .sustainable-card {
        padding: 30px;
        min-height: auto;
    }

    .sustainable-card-title {
        font-size: 20px;
    }

    .sustainable-video-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

/* ===== FOCOFIRM RESPONSIVE ===== */
/* Responsive */
@media (max-width: 1024px) {
    .focofirm-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .focofirm-hero-title {
        font-size: 80px;
    }
}

@media (max-width: 1200px) {
    .focofirm-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .focofirm-features-center {
        order: -1;
    }

    .focofirm-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .focofirm-product-image {
        height: 220px;
        padding: 30px;
    }

    .focofirm-product-content {
        padding: 25px;
    }

    .focofirm-product-name {
        font-size: 20px;
    }

    .focofirm-video-content {
        flex-direction: column;
    }

    .focofirm-video-text {
        flex: none;
        padding: 40px;
    }

    .focofirm-video-player {
        min-height: 300px;
    }
}

@media (max-width: 992px) {
    .nav-menu-center {
        display: none;
    }

    .header-right {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .focofirm-blog-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .focofirm-blog-card,
    .focofirm-blog-card:nth-child(1),
    .focofirm-blog-card:nth-child(2),
    .focofirm-blog-card:nth-child(3) {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        margin-top: 0;
    }

    /* Tablet: Reset middle card overlay style */
    .focofirm-blog-card:nth-child(2) .focofirm-blog-card-image {
        height: 220px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .focofirm-blog-card:nth-child(2) .focofirm-blog-card-content {
        position: static;
        width: 100%;
        padding: 0 5px;
        background: transparent;
        border-radius: 0;
    }

    .focofirm-blog-card:nth-child(2) .focofirm-blog-card-title {
        font-size: 18px;
    }

    .focofirm-blog-card:nth-child(2) .focofirm-blog-card-desc {
        font-size: 14px;
    }

    .footer-focofirm .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .focofirm-stats-grid {
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .focofirm-hero {
        min-height: 80vh;
        z-index: 3;
    }

    .focofirm-hero-title {
        font-size: clamp(40px, 12vw, 80px);
    }

    /* Mobile - no overlap with hero */
    .focofirm-features {
        padding-top: 20px;
        margin-top: 0;
        position: relative;
        z-index: 1;
    }

    .focofirm-products {
        padding: 60px 0 80px;
    }

    .focofirm-products .container {
        padding: 0 20px;
    }

    .focofirm-section-header {
        margin-bottom: 40px;
    }

    .focofirm-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .focofirm-product-image {
        height: 200px;
        padding: 25px;
    }

    .focofirm-product-content {
        padding: 22px;
    }

    .focofirm-product-name {
        font-size: 20px;
    }

    .focofirm-product-desc {
        font-size: 14px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .focofirm-view-all-side {
        margin-top: 30px;
    }

    .focofirm-view-all-btn-nh {
        padding: 14px 28px;
    }

    .focofirm-view-all-btn-nh span {
        font-size: 13px;
    }

    .nh-arrow-circle {
        width: 36px;
        height: 36px;
    }

    .nh-arrow-circle svg {
        width: 18px;
        height: 18px;
    }

    .focofirm-blog-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .focofirm-blog-card,
    .focofirm-blog-card:nth-child(1),
    .focofirm-blog-card:nth-child(2),
    .focofirm-blog-card:nth-child(3) {
        max-width: 100%;
        flex: none;
        width: 100%;
        margin-top: 0;
    }

    /* Mobile: All cards same style */
    .focofirm-blog-card:nth-child(1) .focofirm-blog-card-image,
    .focofirm-blog-card:nth-child(2) .focofirm-blog-card-image,
    .focofirm-blog-card:nth-child(3) .focofirm-blog-card-image {
        height: 200px;
        border-radius: 16px;
        margin-bottom: 15px;
    }

    /* Mobile: Reset middle card content overlay */
    .focofirm-blog-card:nth-child(2) .focofirm-blog-card-content {
        position: static;
        width: 100%;
        padding: 0 5px;
        background: transparent;
        border-radius: 0;
    }

    .focofirm-blog-card:nth-child(2) .focofirm-blog-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .focofirm-blog-card:nth-child(2) .focofirm-blog-card-desc {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .focofirm-blog-footer {
        flex-direction: row;
        gap: 15px;
    }

    .focofirm-blog-progress {
        max-width: 200px;
    }

    .focofirm-contact-cta-content {
        text-align: center;
        margin: 0 auto;
    }

    .focofirm-partners-slider {
        gap: 30px;
    }
}



@media (max-width: 480px) {
    .focofirm-hero {
        min-height: 70vh;
        margin-top: 60px;
    }

    .focofirm-feature-card {
        padding: 20px;
    }

    .focofirm-feature-image img {
        max-width: 100px;
    }

    .focofirm-mission-text {
        font-size: 18px;
    }

    .focofirm-video-text {
        padding: 30px 20px;
    }

    .focofirm-stats-grid {
        flex-direction: column;
        gap: 30px;
    }
}

/* ===== HEADER DROPDOWN MENU ===== */
.nav-item-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 900px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    overflow: hidden;
    margin-top: 15px;
}

/* Hover State */
.nav-item-wrapper:hover .header-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Arrow Indicator */
.header-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.dropdown-container {
    display: flex;
    min-height: 400px;
}

/* Left Side: Categories */
.dropdown-categories {
    width: 280px;
    background: rgba(249, 249, 249, 0.8);
    padding: 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-header span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #999;
    text-transform: uppercase;
}

.category-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dropdown-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
    font-weight: 600;
    font-size: 14px;
    position: relative;
}

.dropdown-category-item:hover,
.dropdown-category-item.active {
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dropdown-category-item i {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
    color: #999;
    transition: color 0.2s ease;
}

.dropdown-category-item:hover i,
.dropdown-category-item.active i {
    color: var(--primary-yellow);
}

.dropdown-category-item .arrow {
    margin-left: auto;
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
}

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

/* View All Button */
.view-all-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.view-all-btn svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* Right Side: Products */
.dropdown-products {
    flex: 1;
    padding: 30px;
    background: #fff;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.active-category-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.category-link-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-yellow);
    transition: all 0.2s ease;
}

.category-link-btn:hover {
    color: #e6a800;
    transform: translateX(3px);
}

.category-link-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.products-grid-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.menu-product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.menu-product-card:hover {
    border-color: rgba(250, 191, 30, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.menu-product-image {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 4px;
}

.menu-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.menu-product-card:hover .menu-product-image img {
    transform: scale(1.1);
}

.menu-product-info {
    flex: 1;
}

.menu-product-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.menu-product-desc {
    font-size: 11px;
    color: #888;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading State */
.category-loading {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-yellow);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 14px;
}

/* ================================================================
   PREMIUM HEADER - YENİ TASARIM
   ================================================================ */

.header-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-premium .header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-premium .logo img {
    height: 52px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Nav Menu */
.header-premium .nav-menu-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.header-premium .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-premium .nav-link {
    position: relative;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-premium .nav-link:hover {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.04);
}

.header-premium .nav-link.active {
    color: #1a1a1a;
    background: var(--primary-yellow);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(250, 191, 30, 0.3);
}

.header-premium .nav-link::before {
    display: none;
}

.header-premium .nav-link::after {
    display: none;
}

/* Dropdown Arrow */
.header-premium .dropdown-arrow {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.header-premium .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Nav Dropdown Container */
.nav-dropdown {
    position: relative;
    z-index: 100;
}

/* Hover durumunda buton stili */
.nav-dropdown:hover .has-dropdown {
    background: #fff;
    color: #1a1a1a;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

/* Mega Dropdown - Kategoriler + Ürünler */
.mega-dropdown {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    padding-top: 4px;
    display: flex;
    background: #fff;
    border-radius: 0 16px 16px 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 9999;
    overflow: hidden;
}

/* Bağlantı köprüsü - menü ile buton arasında */
.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 24px;
    background: transparent;
}

.nav-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Sol: Kategoriler */
.mega-categories {
    width: 200px;
    padding: 12px;
    background: #fafafa;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    text-decoration: none;
    color: inherit;
}

.mega-category span {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s ease;
}

.mega-category svg {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
    color: var(--primary-yellow);
}

.mega-category:hover,
.mega-category.active {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mega-category:hover span,
.mega-category.active span {
    color: #1a1a1a;
    font-weight: 600;
}

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

/* Tüm Ürünler Butonu */
.mega-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 16px;
    background: #1a1a1a;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-view-all span {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-view-all svg {
    color: #fff;
    transition: transform 0.2s ease;
}

.mega-view-all:hover {
    background: var(--primary-yellow);
}

.mega-view-all:hover span,
.mega-view-all:hover svg {
    color: #1a1a1a;
}

.mega-view-all:hover svg {
    transform: translateX(3px);
}

/* Sağ: Ürünler */
.mega-products {
    width: 280px;
    padding: 16px;
    background: #fff;
}

.mega-product-list {
    display: none;
    flex-direction: column;
    gap: 8px;
}

.mega-product-list.active {
    display: flex;
}

.mega-product-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #f8f8f8;
}

.mega-product-item:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.mega-product-item img {
    width: 56px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
}

.mega-product-item span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Header Right */
.header-premium .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Dropdown - header-premium için */
.header-premium .language-dropdown {
    position: relative;
    z-index: 1000;
}

.header-premium .lang-current {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.06);
}

/* Header Scroll State */
.header-premium.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-premium.scrolled .header-container {
    padding: 10px 48px;
}

.header-premium.scrolled .logo img {
    height: 42px;
}

/* Mobile Menu Button - Desktop'ta Gizle */
.header-premium .mobile-menu-btn {
    display: none;
}

/* ================================================================
   PREMIUM HEADER - MOBILE RESPONSIVE
   ================================================================ */

@media (max-width: 1200px) {
    .header-premium .header-container {
        padding: 16px 32px;
    }
}

@media (max-width: 1024px) {
    /* Mobil Menü Panel - Soldan Kayan */
    .header-premium .nav-menu-center {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        z-index: 1001;
        padding: 90px 0 30px;
        box-shadow: 4px 0 25px rgba(0,0,0,0.15);
        overflow-y: auto;
    }

    .header-premium .nav-menu-center.active {
        transform: translateX(0);
    }

    /* Arka Plan Overlay - Tüm Sayfayı Kaplar */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Nav Linkleri - Çiftçi Dostu (Büyük Dokunma Alanı) */
    .header-premium .nav-links {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
    }

    .header-premium .nav-link {
        padding: 18px 24px;
        font-size: 17px;
        font-weight: 500;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 56px;
        transition: background 0.2s ease;
    }

    .header-premium .nav-link:active {
        background: #f5f5f5;
    }

    .header-premium .nav-link.active {
        color: #1a1a1a;
        background: rgba(250, 191, 30, 0.1);
        border-left: 4px solid var(--primary-yellow);
        box-shadow: none;
    }

    /* Ürünler Dropdown - Mobil Accordion */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
    }

    .nav-dropdown .has-dropdown {
        border-bottom: 1px solid #f0f0f0;
    }

    .mega-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        flex-direction: column;
        background: transparent;
        transition: max-height 0.35s ease;
        margin: 0;
        padding: 0;
    }

    .nav-dropdown.open .mega-dropdown {
        max-height: 400px;
    }

    /* Dropdown Ok */
    .header-premium .dropdown-arrow {
        transition: transform 0.3s ease;
        opacity: 0.5;
    }

    .header-premium .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
        opacity: 1;
    }

    /* Kategoriler - Sade Liste */
    .mega-categories {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        border: none;
        background: #f8f8f8;
    }

    .mega-category {
        display: block;
        padding: 16px 24px 16px 48px;
        font-size: 15px;
        color: #444;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        transition: all 0.2s ease;
        position: relative;
    }

    .mega-category::before {
        content: '';
        position: absolute;
        left: 28px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: #ddd;
        border-radius: 50%;
    }

    .mega-category:active {
        background: #f0f0f0;
    }

    .mega-category:active::before {
        background: var(--primary-yellow);
    }

    .mega-category span {
        font-size: 15px;
    }

    .mega-category svg {
        display: none;
    }

    /* Tüm Ürünler Linki */
    .mega-view-all {
        display: block;
        padding: 16px 24px 16px 48px;
        font-size: 15px;
        color: #1a1a1a;
        font-weight: 600;
        text-decoration: none;
        background: #f0f0f0;
        position: relative;
    }

    .mega-view-all::before {
        content: '→';
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
    }

    .mega-view-all svg {
        display: none;
    }

    /* Ürün Listesi - Mobilde Göster (Resimsiz) */
    .mega-products {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 0;
        background: #fff;
        border-top: 1px solid #eee;
    }

    .mega-product-list {
        display: flex !important;
        flex-direction: column;
    }

    .mega-product-item {
        display: flex;
        align-items: center;
        padding: 14px 24px 14px 56px;
        font-size: 14px;
        color: #666;
        text-decoration: none;
        border-bottom: 1px solid #f5f5f5;
        transition: background 0.2s ease;
        position: relative;
    }

    .mega-product-item::before {
        content: '–';
        position: absolute;
        left: 40px;
        color: #ccc;
    }

    .mega-product-item:active {
        background: #f8f8f8;
    }

    /* Ürün Resimlerini Gizle */
    .mega-product-item img {
        display: none !important;
    }

    .mega-product-item span {
        font-size: 14px;
    }

    /* Header Dil Seçici Gizle (Mobilde) */
    .header-premium .header-right {
        display: none;
    }

    /* Mobil Dil Seçici (Menü İçinde) */
    .mobile-lang-selector {
        display: block;
        margin-top: auto;
        padding: 20px;
        border-top: 1px solid #eee;
        background: #fafafa;
    }

    .mobile-lang-buttons {
        display: flex;
        gap: 10px;
        justify-content: stretch;
    }

    .mobile-lang-btn {
        flex: 1;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        border-radius: 12px;
        background: #fff;
        border: 2px solid #e0e0e0;
        text-decoration: none;
        transition: all 0.2s ease;
        line-height: 1;
    }

    .mobile-lang-btn:active {
        transform: scale(0.97);
        background: #f5f5f5;
    }

    .mobile-lang-btn.active {
        border-color: var(--primary-yellow);
        background: rgba(250, 191, 30, 0.1);
        box-shadow: 0 0 0 3px rgba(250, 191, 30, 0.2);
    }
}

@media (max-width: 768px) {
    .header-premium {
        height: 56px;
    }

    .header-premium .header-container {
        padding: 8px 16px;
    }

    .header-premium .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-premium .nav-menu-center {
        padding-top: 80px;
    }
}

/* ================================================================
   YENİ MOBİL MENÜ SİSTEMİ - Drill Down Navigation
   ================================================================ */

/* Desktop'ta Gizle */
.mobile-menu-container {
    display: none;
}

@media (max-width: 1024px) {
    /* Eski nav-menu-center'ı gizle */
    .header-premium .nav-menu-center {
        display: none !important;
    }

    /* Desktop dil dropdown'u gizle - mobilde menü içindeki bayraklar kullanılacak */
    .language-dropdown {
        display: none;
    }

    /* Container */
    .mobile-menu-container {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        pointer-events: none;
        visibility: hidden;
    }

    .mobile-menu-container.active {
        pointer-events: auto;
        visibility: visible;
    }

    /* Overlay */
    .mobile-menu-container .mobile-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-container.active .mobile-overlay {
        opacity: 1;
    }

    /* Panel - Sağdan Tam Ekran */
    .mobile-panel {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        width: 100%;
        height: 100%;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-panel.active {
        transform: translateX(0);
    }

    /* Alt paneller sabit - kayma yok, sadece görünürlük */
    .mobile-panel:not([data-panel="main"]) {
        transform: translateX(0) !important;
        transition: none !important;
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-panel:not([data-panel="main"]).active {
        visibility: visible;
        pointer-events: auto;
    }

    /* Alt panellerde sadece menü öğeleri fade animasyonu */
    .mobile-panel:not([data-panel="main"]) .mobile-panel-content .mobile-menu-item {
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    }

    .mobile-panel:not([data-panel="main"]).active .mobile-panel-content .mobile-menu-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Menü elemanları sırayla belirsin */
    .mobile-panel:not([data-panel="main"]).active .mobile-panel-content .mobile-menu-item:nth-child(1) { transition-delay: 0.03s; }
    .mobile-panel:not([data-panel="main"]).active .mobile-panel-content .mobile-menu-item:nth-child(2) { transition-delay: 0.06s; }
    .mobile-panel:not([data-panel="main"]).active .mobile-panel-content .mobile-menu-item:nth-child(3) { transition-delay: 0.09s; }
    .mobile-panel:not([data-panel="main"]).active .mobile-panel-content .mobile-menu-item:nth-child(4) { transition-delay: 0.12s; }
    .mobile-panel:not([data-panel="main"]).active .mobile-panel-content .mobile-menu-item:nth-child(5) { transition-delay: 0.15s; }
    .mobile-panel:not([data-panel="main"]).active .mobile-panel-content .mobile-menu-item:nth-child(6) { transition-delay: 0.18s; }

    /* Panel Header */
    .mobile-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        background: #fafafa;
        border-bottom: 1px solid #eee;
        min-height: 60px;
    }

    .mobile-panel-title {
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
    }

    .mobile-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        color: #666;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .mobile-close-btn:active {
        background: #eee;
    }

    .mobile-back-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
        color: #666;
        font-size: 15px;
        padding: 8px 12px 8px 4px;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .mobile-back-btn:active {
        background: #eee;
    }

    /* Panel Content */
    .mobile-panel-content {
        flex: 1;
        overflow-y: auto;
        padding: 8px 0;
    }

    /* Menu Items */
    .mobile-menu-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        background: transparent;
        border: none;
        border-bottom: 1px solid #f5f5f5;
        cursor: pointer;
        transition: background 0.15s ease;
        text-align: left;
    }

    .mobile-menu-item:active {
        background: #f5f5f5;
    }

    .mobile-menu-item.has-submenu svg {
        color: #999;
    }

    .mobile-menu-item.active {
        color: #1a1a1a;
        background: rgba(250, 191, 30, 0.1);
        border-left: 4px solid var(--primary-yellow);
    }

    /* Section Title */
    .mobile-section-title {
        padding: 20px 20px 8px;
        font-size: 12px;
        font-weight: 600;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Product Items */
    .mobile-product-item {
        padding-left: 32px;
        font-weight: 400;
        color: #555;
    }

    /* View All - Diğer menü öğeleri gibi */
    .mobile-view-all {
        padding: 16px 20px;
        color: #333;
        font-weight: 500;
        font-size: 16px;
        background: transparent;
        border-bottom: 1px solid #f5f5f5;
    }

    .mobile-view-all svg {
        color: #999;
    }

    .mobile-view-all:active {
        background: #f5f5f5;
    }

    /* Panel Footer */
    .mobile-panel-footer {
        padding: 20px;
        border-top: 1px solid #eee;
        background: #fafafa;
    }

    .mobile-panel-footer .mobile-lang-selector {
        padding: 0;
        border-top: none;
        background: transparent;
    }

    .mobile-panel-footer .mobile-lang-buttons {
        display: flex;
        gap: 10px;
    }

    .mobile-panel-footer .mobile-lang-btn {
        flex: 1;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        background: #fff;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mobile-panel-footer .mobile-lang-btn:active {
        transform: scale(0.97);
        background: #f5f5f5;
    }

    .mobile-panel-footer .mobile-lang-btn.active {
        background: rgba(250, 191, 30, 0.1);
        border-color: var(--primary-yellow);
        box-shadow: 0 0 0 3px rgba(250, 191, 30, 0.2);
    }

    /* Hamburger Button - Mobil */
    .header-premium .mobile-menu-btn,
    .mobile-menu-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: transparent !important;
        border: none !important;
        cursor: pointer;
        z-index: 10001;
        padding: 8px;
        position: relative;
        flex-shrink: 0;
    }

    .header-premium .mobile-menu-btn span,
    .mobile-menu-btn span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 20px;
        height: 2px;
        min-height: 2px;
        background-color: #1a1a1a !important;
        border-radius: 1px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
        flex-shrink: 0;
    }

    /* Hamburger -> X Animasyonu */
    .header-premium .mobile-menu-btn.active span:nth-child(1),
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(2px) rotate(45deg);
        background-color: #1a1a1a !important;
    }

    .header-premium .mobile-menu-btn.active span:nth-child(2),
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0);
    }

    .header-premium .mobile-menu-btn.active span:nth-child(3),
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-2px) rotate(-45deg);
        background-color: #1a1a1a !important;
    }

    /* Header Right Hide */
    .header-premium .header-right {
        display: none;
    }
}

/* ===== DARK FOOTER - ADMIN MANAGED ===== */
.footer-dark {
    background: linear-gradient(180deg, #0f0f12 0%, #0a0a0d 100%);
    color: #fff;
    padding: 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-dark .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-dark .footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: 60px;
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Brand */
.footer-dark .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-dark .footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-dark .footer-logo:hover {
    opacity: 1;
}

.footer-dark .footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 300px;
}

/* Social Links */
.footer-dark .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-dark .footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-dark .footer-social-link:hover {
    background: var(--primary-yellow, #FABF1E);
    border-color: var(--primary-yellow, #FABF1E);
    color: #0f0f12;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(250, 191, 30, 0.3);
}

.footer-dark .footer-social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Menus */
.footer-dark .footer-menus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 40px;
}

.footer-dark .footer-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-dark .footer-menu-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 4px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-yellow, #FABF1E);
    display: inline-block;
}

.footer-dark .footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-dark .footer-menu-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
}

.footer-dark .footer-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary-yellow, #FABF1E);
    transition: width 0.3s ease;
}

.footer-dark .footer-menu-link:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-dark .footer-menu-link:hover::before {
    width: 100%;
}

/* Footer Contact */
.footer-dark .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-dark .footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-dark .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-dark .footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-yellow, #FABF1E);
    opacity: 0.8;
}

.footer-dark .footer-contact-item a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-dark .footer-contact-item a:hover {
    color: var(--primary-yellow, #FABF1E);
}

/* Footer Bottom */
.footer-dark .footer-bottom {
    padding: 24px 0;
}

.footer-dark .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-dark .footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-dark .footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-dark .footer-legal-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-dark .footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-dark .footer-main {
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
    }

    .footer-dark .footer-contact {
        grid-column: span 2;
        margin-top: 20px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 768px) {
    .footer-dark .footer-container {
        padding: 0 24px;
    }

    .footer-dark .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 0 40px;
    }

    .footer-dark .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-dark .footer-description {
        max-width: 100%;
    }

    .footer-dark .footer-social {
        justify-content: center;
    }

    .footer-dark .footer-menus {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
    }

    .footer-dark .footer-menu {
        align-items: center;
    }

    .footer-dark .footer-menu-title {
        display: inline-block;
    }

    .footer-dark .footer-menu-list {
        align-items: center;
    }

    .footer-dark .footer-menu-link:hover {
        padding-left: 0;
    }

    .footer-dark .footer-contact {
        grid-column: auto;
        align-items: center;
        text-align: center;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .footer-dark .footer-contact-list {
        align-items: center;
    }

    .footer-dark .footer-contact-item {
        justify-content: center;
    }

    .footer-dark .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-dark .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-dark .footer-menus {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-dark .footer-social-link {
        width: 44px;
        height: 44px;
    }
}

/* ===== HOMEPAGE STATS SECTION - FOOTER ÜSTÜ ===== */
.homepage-stats {
    padding: clamp(30px, 5vw, 60px) 0;
    background: var(--primary-yellow, #FABF1E);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.homepage-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 4vw, 60px);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.homepage-stat-card {
    text-align: center;
    transition: opacity 0.3s ease;
    min-width: 0;
    overflow: hidden;
}

.homepage-stat-card:hover {
    opacity: 0.9;
}

.homepage-stat-value {
    font-size: clamp(18px, 5vw, 48px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: clamp(4px, 1vw, 8px);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.homepage-stat-label {
    font-size: clamp(8px, 1.5vw, 13px);
    font-weight: 500;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: clamp(0.02em, 0.5vw, 0.08em);
    line-height: 1.4;
    word-break: break-word;
    hyphens: auto;
}

/* ===== HOMEPAGE CONTACT CTA - FOOTER HEMEN ÜSTÜ ===== */
.homepage-contact-cta {
    padding: 80px 0;
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage-contact-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.homepage-contact-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.homepage-contact-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

.homepage-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: var(--primary-yellow, #FABF1E);
    color: #1a1a1a;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease;
}

.homepage-contact-btn:hover {
    background: #e6a91a;
}

/* Responsive Stats & Contact CTA */
@media (max-width: 768px) {
    .homepage-stats-grid {
        max-width: 100%;
    }

    .homepage-contact-cta {
        padding: 60px 0;
    }

    .homepage-contact-cta-title {
        font-size: 28px;
    }

    .homepage-contact-cta-text {
        font-size: 15px;
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .homepage-contact-cta {
        padding: 50px 0;
    }

    .homepage-contact-cta-title {
        font-size: 24px;
    }

    .homepage-contact-cta-text {
        font-size: 14px;
    }
}

/* ===== ANNOUNCEMENT POPUP ===== */
.announcement-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.announcement-popup.active {
    opacity: 1;
    visibility: visible;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}

.announcement-modal {
    position: relative;
    width: 90%;
    max-width: 520px;
    max-height: 85vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.announcement-popup.active .announcement-modal {
    transform: scale(1) translateY(0);
}

.announcement-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announcement-close:hover {
    background: var(--primary-yellow, #FABF1E);
    transform: rotate(90deg);
}

.announcement-close svg {
    width: 18px;
    height: 18px;
    stroke: #333;
}

.announcement-image {
    width: 100%;
    max-height: 280px;
    overflow: hidden;
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-content {
    padding: 28px 32px 32px;
    text-align: center;
}

.announcement-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-brown, #2D2D2D);
    margin-bottom: 16px;
    line-height: 1.3;
}

.announcement-body {
    font-size: 15px;
    color: var(--text-gray, #666);
    line-height: 1.7;
    margin-bottom: 24px;
}

.announcement-body a {
    color: var(--primary-yellow, #FABF1E);
    text-decoration: underline;
}

.announcement-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--primary-yellow, #FABF1E);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.announcement-cta:hover {
    background: #e6a800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 191, 30, 0.4);
}

.announcement-dontshow-wrapper {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.announcement-dontshow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.announcement-dontshow input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-yellow, #FABF1E);
    cursor: pointer;
    border-radius: 4px;
}

.announcement-dontshow:hover {
    color: #666;
}

.announcement-dontshow span {
    font-weight: 500;
}

/* Announcement Popup - Mobile Responsive */
@media (max-width: 768px) {
    .announcement-modal {
        width: 95%;
        max-width: 380px;
        max-height: 90vh;
        border-radius: 16px;
    }

    .announcement-image {
        max-height: 200px;
    }

    .announcement-content {
        padding: 20px 24px 28px;
    }

    .announcement-title {
        font-size: 22px;
    }

    .announcement-body {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .announcement-cta {
        width: 100%;
        padding: 14px 24px;
    }

    .announcement-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 380px) {
    .announcement-modal {
        width: 98%;
        margin: 0 4px;
    }

    .announcement-content {
        padding: 16px 20px 24px;
    }

    .announcement-title {
        font-size: 20px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .announcement-popup,
    .announcement-modal {
        transition: opacity 0.15s ease;
    }

    .announcement-modal {
        transform: none;
    }

    .announcement-popup.active .announcement-modal {
        transform: none;
    }
}

/* ================================================================
   DEALERS DROPDOWN - Bayiler Menüsü
   ================================================================ */

/* Dealers Dropdown Container */
.dealers-nav-dropdown {
    position: relative;
    z-index: 100;
}

/* Dealers Dropdown Menu */
.dealers-dropdown {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    padding-top: 4px;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px;
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 9999;
}

/* Bridge to prevent gap issues */
.dealers-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 24px;
    background: transparent;
}

/* Show on hover */
.dealers-nav-dropdown:hover .dealers-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Dropdown Items */
.dealers-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dealers-dropdown-item:hover {
    background: var(--primary-yellow);
    color: #1a1a1a;
}

.dealers-dropdown-item svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.dealers-dropdown-item:hover svg {
    opacity: 1;
}

/* Active state for dealers dropdown items */
.dealers-dropdown-item.active {
    background: rgba(250, 191, 30, 0.15);
    color: #1a1a1a;
}

/* Mobile Dealers Menu Item with icon */
@media (max-width: 1024px) {
    .mobile-panel[data-panel="dealers"] .mobile-menu-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
    }

    .mobile-panel[data-panel="dealers"] .mobile-menu-item svg {
        flex-shrink: 0;
        opacity: 0.6;
    }
}

@media (min-width: 769px) {
    #heroBgImage {
        margin-top: -100px;
    }