:root {
    --primary-green: #279134;
    --premium-orange: #f18700;
    --soft-background: #F7F7F5;
    --dark-olive-text: #1F2A1F;
    --accent-earth-tone: #8B5E3C;
    --soft-cream: #F3EFE8;
    --olive-shadow: #1a2b1a;
    --olive-mid: #243824;
    --warm-gray: #D9D7D2;
    --white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --section-padding: 110px 0;
    --container-width: 1240px;
    --border-radius: 18px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ─── Loading Screen ──────────────────────────── */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.loader-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a2b1a 0%, #0e1a0e 100%);
}

.loader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

/* Emblem container */
.loader-emblem {
    position: relative;
    width: 180px;
    height: 202px;
}

/* SVG stroke-draw layer */
.loader-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Green path draw */
.loader-path-green {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: drawGreen 1.2s cubic-bezier(0.6, 0, 0.4, 1) 0.2s forwards;
}
@keyframes drawGreen {
    to { stroke-dashoffset: 0; }
}

/* Orange path 1 draw */
.loader-path-orange {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawOrange1 0.8s cubic-bezier(0.6, 0, 0.4, 1) 0.9s forwards;
}
@keyframes drawOrange1 {
    to { stroke-dashoffset: 0; }
}

/* Orange path 2 draw */
.loader-path-orange2 {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawOrange2 0.9s cubic-bezier(0.6, 0, 0.4, 1) 1.1s forwards;
}
@keyframes drawOrange2 {
    to { stroke-dashoffset: 0; }
}

/* Filled image fades in after draw completes */
.loader-emblem-fill {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    animation: fillFadeIn 0.6s ease 1.8s forwards;
}
@keyframes fillFadeIn {
    to { opacity: 1; }
}

/* Subtle pulse after fill */
.loader-emblem {
    animation: emblemPulse 0.5s ease 2.4s 2 alternate;
}
@keyframes emblemPulse {
    to { transform: scale(1.06); }
}

/* Slogan text */
.loader-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #f18700;
    opacity: 0;
    animation: sloganIn 0.8s ease 1.9s forwards;
}
@keyframes sloganIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Curtain that sweeps UP to exit */
.loader-curtain {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a2b1a 0%, #0e1a0e 100%);
    transform: translateY(0);
    animation: curtainUp 0.9s cubic-bezier(0.76, 0, 0.24, 1) 3.0s forwards;
}
@keyframes curtainUp {
    to { transform: translateY(-100%); }
}

/* Whole loader fades out and becomes non-interactive */
.loader.done {
    pointer-events: none;
    animation: loaderFadeOut 0.1s ease 3.8s forwards;
}
@keyframes loaderFadeOut {
    to { opacity: 0; visibility: hidden; }
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-primary);
    background-color: var(--soft-background);
    color: var(--dark-olive-text);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ─── Utility ─────────────────────────────────── */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 14px;
}
.section-label.light { color: rgba(255,255,255,0.5); }

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark-olive-text);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* ─── Buttons ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary {
    background-color: var(--premium-orange);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(241, 135, 0, 0.3);
}
.btn-primary:hover { background-color: #d97900; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(241, 135, 0, 0.45); }
.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover { background-color: var(--white); color: var(--dark-olive-text); transform: translateY(-3px); }
.btn-block { display: flex; width: 100%; }
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    margin-top: 12px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover { background-color: #20bd5a; transform: translateY(-3px); }

/* ─── Header ──────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    height: 68px;
    width: auto;
    max-width: 320px;
    transition: var(--transition);
}
.header.scrolled .logo {
    height: 54px;
    max-width: 260px;
}

/* Nav */
.nav-emblem {
    display: none;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    font-weight: 500;
    color: var(--white);
    font-size: 0.97rem;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--premium-orange);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }
.header.scrolled .nav-link { color: var(--dark-olive-text); }
.nav-link:hover { color: var(--premium-orange); }
.header.scrolled .nav-link:hover { color: var(--premium-orange); }

/* Contact btn in nav */
.nav-cta {
    background-color: var(--premium-orange);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background-color: #c46a05; color: var(--white) !important; transform: translateY(-2px); }

/* ─── Language Switcher ────────────────────────── */
.lang-item { position: relative; }

.lang-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    letter-spacing: 0.5px;
}
.lang-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
}
.header.scrolled .lang-btn {
    color: var(--dark-olive-text);
    border-color: rgba(31,42,31,0.2);
    background: rgba(31,42,31,0.04);
}
.header.scrolled .lang-btn:hover {
    background: rgba(34,154,50,0.08);
    border-color: var(--primary-green);
    color: var(--primary-green);
}
.chevron {
    transition: transform 0.3s ease;
}
.lang-switcher.open .chevron { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.97);
    transition: all 0.22s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
}
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark-olive-text);
    text-align: left;
    transition: var(--transition);
}
.lang-option:hover { background-color: var(--soft-cream); color: var(--primary-green); }
.lang-option.active { color: var(--primary-green); font-weight: 700; background: rgba(34,154,50,0.06); }

