/* ===================================================================
   Vatan Baharat - Style
   Colors: warm spice tones
   =================================================================== */

:root {
    --color-primary: #a83208;
    --color-primary-dark: #7c2506;
    --color-primary-light: #c94a12;
    --color-biber: #6b1a0f;
    --color-accent: #b8860b;
    --color-accent-light: #d4a017;
    --color-olive: #4a5d42;
    --color-warm: #5c3d2e;
    --color-cream: #faf6f0;
    --color-cream-dark: #f3ebe0;
    --color-dark: #1a1614;
    --color-dark-soft: #2a2420;
    --color-text: #3d3835;
    --color-text-light: #6b6560;
    --color-white: #ffffff;
    --color-border: rgba(104, 40, 15, 0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 4px 24px rgba(26, 22, 20, 0.06);
    --shadow-lg: 0 16px 48px rgba(26, 22, 20, 0.1);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea { font: inherit; }

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

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}
.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.5));
}
.navbar.scrolled .logo-img {
    filter: none;
    height: 64px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
}
.navbar.scrolled .nav-menu a { color: var(--color-text); }
.nav-menu a:hover { color: var(--color-white); }
.navbar.scrolled .nav-menu a:hover { color: var(--color-primary); }
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-light);
    transition: var(--transition);
}
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}
.navbar.scrolled .nav-toggle span { background: var(--color-dark); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 23, 0.55);
    z-index: 1;
}

/* Slider dots */
.hero-slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero-dot.active {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
}
.hero-dot:hover {
    border-color: var(--color-white);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(251, 191, 36, 0.4), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(251, 146, 60, 0.3), transparent),
        radial-gradient(3px 3px at 50% 30%, rgba(252, 211, 77, 0.25), transparent),
        radial-gradient(2px 2px at 70% 70%, rgba(251, 191, 36, 0.35), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(251, 146, 60, 0.3), transparent),
        radial-gradient(3px 3px at 20% 80%, rgba(252, 211, 77, 0.2), transparent),
        radial-gradient(2px 2px at 60% 10%, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(2px 2px at 80% 90%, rgba(251, 146, 60, 0.25), transparent);
    animation: particleFloat 20s ease-in-out infinite;
}
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Spice dust falling effect */
.spice-dust {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}
.spice-dust::before,
.spice-dust::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 15% 10%, rgba(251, 191, 36, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 35% 25%, rgba(234, 88, 12, 0.4), transparent),
        radial-gradient(1px 1px at 55% 15%, rgba(217, 119, 6, 0.5), transparent),
        radial-gradient(2px 2px at 75% 35%, rgba(251, 146, 60, 0.35), transparent),
        radial-gradient(1px 1px at 25% 45%, rgba(252, 211, 77, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 85% 55%, rgba(190, 18, 60, 0.3), transparent),
        radial-gradient(1px 1px at 45% 65%, rgba(251, 191, 36, 0.45), transparent),
        radial-gradient(1px 1px at 65% 75%, rgba(234, 88, 12, 0.35), transparent),
        radial-gradient(2px 2px at 10% 85%, rgba(217, 119, 6, 0.4), transparent),
        radial-gradient(1px 1px at 90% 5%, rgba(251, 146, 60, 0.5), transparent);
    animation: dustFall 12s linear infinite;
}
.spice-dust::after {
    animation-delay: -6s;
    animation-duration: 15s;
    opacity: 0.7;
}
@keyframes dustFall {
    0% { transform: translateY(-100%) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100%) translateX(30px); opacity: 0; }
}

