/* ===== GENPER MODERN CSS ===== */
@charset "UTF-8";

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #437A5F 0%, #2f5a45 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite;
}

.preloader-logo img {
    height: 80px;
    filter: brightness(0) invert(1);
}

.preloader-spinner {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.spinner-ring {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #C8D987;
    border-radius: 50%;
    animation: spinnerRotate 1s linear infinite;
}

.preloader-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spinnerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Custom Green & Purple Palette */
    --primary: #437A5F;          /* Koyu yeşil */
    --primary-dark: #2f5a45;     /* Darker green */
    --primary-light: #5a9a78;    /* Lighter green */
    --secondary: #C8D987;        /* Açık yeşil/lime */
    --accent: #649F3C;           /* Koyu yeşil */
    --accent-light: #C8D987;     /* Açık yeşil */
    --accent-soft: #D5BBAA;      /* Bej/krem */
    --dark: #2f5a45;
    --light: #f5f2ef;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --gradient-primary: linear-gradient(135deg, #437A5F 0%, #2f5a45 100%);
    --gradient-secondary: linear-gradient(135deg, #C8D987 0%, #a8c060 100%);
    --gradient-accent: linear-gradient(135deg, #649F3C 0%, #4a7a2d 100%);
    --gradient-hero: linear-gradient(135deg, rgba(67, 122, 95, 0.95) 0%, rgba(47, 90, 69, 0.95) 100%);
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', var(--font-primary);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* SVG Logo Optimization */
.logo img {
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 95, 122, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3d2f 100%);
    padding: 0.625rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.top-bar-item:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    opacity: 0.9;
}

.top-bar-divider {
    width: 1px;
    height: 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.top-bar-hours {
    cursor: default;
    background: transparent !important;
}

.top-bar-hours:hover {
    transform: none !important;
    background: transparent !important;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-social {
    display: flex;
    gap: 0.5rem;
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-social a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 217, 135, 0.3);
    border-color: transparent;
}

.top-bar-social svg {
    width: 14px;
    height: 14px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.lang-btn svg {
    width: 15px;
    height: 15px;
    opacity: 0.9;
}

.lang-btn .lang-arrow {
    width: 11px;
    height: 11px;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.language-selector:hover .lang-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: var(--white);
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.lang-option img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-option:hover {
    background: linear-gradient(90deg, var(--gray-100) 0%, transparent 100%);
    color: var(--primary);
    padding-left: 1.25rem;
}

.lang-option.active {
    color: var(--primary);
    background: rgba(67, 122, 95, 0.08);
}

.lang-option.active::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    font-size: 0.7rem;
    color: var(--primary);
}

/* ===== HEADER V2 ===== */
.header-v2 {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-normal);
}

.header-v2.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.header-v2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.header-v2.scrolled .header-v2-inner {
    padding: 1.15rem 3rem;
}

/* Logo Ortada */
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.logo-center img {
    height: 63px;
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 8px rgba(67, 122, 95, 0.3));
}

.logo-center:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(67, 122, 95, 0.5));
}

.logo-center .logo-dark {
    display: none;
}

.logo-center .logo-light {
    display: block;
}

.logo-center .logo-sticky {
    display: none;
}

/* Sticky durumda - Footer logosu görünür, diğerleri gizli */
.header-v2.scrolled .logo-center .logo-dark,
.header-v2.scrolled .logo-center .logo-light {
    display: none;
}

.header-v2.scrolled .logo-center .logo-sticky {
    display: block;
}

.header-v2.scrolled .logo-center img {
    height: 45px;
}

/* Sol ve Sağ Navigasyon */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link-v2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-fast);
}

.header-v2.scrolled .nav-link-v2 {
    color: var(--gray-700);
}

.nav-link-v2:hover {
    color: var(--secondary);
}

.header-v2.scrolled .nav-link-v2:hover {
    color: var(--primary);
}

.nav-link-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-normal);
}

.nav-link-v2:hover::after,
.nav-link-v2.active::after {
    width: 100%;
}

.header-v2.scrolled .nav-link-v2::after {
    background: var(--primary);
}

/* Teklif Al Butonu */
.header-quote-btn-v2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(100, 159, 60, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-quote-btn-v2 svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.header-quote-btn-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 159, 60, 0.5);
}

.header-v2.scrolled .header-quote-btn-v2 {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(67, 122, 95, 0.4);
}