/* ─── Hamburger ──────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1005;
    transition: var(--transition);
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.header.scrolled .hamburger span { background: var(--dark-olive-text); }
.hamburger.active span { background: var(--dark-olive-text) !important; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ────────────────────────────────────── */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(26,43,26,0.88) 0%, rgba(34,154,50,0.35) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }

.hero-slogan {
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--premium-orange);
    margin-bottom: 22px;
    opacity: 0.95;
}
.hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 44px;
    opacity: 0.88;
    max-width: 660px;
    margin-inline: auto;
    line-height: 1.75;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── About ──────────────────────────────────── */
.about {
    padding: var(--section-padding);
    background-color: var(--soft-background);
    position: relative;
    overflow: hidden;
}
.about::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(34,154,50,0.07) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-image-wrapper { position: relative; }
.about-image {
    width: 100%;
    height: 560px;
    background-image: url('assets/frutoagro-hakkimizda.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow: 0 24px 56px rgba(49,66,49,0.18);
}

.about-text p {
    font-size: 1.02rem;
    margin-bottom: 1.2rem;
    color: #4a544a;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--warm-gray);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}
.stat span { font-size: 0.82rem; font-weight: 500; color: #8a968a; letter-spacing: 0.5px; }

/* ─── Products ───────────────────────────────── */
.products {
    padding: var(--section-padding);
    background-color: var(--white);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-label { display: block; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    background-color: var(--soft-cream);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
    transition: var(--transition);
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}
.product-img {
    height: 280px;
    background-color: var(--warm-gray);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover .product-img { transform: scale(1.06); }

/* Product image mappings */
.sweets-lady-img     { background-image: url('assets/sweets-lady-seftali.jpg'); }
.cilek-img           { background-image: url('assets/cilek.jpg'); }
.margarita-armut-img { background-image: url('assets/margarita-armut.jpg'); }
.gala-elma-img       { background-image: url('assets/gala-elma.jpg'); }
.granny-smith-img    { background-image: url('assets/grany-smith-elma.jpg'); }
.sweet-dream-img     { background-image: url('assets/sweet-dream-seftali.jpg'); }
.santa-maria-img     { background-image: url('assets/santa-maria-armut.jpg'); }
.amiga-nectari-img   { background-image: url('assets/amiga-nectari-seftali.jpg'); }
.royal-glory-img     { background-image: url('assets/royal-glory-seftali.jpg'); }
.w-murcott-mandalina-img { background-image: url('assets/w-murcott-mandalina.jpg'); }
.murdum-erik-img     { background-image: url('assets/murdum-erik.jpg'); }
.scarlet-spur-elma-img { background-image: url('assets/scarlet-spur-elma.jpg'); }

.product-info { padding: 26px 28px; }
.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-olive-text);
}
.availability {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-earth-tone);
    font-weight: 500;
    font-size: 0.875rem;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: var(--premium-orange);
    flex-shrink: 0;
}
.dot-green { background-color: var(--primary-green); }

/* ─── Contact / Footer ───────────────────────── */
.contact {
    background: linear-gradient(160deg, var(--olive-mid) 0%, var(--olive-shadow) 100%);
    color: var(--white);
    padding: 100px 0 0;
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--premium-orange), var(--primary-green));
    background-size: 200% 100%;
    animation: gradientSlide 4s linear infinite;
}
@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
}
.contact-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
}
.contact-desc {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}
.contact-item p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; padding-top: 10px; }

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.created-by {
    display: flex;
    align-items: center;
    gap: 8px;
}
.created-by span {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}
.tman-logo {
    height: 18px;
    width: auto;
    opacity: 0.65;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.created-by:hover .tman-logo {
    opacity: 1;
    transform: scale(1.05);
}

.social-links { display: flex; gap: 12px; }
.social-link {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.social-link:hover {
    background: var(--premium-orange);
    border-color: var(--premium-orange);
    color: white;
    transform: translateY(-3px);
}
.instagram-follow-link {
    width: auto !important;
    padding: 0 20px !important;
    gap: 10px;
    white-space: nowrap;
}
.instagram-follow-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.04);
    padding: 42px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(34,154,50,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 32px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-logo-area { display: flex; align-items: center; gap: 14px; }
.footer-logo { height: 48px; width: auto; max-width: 240px; opacity: 0.85; }
.footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--premium-orange);
    font-weight: 600;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.87rem;
    font-weight: 500;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* ─── Animations ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-40px); }