/* Floating spice particles (animated via JS) */
.spice-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle linear infinite;
    opacity: 0;
    z-index: 3;
}
@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% {
        transform: translateY(-20vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
    z-index: 5;
}

/* Logo pulse — hero più marcato, footer più soft */
.hero-logo-wrap {
    margin: 0 auto 32px;
    line-height: 0;
}
.hero-logo {
    width: auto;
    height: 140px;
    display: block;
    margin: 0 auto;
    animation: heroLogoPulseStrong 2.4s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(234, 88, 12, 0.55));
    will-change: transform, filter;
}
.footer-logo {
    width: auto;
    display: block;
    animation: heroLogoPulseSoft 3.5s ease-in-out infinite;
    filter: drop-shadow(0 0 18px rgba(234, 88, 12, 0.4));
}
@keyframes heroLogoPulseStrong {
    0%, 100% {
        transform: scale(1) translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 24px rgba(234, 88, 12, 0.55)) drop-shadow(0 0 48px rgba(251, 146, 60, 0.2));
    }
    25% {
        transform: scale(1.06) translateY(-6px) rotate(-1.5deg);
        filter: drop-shadow(0 0 42px rgba(234, 88, 12, 0.9)) drop-shadow(0 0 72px rgba(251, 191, 36, 0.45));
    }
    50% {
        transform: scale(1.08) translateY(-8px) rotate(0deg);
        filter: drop-shadow(0 0 50px rgba(234, 88, 12, 1)) drop-shadow(0 0 80px rgba(217, 119, 6, 0.4));
    }
    75% {
        transform: scale(1.05) translateY(-3px) rotate(1.5deg);
        filter: drop-shadow(0 0 36px rgba(234, 88, 12, 0.75)) drop-shadow(0 0 60px rgba(251, 146, 60, 0.3));
    }
}
@keyframes heroLogoPulseSoft {
    0%, 100% {
        filter: drop-shadow(0 0 18px rgba(234, 88, 12, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(234, 88, 12, 0.65)) drop-shadow(0 0 50px rgba(217, 119, 6, 0.25));
        transform: scale(1.03);
    }
}

/* Hero entrance animations (staggered) */
.hero-anim {
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeInUp 0.8s ease forwards;
}
.hero-buttons.hero-anim { animation-delay: 0.35s; }

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

.hero-text-slider {
    position: relative;
    min-height: 200px;
    margin-bottom: 8px;
}
.hero-text-slide {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s;
    pointer-events: none;
}
.hero-text-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.hero-text-slide .hero-sub {
    margin-bottom: 0;
}
.hero h1,
.hero-text-slide h1,
.hero-slide-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero h1 em,
.hero-text-slide h1 em,
.hero-slide-title em {
    font-style: italic;
    color: var(--color-accent-light);
}
.hero-sub,
.hero-text-slide .hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(194, 65, 12, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(194, 65, 12, 0.45);
}
.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}
.btn-call {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}
.btn-call:hover {
    background: #fff8f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}
.btn-call .btn-icon {
    flex-shrink: 0;
}
.btn-call-num {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.02em;
}
@media (max-width: 520px) {
    .btn-call {
        width: 100%;
        justify-content: center;
    }
    .btn-call-num {
        display: none;
    }
}
.btn-full { width: 100%; justify-content: center; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}
.hero-scroll span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    position: relative;
}
.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ===================================================================
   SECTIONS — below hero (redesign)
   =================================================================== */
.section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.section .container {
    position: relative;
    z-index: 1;
}

/* Floating section decorations (spice icons) */
.section-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.deco-float {
    position: absolute;
    color: var(--color-primary);
    opacity: 0.11;
    animation: decoDrift 18s ease-in-out infinite;
}
.deco-float svg {
    width: 100%;
    height: 100%;
    display: block;
}
.deco-float--2 { animation-direction: reverse; opacity: 0.08; }
.deco-float--3 { opacity: 0.09; }
.deco-float--4 { animation-direction: reverse; opacity: 0.07; }
.section-regions .deco-float {
    color: var(--color-accent-light);
    opacity: 0.07;
}
.section-why .deco-float {
    color: var(--color-olive);
    opacity: 0.1;
}
@keyframes decoDrift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(14px, -20px) rotate(12deg);
    }
    50% {
        transform: translate(-10px, 12px) rotate(-8deg);
    }
    75% {
        transform: translate(8px, 18px) rotate(6deg);
    }
}
@media (prefers-reduced-motion: reduce) {
    .deco-float,
    .hero-logo,
    .footer-logo {
        animation: none;
    }
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header-left {
    text-align: left;
    max-width: 640px;
}
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-biber);
    margin-bottom: 14px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.section-header h2 em {
    font-style: italic;
    color: var(--color-primary);
}
.section-desc {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.75;
}
.section-desc-left {
    margin-left: 0;
    margin-right: 0;
}

/* Trust strip */
.trust-strip {
    background: var(--color-dark);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-strip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 32px;
}
.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}
.trust-strip-item strong {
    color: var(--color-accent-light);
    font-weight: 600;
}
.trust-strip-icon {
    color: var(--color-primary-light);
    font-size: 8px;
}

.section-about {
    background: var(--color-cream);
    background-image:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(168, 50, 8, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(74, 93, 66, 0.05) 0%, transparent 50%);
}
.section-products {
    background: var(--color-white);
}
.section-why {
    background: var(--color-cream-dark);
}
.section-contact {
    background: var(--color-white);
}

/* --- About --- */
.about-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 48px;
}
.about-visual { position: relative; }
.about-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-frame-accent {
    position: absolute;
    inset: -8px -8px 24px 24px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-xl);
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}
.about-img-real {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}
.about-float-card {
    position: absolute;
    bottom: 24px;
    left: -16px;
    background: var(--color-biber);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-float-num {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}
.about-float-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}
.about-quote {
    margin: 0 0 24px;
    padding: 20px 24px;
    border-left: 3px solid var(--color-primary);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.about-quote p {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    color: var(--color-biber);
    line-height: 1.45;
    margin: 0;
}
.about-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.65;
    margin-bottom: 16px;
}
.about-content p {
    margin-bottom: 14px;
    color: var(--color-text);
    font-size: 15px;
}
.origin-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}
.origin-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text);
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}
.origin-list li:last-child { border-bottom: none; }
.origin-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.timeline-item {
    padding: 16px;
    background: var(--color-white);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}