/* Search Toggle */
.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: var(--primary);
}

.search-toggle svg {
    width: 20px;
    height: 20px;
}

/* Alt Çizgi */
.header-line {
    width: 100%;
    max-width: 100vw;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
    margin-left: auto;
    margin-right: auto;
}

.header-v2.scrolled .header-line {
    background: rgba(0, 0, 0, 0.1);
}

/* Dropdown Menü */
.header-v2 .dropdown {
    position: relative;
}

.header-v2 .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    margin-top: 0.5rem;
    z-index: 1002;
}

.header-v2 .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-v2 .dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.header-v2 .dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Mega Menü */
.mega-dropdown {
    position: relative !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 800px;
    max-width: 90vw;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
    overflow: hidden;
    z-index: 1002;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* SOL menü - linkin altında sola hizalı */
.mega-dropdown.mega-left .mega-menu {
    left: 0;
    right: auto;
    transform: translateY(10px);
}

.mega-dropdown.mega-left:hover .mega-menu {
    transform: translateY(0);
}

/* SAĞ menü - linkin altında sağa hizalı */
.mega-dropdown.mega-right .mega-menu {
    left: auto;
    right: 0;
    transform: translateY(10px);
}

.mega-dropdown.mega-right:hover .mega-menu {
    transform: translateY(0);
}

/* Genişlik sınıfları */
.mega-menu.mega-2col-width {
    width: 600px;
}

.mega-menu.medium {
    width: 700px;
}

.mega-menu.compact {
    width: 650px;
}

/* CTA'lı menü genişlikleri */
.mega-menu.mega-2col-cta {
    width: 700px;
    max-width: 95vw;
}

.mega-menu.mega-3col-cta {
    width: 900px;
    max-width: 95vw;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 0;
    width: 100%;
}

/* 3 kolonlu mega menü (CTA olmayan) */
.mega-menu-inner.cols-3 {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
}

/* 2 kolonlu mega menü */
.mega-menu-inner.mega-2cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

/* 3 kolonlu mega menü */
.mega-menu-inner.mega-3cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* 3 kolonlu mega menü (CTA'lı) - 2 içerik + 1 CTA */
.mega-menu-inner.cols-3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr)) minmax(180px, 200px);
    gap: 0;
}

.mega-menu-inner.cols-3 .mega-column.mega-cta {
    min-width: 180px;
    max-width: 200px;
}

/* 4 kolonlu mega menü (CTA'lı) - 3 içerik + 1 CTA */
.mega-menu-inner.cols-4 {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr)) minmax(200px, 220px);
    gap: 0;
}

/* CTA kolonu daha dar */
.mega-menu-inner.cols-4 .mega-column.mega-cta {
    min-width: 200px;
    max-width: 220px;
}

/* 2 kolonlu mega menü dar genişlik */
.mega-menu.mega-2col-width {
    width: 600px !important;
    max-width: 90vw;
}

/* 2 kolonlu menü içeriği eşit dağıt */
.mega-menu-inner.mega-2cols .mega-column {
    flex: 1 1 50%;
}

/* Mega menü responsive düzenlemeler */
@media (max-width: 1400px) {
    .mega-menu {
        width: 750px;
    }
    
    .mega-menu.mega-2col-width {
        width: 550px;
    }
    
    .mega-menu.medium {
        width: 650px;
    }
}

@media (max-width: 1200px) {
    .mega-menu {
        width: 700px;
    }
    
    .mega-menu.mega-2col-width {
        width: 500px;
    }
    
    .mega-menu.medium {
        width: 600px;
    }
    
    .mega-menu-inner.mega-2cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .mega-menu {
        position: static;
        width: 100%;
        max-width: 100% !important;
        transform: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 0.5rem;
    }
    
    .mega-dropdown:hover .mega-menu {
        transform: none;
    }
    
    .mega-menu-inner.mega-2cols,
    .mega-menu-inner.mega-3cols {
        grid-template-columns: 1fr;
    }
    
    .mega-2cols .mega-column,
    .mega-3cols .mega-column {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 1rem;
    }
    
    .mega-2cols .mega-column:last-child,
    .mega-3cols .mega-column:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .mega-menu {
        border-radius: 12px;
        width: 100%;
    }
    
    .mega-column {
        padding: 1rem;
    }
    
    .mega-item {
        padding: 0.75rem;
    }
}