.reveal-left.active { transform: translateX(0); }
.reveal-right { transform: translateX(40px); }
.reveal-right.active { transform: translateX(0); }

/* Stagger for product cards */
.product-card:nth-child(2) { transition-delay: 0.05s; }
.product-card:nth-child(3) { transition-delay: 0.1s; }
.product-card:nth-child(4) { transition-delay: 0.15s; }
.product-card:nth-child(5) { transition-delay: 0.2s; }
.product-card:nth-child(6) { transition-delay: 0.25s; }
.product-card:nth-child(7) { transition-delay: 0.3s; }
.product-card:nth-child(8) { transition-delay: 0.35s; }
.product-card:nth-child(9) { transition-delay: 0.4s; }
.product-card:nth-child(10) { transition-delay: 0.45s; }
.product-card:nth-child(11) { transition-delay: 0.5s; }
.product-card:nth-child(12) { transition-delay: 0.55s; }

/* ─── Suppress Google Translate banner ───────── */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ─── Responsive ─────────────────────────────── */

/* Large tablet */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3.6rem; }
}

/* Tablet */
@media (max-width: 900px) {
    :root { --section-padding: 80px 0; }

    /* Header */
    .hamburger { display: flex; }
    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--white);
        padding: 110px 24px 40px;
        box-shadow: -8px 0 40px rgba(0,0,0,0.12);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
        overflow-y: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    .nav.open { right: 0; }
    .nav-emblem {
        display: flex;
        justify-content: center;
        margin-bottom: 32px;
    }
    .nav-emblem img {
        height: 100px;
        width: auto;
    }
    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 8px;
    }
    .nav-list li {
        width: 100%;
    }
    .nav-link {
        display: block;
        color: var(--dark-olive-text) !important;
        font-size: 1.05rem;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--warm-gray);
        box-sizing: border-box;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }
    .nav-link::after { display: none; }
    .nav-link:hover {
        color: var(--primary-green) !important;
        padding-left: 8px;
    }
    .nav-cta {
        margin-top: 16px;
        padding: 14px 28px;
        background: var(--premium-orange) !important;
        color: var(--white) !important;
        border-radius: 50px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    .lang-item { width: 100%; margin-top: 16px; }
    .lang-btn {
        width: 100%;
        justify-content: space-between;
        color: var(--dark-olive-text) !important;
        border-color: var(--warm-gray) !important;
        background: var(--soft-background) !important;
        padding: 12px 16px;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .lang-dropdown {
        position: static;
        width: 100%;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
        box-shadow: none;
        border: none;
        border-radius: 10px;
        margin-top: 0;
        background: var(--soft-background);
        transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.2s ease, margin 0.2s ease;
        padding: 0;
    }
    .lang-switcher.open .lang-dropdown {
        max-height: 300px;
        opacity: 1;
        pointer-events: all;
        margin-top: 8px;
        border: 1px solid var(--warm-gray);
    }
    .lang-option {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-sizing: border-box;
    }
    .lang-option:last-child {
        border-bottom: none;
    }

    /* Hero */
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero { background-attachment: scroll; }

    /* About */
    .about-container { grid-template-columns: 1fr; gap: 50px; }
    .about-image { height: 400px; }
    .reveal-left, .reveal-right { transform: translateY(36px); }
    .reveal-left.active, .reveal-right.active { transform: translateY(0); }

    /* Products */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Contact */
    .contact-container { grid-template-columns: 1fr; gap: 48px; }
    .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { justify-content: center; }
    .footer-right { align-items: center; }
}

/* Mobile */
@media (max-width: 560px) {
    :root { --section-padding: 64px 0; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 300px; }

    .section-title { font-size: 1.9rem; }

    .about-image { height: 300px; }
    .about-stats { gap: 20px; flex-wrap: wrap; }

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

    .contact-form-wrapper { padding: 28px 22px; }
    .contact-title { font-size: 1.9rem; }

    .footer-logo-area { flex-direction: column; align-items: center; gap: 8px; }
    .footer-links { flex-direction: column; gap: 12px; align-items: center; }
}