.timeline-year {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.timeline-item p {
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.55;
    margin: 0;
}
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    padding: 36px 40px;
    background: var(--color-dark);
    border-radius: var(--radius-xl);
    color: var(--color-white);
}
.stats-bar-item { text-align: center; }
.stats-bar-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-accent-light);
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
}

/* --- Products --- */
.product-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}
.product-featured-media {
    min-height: 320px;
    position: relative;
    overflow: hidden;
    background: var(--color-cream-dark);
}
.product-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}
.product-featured-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 22, 20, 0.12), transparent 55%);
    pointer-events: none;
}
.product-featured-media .product-badge {
    z-index: 2;
}
.product-featured-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-featured-body h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 12px 0;
}
.product-featured-body p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(168, 50, 8, 0.2);
}
.product-card-media {
    height: 180px;
    overflow: hidden;
    background: var(--color-cream-dark);
}
.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.product-card-media--crop img {
    object-fit: cover;
    transform: scale(1.35);
}
.product-card:hover .product-card-media--crop img {
    transform: scale(1.45);
}
.product-card:hover .product-card-media:not(.product-card-media--crop) img {
    transform: scale(1.06);
}
.product-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 10px 0 8px;
}
.product-card-body p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 12px;
}
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.product-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(168, 50, 8, 0.1);
    color: var(--color-biber);
}
.product-tag-green {
    background: rgba(74, 93, 66, 0.15);
    color: var(--color-olive);
}
.product-tag-new {
    background: var(--color-primary);
    color: var(--color-white);
}
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 2;
}
.product-badge-gold {
    background: var(--color-accent);
    color: var(--color-white);
}
.product-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
}
.product-link:hover { color: var(--color-biber); }
.products-note {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: var(--color-text-light);
}
.products-note a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- Neden biz --- */
.why-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.why-cell {
    text-align: center;
    padding: 44px 24px;
    border-right: 1px solid var(--color-border);
    position: relative;
}
.why-cell:last-child { border-right: none; }
.why-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
}
.why-cell--natural::before { background: #a83208; }
.why-cell--capacity::before { background: #b8860b; }
.why-cell--cert::before { background: #4a5d42; }
.why-cell--ship::before { background: #6b1a0f; }
.why-cell-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 14px;
}
.why-cell h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.why-cell p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.55;
    margin: 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}
.why-footnote {
    text-align: center;
    margin-top: 28px;
    font-size: 15px;
}
.why-footnote a {
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
}
.why-footnote a:hover {
    color: var(--color-biber);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- Regions --- */
.section-regions {
    position: relative;
    background: var(--color-dark) !important;
}
.section-regions-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}
@media (min-width: 769px) {
    .section-regions-bg { background-attachment: fixed; }
}
.section-regions .container { position: relative; z-index: 2; }
.text-white { color: var(--color-white) !important; }
.text-white em { color: var(--color-accent-light) !important; }
.text-white-soft { color: rgba(255, 255, 255, 0.72) !important; }
.section-tag-light { color: var(--color-accent-light) !important; }
.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.region-card {
    position: relative;
    padding: 28px 24px 28px 56px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.region-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 160, 23, 0.35);
    transform: translateY(-4px);
}
.region-icon {
    position: absolute;
    left: 20px;
    top: 28px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
}
.region-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-bottom: 4px;
}
.region-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}
.region-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

/* --- Contact --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: start;
}
.contact-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.15;
    margin: 10px 0 0;
}
.contact-intro h2 em {
    font-style: italic;
    color: var(--color-primary);
}
.contact-cards { margin-top: 32px; }
.contact-card-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
}
.contact-cards .contact-card-item:last-child { border-bottom: none; }
.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--color-cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-card-item h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-light);
    margin-bottom: 4px;
}
.contact-card-item p {
    font-size: 15px;
    color: var(--color-dark);
    line-height: 1.6;
}
.contact-card-item a {
    color: var(--color-dark);
    transition: var(--transition);
}
.contact-card-item a:hover { color: var(--color-primary); }
.hours-dl {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 24px;
    margin: 6px 0 0;
    padding: 0;
}
.hours-dl dt {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark);
    margin: 0;
}
.hours-dl dd {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    text-align: right;
    white-space: nowrap;
}
.hours-dl dd.hours-closed {
    font-weight: 500;
    color: var(--color-text-light);
}
.contact-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form {
    background: var(--color-cream);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd5c8;
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--color-white);
    color: var(--color-dark);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(168, 50, 8, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    height: 220px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* --- Footer --- */