.mega-3cols .mega-column,
.mega-2cols .mega-column {
    padding: 1.5rem;
    border-right: 1px solid var(--gray-200);
    min-width: 0; /* Taşmayı önle */
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.mega-3cols .mega-column:last-child,
.mega-2cols .mega-column:last-child {
    border-right: none;
}

/* Mega Menü Item - Metin taşmasını önle */
.mega-item-title {
    display: block;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.mega-item-desc {
    display: block;
    font-size: 0.85rem;
    color: #666;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Mega Menü Item - Resimli ve Açıklamalı */
.mega-3cols .mega-item,
.mega-2cols .mega-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.mega-3cols .mega-item:hover,
.mega-2cols .mega-item:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.mega-3cols .mega-item-image,
.mega-2cols .mega-item-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-3cols .mega-item-image img,
.mega-2cols .mega-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none !important;
    transition: transform 0.3s ease;
}

.mega-3cols .mega-item:hover .mega-item-image img,
.mega-2cols .mega-item:hover .mega-item-image img {
    transform: scale(1.1);
}

.mega-3cols .mega-item-content,
.mega-2cols .mega-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-3cols .mega-item-title,
.mega-2cols .mega-item-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    transition: color 0.2s ease;
    line-height: 1.3;
}

.mega-3cols .mega-item:hover .mega-item-title,
.mega-2cols .mega-item:hover .mega-item-title {
    color: var(--primary);
}

.mega-3cols .mega-item-desc,
.mega-2cols .mega-item-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 2 kolonlu mega menü (eski yapı için geriye uyumluluk) */
.mega-menu-inner.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* CTA olmayan mega menüler için daha dar genişlik */
.mega-menu.compact {
    max-width: 750px;
}

.mega-menu.medium {
    max-width: 850px;
}

.mega-column {
    padding: 1.5rem;
    border-right: 1px solid var(--gray-200);
}

.mega-column:last-child {
    border-right: none;
}

.mega-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.mega-title svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

/* 3 Kolonlu Mega Menü Başlıkları */
.mega-3cols .mega-title,
.mega-2cols .mega-title {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
    color: var(--primary-dark);
}

.mega-3cols .mega-title svg,
.mega-2cols .mega-title svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.mega-item {
    display: block;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.mega-item:hover {
    background: var(--gray-100);
}

.mega-item-title {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.mega-item:hover .mega-item-title {
    color: var(--primary);
}

.mega-item-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Mega CTA Bölümü */
.mega-cta {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    padding: 1.5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 200px;
}

.mega-cta-content {
    text-align: center;
    width: 100%;
}

.mega-cta-content img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    margin: 0 0 1rem 0;
    box-shadow: var(--shadow-md);
}

.mega-cta-content h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.mega-cta-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.mega-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.mega-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 122, 95, 0.4);
}

.mega-cta-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobil Menü Overlay - Desktop'ta gizli */
.mobile-menu-overlay {
    display: none;
}

/* Mobil Menü Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

.header-v2.scrolled .menu-toggle span {
    background: var(--gray-800);
}

/* Eski header stilleri (uyumluluk için) */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    transition: var(--transition-normal);
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.logo .logo-dark {
    display: none;
}

.logo .logo-light {
    display: block;
}

.header.scrolled .logo .logo-dark {
    display: block;
}

.header.scrolled .logo .logo-light {
    display: none;
}

.header.scrolled .logo img {
    height: 40px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.header.scrolled .nav-link {
    color: var(--gray-700);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 1rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 2rem;
}

/* Wide Dropdown for Products */
.dropdown-menu-wide {
    min-width: 500px;
    padding: 1.5rem;
    left: 0;
    transform: translateY(10px);
}

.dropdown:hover .dropdown-menu-wide {
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.dropdown-item-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.dropdown-item-card:hover {
    background: var(--gray-100);
}

.dropdown-item-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.dropdown-item-card strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.dropdown-item-card span {
    display: block;
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-quote-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(100, 159, 60, 0.4);
}

.header-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 159, 60, 0.5);
}

.header-quote-btn svg {
    width: 18px;
    height: 18px;
}

.header.scrolled .header-quote-btn {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(67, 122, 95, 0.4);
}

.header.scrolled .header-quote-btn:hover {
    box-shadow: 0 6px 20px rgba(67, 122, 95, 0.5);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.header.scrolled .menu-toggle span {
    background: var(--gray-800);
}

/* ===== HERO SECTION - NEW SLIDER ===== */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-video {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide-video.active-video {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 90, 69, 0.85) 0%, rgba(67, 122, 95, 0.75) 50%, rgba(47, 90, 69, 0.85) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0 8rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
    min-height: 300px;
}

.hero-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    pointer-events: none;
    max-width: 700px;
}

.hero-text-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-text-slide .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 217, 135, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(200, 217, 135, 0.3);
}

.hero-text-slide h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text-slide h1 span {
    color: var(--secondary);
}

.hero-text-slide p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btns .btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #649F3C 0%, #437A5F 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(100, 159, 60, 0.4);
}

.hero-btns .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 159, 60, 0.5);
}

.hero-btns .btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btns .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    min-width: 140px;
}

.stat-box strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 10;
}

.hero-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    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;
}

.hero-arrow:hover {
    background: #649F3C;
    border-color: #649F3C;
    transform: scale(1.1);
}

.hero-arrow svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.hero-progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.hero-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.hero-progress-fill {
    height: 100%;
    width: 0;
    background: var(--secondary);
    border-radius: 3px;
}

.hero-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.hero-counter .current-num {
    color: var(--secondary);
    font-size: 1.25rem;
}

.hero-counter .divider {
    opacity: 0.5;
}

.hero-counter .total-num {
    opacity: 0.7;
}

/* Video Sound Button */
.video-sound-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-sound-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-sound-btn svg {
    width: 24px;
    height: 24px;
}