.footer {
    position: relative;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 88px 0 32px;
    border-top: 3px solid var(--color-primary);
}
.footer-logo-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    line-height: 0;
    transition: var(--transition);
}
.footer-logo-wrap:hover {
    transform: translate(-50%, -50%) scale(1.04);
}
.footer-logo {
    height: 110px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand > p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
}
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-links a,
.social-links .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.social-link--soon {
    opacity: 0.45;
    cursor: default;
}
.social-links svg { width: 18px; height: 18px; }
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}
.footer-col a:hover { color: var(--color-accent-light); }
.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 4px;
}
.footer-credit {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.25) !important;
    margin: 0 !important;
}
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-bottom-right span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}
.footer-hostexper-logo {
    height: 20px;
    width: auto;
    opacity: 0.65;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}
.footer-hostexper-logo:hover {
    opacity: 1;
}
.footer-hostexper-text {
    color: var(--color-accent-light);
    font-weight: 700;
    font-size: 13px;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
}
.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.15s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }
.reveal:nth-child(7) { transition-delay: 0.3s; }
.reveal:nth-child(8) { transition-delay: 0.35s; }

/* ===================================================================
   KURUMSAL PAGES
   =================================================================== */
.kurumsal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 60vh;
}
.kurumsal-page .container {
    max-width: 900px;
}
.kurumsal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 32px;
    text-align: center;
}
.kurumsal-page h1 em {
    color: var(--color-primary);
    font-style: italic;
}
.kurumsal-page h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: 36px;
    margin-bottom: 16px;
}
.kurumsal-page p {
    margin-bottom: 16px;
    color: var(--color-text);
    line-height: 1.8;
}
.kurumsal-page ul {
    margin-bottom: 16px;
    padding-left: 24px;
    list-style: disc;
}
.kurumsal-page ul li {
    margin-bottom: 8px;
    color: var(--color-text);
    line-height: 1.7;
}
.kurumsal-page .last-update {
    font-size: 13px;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.cert-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.cert-card .cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(168, 50, 8, 0.1), rgba(184, 134, 11, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}
.cert-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}
.cert-card p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Kurumsal navbar always scrolled style */
.navbar-kurumsal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 12px 0;
}
.navbar-kurumsal .logo-img {
    filter: none;
    height: 64px;
}
.navbar-kurumsal .nav-menu a {
    color: var(--color-text);
}
.navbar-kurumsal .nav-menu a:hover {
    color: var(--color-primary);
}
.navbar-kurumsal .nav-toggle span {
    background: var(--color-dark);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
    .about-layout { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: repeat(2, 1fr); }
    .product-featured { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-strip { grid-template-columns: repeat(2, 1fr); }
    .why-cell:nth-child(2) { border-right: none; }
    .why-cell:nth-child(1),
    .why-cell:nth-child(2) { border-bottom: 1px solid var(--color-border); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.2);
    }
    .nav-menu.active { right: 0; }
    .nav-menu a {
        color: rgba(255,255,255,0.8) !important;
        font-size: 18px;
    }
    .nav-menu a:hover { color: var(--color-accent-light) !important; }
    .nav-cta { text-align: center; }

    .logo-img { height: 60px; }
    .navbar.scrolled .logo-img,
    .navbar-kurumsal .logo-img { height: 48px; }
    .hero-logo { height: 100px; }

    .section { padding: 72px 0; }
    .section-header-left { text-align: center; }
    .section-desc-left { margin-left: auto; margin-right: auto; }

    .trust-strip-list { flex-direction: column; align-items: center; gap: 12px; }

    .about-img-real { aspect-ratio: 16/10; }
    .about-float-card { left: 16px; bottom: 16px; }
    .timeline { grid-template-columns: 1fr; }
    .stats-bar { flex-direction: column; padding: 28px; }
    .stats-bar-divider { width: 60px; height: 1px; }

    .product-featured-body { padding: 28px; }
    .products-grid { grid-template-columns: 1fr; }

    .why-strip { grid-template-columns: 1fr; }
    .why-cell {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 32px 20px;
    }
    .why-cell:last-child { border-bottom: none; }

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

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand > p { max-width: none; margin: 0 auto; text-align: center; }
    .footer-logo { height: 76px; }
    .footer-logo { height: 88px; }
    .footer { padding-top: 72px; }
    .social-links { justify-content: center; }

    .hero-slider-dots { bottom: 80px; }
    .whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .cert-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .hero-logo { height: 80px; }
    .stat-number { font-size: 32px; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-left,
    .footer-bottom-right {
        justify-content: center;
        width: 100%;
    }
    .logo-img { height: 50px; }
    .navbar.scrolled .logo-img,
    .navbar-kurumsal .logo-img { height: 40px; }
}