/* Hero Empty State */
.hero-empty {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== HERO SECTION - ESKİ ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title span {
    color: var(--secondary);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-number span {
    color: var(--secondary);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--secondary);
    border-radius: 20px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content h3 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--gray-500);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 8rem 0;
    background: var(--gray-100);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.product-card:hover .product-image img {
    transform: scale(1.1) translateZ(0);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 1rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.product-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.product-title {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.product-description {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-600);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 6rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.05'%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");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stats-item {
    text-align: center;
    padding: 2rem;
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stats-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 8rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-secondary);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.service-link:hover {
    gap: 1rem;
    color: var(--accent);
}

/* ===== NEWS SECTION ===== */
.news {
    padding: 8rem 0;
    background: var(--gray-100);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    display: inline-block;
    background: var(--gray-100);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.news-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.news-card:hover .news-title {
    color: var(--primary);
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--gray-600);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 8rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand .logo img {
    height: 50px;
    width: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-social svg,
.footer-social i {
    width: 20px;
    height: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Footer Catalog Download */
.footer-catalog {
    margin-top: 1.5rem;
}

.catalog-download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.catalog-download-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.catalog-download-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.catalog-download-btn span {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.catalog-download-btn span strong {
    font-size: 0.95rem;
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    z-index: 999;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-widget svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 75px;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .products-grid,
    .services-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dropdown-menu-wide {
        min-width: 400px;
    }
    
    /* Hero responsive */
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text-slide {
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        width: 100%;
    }
    
    .hero-text-slide.active {
        transform: translateX(-50%) translateY(0);
    }
    
    .hero-text-slide p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .hero-stats {
        gap: 2rem;
    }

    .top-bar-left {
        gap: 1rem;
    }

    .top-bar-item span {
        display: none;
    }

    .dropdown-menu-wide {
        min-width: 320px;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    /* Header V2 Mobil */
    .header-v2 {
        top: 0;
    }

    .header-v2-inner {
        padding: 1rem 1.5rem;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo-center {
        position: relative;
        left: 0;
        transform: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobil Menü Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 1000;
        padding: 80px 1.5rem 2rem;
        overflow-y: auto;
    }

    .mobile-menu-overlay.active {
        display: flex;
    }

    .mobile-menu-overlay .mobile-nav-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        max-width: 400px;
    }

    .mobile-menu-overlay .nav-link-v2 {
        color: var(--gray-800);
        font-size: 1.1rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .mobile-menu-overlay .nav-link-v2:hover {
        background: var(--gray-100);
    }

    .mobile-menu-overlay .dropdown {
        width: 100%;
    }

    .mobile-menu-overlay .mega-menu,
    .mobile-menu-overlay .dropdown-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border-radius: 12px;
        margin-top: 0.5rem;
        display: none;
    }

    .mobile-menu-overlay .dropdown.open .mega-menu,
    .mobile-menu-overlay .dropdown.open .dropdown-menu {
        display: block;
    }

    .mobile-menu-overlay .mega-menu-inner {
        grid-template-columns: 1fr !important;
    }

    .mobile-menu-overlay .mega-column {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 1rem;
    }

    .mobile-menu-overlay .mega-column:last-child {
        border-bottom: none;
    }

    .mobile-menu-overlay .mega-cta {
        display: none;
    }

    .mobile-menu-overlay .mobile-cta-btn {
        display: block;
        width: 100%;
        max-width: 400px;
        padding: 1rem;
        background: var(--gradient-primary);
        color: var(--white);
        text-align: center;
        border-radius: 50px;
        font-weight: 600;
        margin-top: 1rem;
    }

    .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        background: var(--gray-100);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-close svg {
        width: 20px;
        height: 20px;
        stroke: var(--gray-700);
    }

    /* Eski nav-left.active stilleri (geriye uyumluluk) */
    .header-v2 .nav-left.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }

    .header-v2 .nav-left.active .nav-link-v2 {
        color: var(--gray-800);
        font-size: 1.25rem;
    }

    .header-v2 .nav-left.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--gray-100);
        margin-top: 0.5rem;
    }

    /* Mega Menü Mobil */
    .header-v2 .nav-left.active .mega-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 12px;
        margin-top: 0.5rem;
    }

    .header-v2 .nav-left.active .mega-menu-inner {
        grid-template-columns: 1fr;
    }

    .header-v2 .nav-left.active .mega-column {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 1rem;
    }

    .header-v2 .nav-left.active .mega-column:last-child {
        border-bottom: none;
    }

    .header-v2 .nav-left.active .mega-cta {
        display: none;
    }

    /* Eski Header Mobil */
    .header {
        top: 0;
    }

    .header-quote-btn span {
        display: none;
    }

    .header-quote-btn {
        padding: 0.75rem;
        border-radius: 50%;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--gray-800);
        font-size: 1.25rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .products-grid,
    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand .logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-wrapper {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-catalog {
        display: flex;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* WhatsApp ve Back to Top mobil pozisyon */
    .whatsapp-widget {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        left: 1rem;
    }
    
    .whatsapp-widget svg {
        width: 26px;
        height: 26px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
    }
    
    .about-image::before {
        display: none;
    }
    
    /* Hero mobil düzenlemeleri */
    .hero-new {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 2rem;
    }
    
    .hero-content-wrapper {
        padding: 2rem 0 4rem;
    }
    
    .hero-text {
        min-height: 400px;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .stat-box {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-box strong {
        font-size: 1.75rem;
    }
    
    .stat-box span {
        font-size: 0.75rem;
    }
    
    .hero-nav {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
    }
    
    .hero-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-progress-wrapper {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    /* Hero mobil */
    .hero-text-slide h1 {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        max-width: 200px;
    }
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
    --primary: #5a9a78;
    --primary-dark: #437A5F;
    --primary-light: #7ab896;
    --secondary: #C8D987;
    --accent: #7ab44d;
    --dark: #e9ecef;
    --light: #1a1a2e;
    --white: #16213e;
    --gray-100: #1a1a2e;
    --gray-200: #252542;
    --gray-300: #2d2d4a;
    --gray-400: #4a4a6a;
    --gray-500: #7a7a9a;
    --gray-600: #a0a0b8;
    --gray-700: #c8c8d8;
    --gray-800: #e0e0e8;
    --gray-900: #f0f0f5;
    
    --gradient-primary: linear-gradient(135deg, #5a9a78 0%, #437A5F 100%);
    --gradient-secondary: linear-gradient(135deg, #C8D987 0%, #a8c060 100%);
    --gradient-hero: linear-gradient(135deg, rgba(90, 154, 120, 0.95) 0%, rgba(67, 122, 95, 0.95) 100%);
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.5);
}

[data-theme="dark"] body {
    background: #0f0f1a;
    color: var(--gray-800);
}

[data-theme="dark"] .header-v2.scrolled,
[data-theme="dark"] .header.scrolled {
    background: rgba(22, 33, 62, 0.98);
}

[data-theme="dark"] .header-v2.scrolled .nav-link-v2,
[data-theme="dark"] .header.scrolled .nav-link {
    color: var(--gray-700);
}

[data-theme="dark"] .logo-center .logo-dark {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] .dropdown-menu,
[data-theme="dark"] .mega-menu {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
}

[data-theme="dark"] .dropdown-item:hover {
    background: var(--gray-200);
}

[data-theme="dark"] .product-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .news-card,
[data-theme="dark"] .testimonial-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
}

[data-theme="dark"] .section-badge {
    background: var(--gray-200);
    color: var(--secondary);
}
/* ============================================
   HEADER EKSTRA STILLER
   - Mobil Menu Toggle
   - Header Line
   - Top Bar Saat
   ============================================ */

/* Mobil Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 1rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Header Line */
.header-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gray-200) 20%, var(--gray-200) 80%, transparent 100%);
    opacity: 0.6;
}

/* Top Bar Saat */
.top-bar-hours {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.top-bar-hours svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    z-index: 1002;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

/* Mobile Dropdown Toggle */
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active svg {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }
    
    .header-quote-btn-v2 {
        display: none;
    }
    
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .header-v2-inner {
        justify-content: space-between;
    }
}
/* ============================================
   STICKY HEADER & MOBILE MENU STYLES
   ============================================ */

/* Sticky Header Transition */
.header-v2 {
    transition: all 0.3s ease;
}

.top-bar {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 80px 30px 30px;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-items .nav-link-v2 {
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--dark);
}

.mobile-nav-items .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    display: none;
    padding-left: 1rem;
}

.mobile-nav-items .mega-column {
    border: none;
    padding: 0.5rem 0;
}

.mobile-nav-items .mega-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.mobile-nav-items .mega-item {
    padding: 0.5rem 0;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
}

.search-form {
    width: 90%;
    max-width: 600px;
    display: flex;
    gap: 1rem;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary);
}

.search-submit {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
/* ============================================
   TEKLİF MODAL STYLLERİ
   ============================================ */

.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quote-modal.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.quote-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    z-index: 1;
}

.quote-modal.active .quote-modal-content {
    transform: translateY(0);
}

.quote-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quote-modal-close:hover {
    background: var(--gray-200);
}

.quote-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-700);
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.quote-modal-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.quote-modal-header p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.quote-form .form-group {
    margin-bottom: 1rem;
}

.quote-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.quote-form textarea {
    resize: vertical;
    min-height: 80px;
}

.quote-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 480px) {
    .quote-modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .quote-modal-header h3 {
        font-size: 1.3rem;
    }
}


/* ===== PROMO BANNER STYLES ===== */
.promo-banner {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.promo-banner-primary {
    background: var(--primary);
}

.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.promo-banner-text {
    flex: 1;
}

.promo-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-banner-text h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.promo-banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.promo-banner-action .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.promo-banner-action .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== STATS V2 SECTION ===== */
.stats-v2 {
    padding: 5rem 0;
    background: var(--dark);
    position: relative;
}

.stats-v2 .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats-v2 .stats-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stats-v2 .stats-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
}

.stats-v2 .stats-item:hover .stats-icon {
    background: var(--secondary);
    transform: translateY(-5px);
}

.stats-v2 .stats-icon svg,
.stats-v2 .stats-icon i {
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: var(--secondary);
    transition: var(--transition-normal);
}

.stats-v2 .stats-item:hover .stats-icon svg,
.stats-v2 .stats-item:hover .stats-icon i {
    color: var(--white);
}

.stats-v2 .stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-v2 .stats-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* Promo Banner & Stats V2 Responsive */
@media (max-width: 991px) {
    .promo-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .promo-banner-text h2 {
        font-size: 1.8rem;
    }
    
    .promo-banner-action {
        width: 100%;
    }
    
    .promo-banner-action .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-v2 .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-v2 .stats-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .promo-banner {
        padding: 3rem 0;
    }
    
    .promo-banner-text h2 {
        font-size: 1.5rem;
    }
    
    .promo-banner-text p {
        font-size: 1rem;
    }
    
    .stats-v2 .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-v2 .stats-item {
        padding: 1.5rem 1rem;
    }
    
    .stats-v2 .stats-icon {
        width: 70px;
        height: 70px;
    }
    
    .stats-v2 .stats-icon svg,
    .stats-v2 .stats-icon i {
        width: 32px;
        height: 32px;
        font-size: 32px;
    }
    
    .stats-v2 .stats-number {
        font-size: 2rem;
    }
}
