/* THEME TOGGLE VERSION */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Scroll performance */
body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Prevent scroll issues */
html, body {
    scroll-behavior: smooth;
}

/* Optimize rendering performance */
.hero__image .hero__img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* CSS Variables */
:root {
    /* Colors - Fresh teal-inspired palette */
    --primary-color: #008080;      /* Rich teal */
    --primary-dark: #006666;      /* Darker teal */
    --primary-light: #4dcccc;     /* Light teal */
    --secondary-color: #20b2aa;    /* Ethiopian teal */
    --accent-color: #c0392b;       /* Deep red */
    --text-dark: #2c3e50;         /* Dark blue-gray */
    --text-light: #7f8c8d;        /* Light gray */
    --background: #ffffff;         /* White */
    --background-light: #f8f9fa;  /* Light gray */
    --border-color: #e9ecef;      /* Border gray */

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --grid-gap: 2rem;

    /* Transitions */
    --transition: all 0.3s ease;

    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav__container {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav__container {
        padding: 0 1rem;
    }
}

.section {
    padding: var(--section-padding);
}

.section:nth-child(even) {
    background-color: var(--background-light);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.button--primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.button--primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.button--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button--secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.button--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    will-change: background-color, box-shadow;
}

.nav__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.nav__logo-img {
    width: 40px;
    height: 40px;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

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

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

.theme-toggle {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--background-light);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

.theme-toggle__icon {
    position: absolute;
    font-size: 1rem;
    line-height: 1;
    transition: var(--transition);
}

.theme-toggle__icon--sun {
    opacity: 0;
    transform: rotate(-80deg) scale(0.4);
}

.theme-toggle__icon--moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

body.dark-theme .theme-toggle__icon--sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}

body.dark-theme .theme-toggle__icon--moon {
    opacity: 0;
    transform: rotate(80deg) scale(0.4);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 70px;
    overflow: hidden;
}

.hero__grid-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.42;
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero__title-accent {
    color: var(--primary-color);
    display: block;
    font-size: 0.8em;
    font-style: italic;
}

.hero__description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__img {
    width: 100%;
    max-width: 600px;
    height: 600px;
    object-fit: contain;
    object-position: center;
    transform: none !important;
    will-change: auto;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
}

.hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.hero__scroll-link:hover {
    color: var(--primary-color);
}

.hero__scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.hero__scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    will-change: transform;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* About Section */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat__text {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Products Section */
.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
    margin-bottom: 2rem;
}

.products__grid:last-of-type {
    margin-bottom: 0;
}

.product__card {
    background-color: var(--background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.product__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product__image {
    height: 250px;
    overflow: hidden;
}

.product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    background-color: var(--background-light);
}

.product__image img[src*="data:image/svg+xml"] {
    object-fit: contain;
    background-color: var(--background-light);
    padding: 1rem;
}

.product__card:hover .product__image img {
    transform: scale(1.1);
}

.product__content {
    padding: 1.5rem;
}

.product__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Us Section */
.why-us__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section */
.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--grid-gap);
}

.team__card {
    background-color: var(--background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.team__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team__image {
    height: 300px;
    overflow: hidden;
}

.team__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team__card:hover .team__image img {
    transform: scale(1.1);
}

.team__content {
    padding: 1.5rem;
}

.team__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team__role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team__description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact__text {
    color: var(--text-light);
}

.contact__link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.contact__link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__group {
    position: relative;
}

.form__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background-color: var(--background);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.form__select {
    color: var(--text-dark);
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer__logo-img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.footer__description {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer__social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer__copy {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: var(--transition);
    }

    body.dark-theme .nav__menu {
        background-color: rgba(14, 20, 17, 0.98);
    }

    .nav__menu.show-menu {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        justify-content: center;
        height: 100%;
        gap: 3rem;
    }

    .nav__toggle {
        display: flex;
    }

    .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(7px, -6px);
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__img {
        height: 400px;
        max-width: 400px;
    }

    .about__content,
    .why-us__content,
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__stats {
        justify-content: center;
        gap: 3rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .products__grid,
    .team__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__img {
        height: 350px;
        max-width: 350px;
    }

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

    .container {
        padding: 0 0.75rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Terroir Section */
.terroir__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.terroir__subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.terroir__features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.terroir__feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.terroir__feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.terroir__feature-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terroir__feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.terroir__feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.terroir__scientific {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
}

.scientific__facts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scientific__fact {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.scientific__fact strong {
    color: var(--primary-color);
    font-weight: 600;
}

.climate__zones {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 100px;
}

.zone {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.zone:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.zone__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.zone__name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.zone__temp {
    background: var(--primary-light);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.zone__crops {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.zone__characteristics {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Enhanced Products Section */
.product__categories {
    margin-bottom: 3rem;
}

.category__tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category__tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-light);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.category__tab:hover,
.category__tab.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product__card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.product__card.featured {
    border: 2px solid var(--primary-light);
}

.product__card.exclusive {
    border: 2px solid var(--accent-color);
}

.product__card.superfood {
    border: 2px solid var(--secondary-color);
}

.product__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product__card.exclusive .product__badge {
    background: var(--accent-color);
}

.product__card.superfood .product__badge {
    background: var(--secondary-color);
}

.product__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.spec {
    background: var(--background-light);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.products__cta {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    color: white;
}

.cta__content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta__content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta__content .button {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta__content .button:hover {
    background: var(--background-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Regions/Map Section */
.regions__content {
    display: grid;
    gap: 3rem;
}

.map__container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.ethiopia__map {
    width: 100%;
    height: auto;
}

.region-marker {
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.region-marker:hover {
    transform: scale(1.2);
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.3));
}

.region__details {
    display: none;
}

.region__card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    flex: 1;
    height: 100%;
    box-sizing: border-box;
}

.region__card.hidden {
    display: none;
}

.region__card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.region__stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.region__stats .stat__number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.region__stats .stat__label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.region__info {
    margin: 1.5rem 0;
}

.info__item {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info__item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.region__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--text-light);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.region__close:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.regions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.regions__info,
.regions__production,
.regions__sustainability {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.regions__info h3,
.regions__production h3,
.regions__sustainability h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.regions__features {
    list-style: none;
    margin: 1rem 0;
}

.regions__features li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}

.regions__features strong {
    color: var(--primary-color);
    font-weight: 600;
}

.seasonality__chart {
    margin-top: 1rem;
}

.season {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.season__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.season__name {
    font-weight: 600;
    color: var(--text-dark);
}

.season__temp {
    background: var(--primary-light);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.season__activities {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.sustainability__practices {
    margin-top: 1rem;
}

.practice {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.practice__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practice__content h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.practice__content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Enhanced Responsive Design */
@media screen and (max-width: 1024px) {
    .terroir__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .climate__zones {
        position: static;
    }

    .map__container {
        padding: 1.5rem;
    }

    .category__tabs {
        gap: 0.25rem;
    }

    .category__tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .nav__list {
        gap: 1.5rem;
    }

    .nav__link {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .terroir__feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .terroir__feature-icon {
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
    }

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

    .product__specs {
        justify-content: center;
    }

    .category__tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

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

    .region__stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .practice {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .zone__header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

@media screen and (max-width: 480px) {
    .terroir__feature,
    .zone,
    .season {
        padding: 1rem;
    }

    .scientific__facts .scientific__fact {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .spec {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .map__container {
        padding: 1rem;
    }

    .region__card {
        padding: 1.5rem;
    }
}

/* Leaflet Map Customizations */
.leaflet-popup-content-wrapper {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-popup h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-popup p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-popup strong {
    color: var(--text-dark);
    font-weight: 600;
}

.custom-popup .leaflet-popup-content {
    margin: 15px;
    font-family: var(--font-primary);
}

.agro-popup h4 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
}

.agro-popup p {
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.agro-popup strong {
    color: var(--text-dark);
}

/* Map Container Styles */
.ethiopia__map {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

#leaflet-map, #agroecology-leaflet-map {
    border-radius: 15px;
    z-index: 1;
}

/* Agroecological Map Section */
.agroecology__maps {
    margin-top: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 3rem;
    border-radius: 25px;
}

.agroecology__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.agroecology__map {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.agroecology__legend {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.agroecology__legend h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.legend__items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legend__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.legend__color {
    width: 20px;
    height: 15px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.agroecology__details {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 100px;
}

.zone-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.zone-benefits h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.zone-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zone-benefits li {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 0;
}

.zone-benefits strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Quality Testing Section */
.quality-testing {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.quality-testing .section__subtitle {
    color: var(--primary-light);
}

.quality-testing .section__title,
.quality-testing .section__description {
    color: white;
}

.testing__categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.test__category {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.test__category:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.test__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.test__category h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    text-align: center;
}

.test__details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.test__details ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.test__details li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: #ecf0f1;
    font-size: 0.9rem;
}

.test__details li::before {
    content: "•";
    color: var(--primary-light);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.test__details strong {
    color: white;
    font-weight: 600;
}

.test__details p {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.test-result {
    margin-top: auto;
    text-align: center;
    padding-top: 1rem;
}

.result-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.result-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testing__partners {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.testing__partners h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    text-align: center;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.partner:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.partner h4 {
    color: var(--primary-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.partner p {
    color: #ecf0f1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.partner strong {
    color: white;
    font-weight: 600;
}

.testing__certifications {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.testing__certifications h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    text-align: center;
}

.certifications__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.certification {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.certification:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.cert__badge {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: inline-block;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification p {
    color: #ecf0f1;
    font-size: 0.85rem;
    line-height: 1.4;
}

.testing__guarantee {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
}

.guarantee__content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.guarantee__points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guarantee__point {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
}

.guarantee__point strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.guarantee__point p {
    color: #ecf0f1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.guarantee__content .button {
    background: white;
    color: var(--primary-color);
    border-color: white;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.guarantee__content .button:hover {
    background: var(--background-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Enhanced Responsive Design */
@media screen and (max-width: 1024px) {
    .agroecology__container {
        grid-template-columns: 1fr;
    }

    .agroecology__details {
        position: static;
    }

    .map__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testing__categories {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

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

    #leaflet-map {
        height: 400px;
    }

    #agroecology-leaflet-map {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .agroecology__maps {
        padding: 2rem 1rem;
    }

    .agroecology__map {
        padding: 1rem;
    }

    .ethiopia__map {
        padding: 1rem;
    }

    #leaflet-map {
        height: 600px;
    }

    #agroecology-leaflet-map {
        height: 300px;
    }


    .legend__items {
        gap: 0.5rem;
    }

    .legend__item {
        font-size: 0.85rem;
    }

    .map-popup {
        font-size: 0.85rem;
    }

    .guarantee__points {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .guarantee__point {
        text-align: center;
    }

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

    /* Leaflet mobile optimization */
    .leaflet-control-zoom {
        font-size: 18px;
    }

    .leaflet-control-zoom a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .leaflet-popup-content {
        margin: 10px 15px;
    }
}

@media screen and (max-width: 480px) {
    .test__category {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .testing__partners,
    .testing__certifications {
        padding: 1.5rem;
    }

    .testing__guarantee {
        padding: 2rem 1rem;
    }

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

/* Print Styles Enhancement */
@media print {
    .terroir__feature,
    .product__card,
    .region__card,
    .test__category,
    .partner {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .ethiopia__map,
    .category__tabs,
    .region-marker,
    .agroecology__map {
        display: none;
    }

    .quality-testing {
        background: white !important;
        color: black !important;
    }

    .quality-testing * {
        color: black !important;
    }
}

/* Services Section */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
    margin-top: 3rem;
}

.service__card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service__icon svg {
    color: white;
}

.service__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Services */
@media screen and (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service__card {
        padding: 1.5rem;
    }

    .service__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service__title {
        font-size: 1.2rem;
    }
}

/* Target Markets Section */
.markets__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--grid-gap);
    margin-top: 3rem;
}

.market__card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.market__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.market__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}

.market__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.market__description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.market__countries {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsive Markets */
@media screen and (max-width: 768px) {
    .markets__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .market__card {
        padding: 1.5rem;
    }

    .market__icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .market__title {
        font-size: 1.3rem;
    }
}

/* Dark Section Styling */
.section--dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
}

.section--dark .section__subtitle {
    color: var(--primary-light);
}

.section--dark .section__title {
    color: #ffffff;
}

.section--dark .section__description {
    color: #bdc3c7;
}

.section--dark .region__card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #2c3e50;
}

.section--dark .region__card h3 {
    color: #2c3e50;
}

.section--dark .region__card p {
    color: #2c3e50;
}

.section--dark .region__info {
    color: #2c3e50;
}

.section--dark .region__info .info__item {
    color: #2c3e50;
}

.section--dark .region__info .info__item strong {
    color: #2c3e50;
}

.section--dark .region__info .info__item span {
    color: #2c3e50;
}


.section--dark .stat__number {
    color: var(--primary-color);
}

.section--dark .stat__label {
    color: #2c3e50;
}

.section--dark #region-title {
    color: #2c3e50;
}

.section--dark #region-description {
    color: #2c3e50;
}

.section--dark #region-spices,
.section--dark #region-altitude,
.section--dark #region-climate {
    color: #2c3e50;
}

.section--dark .region__close {
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
}

.section--dark .region__close:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-color);
}

/* Sourcing Regions Responsive Design */
@media screen and (max-width: 1024px) {
    .sourcing-regions__content .map__container {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .sourcing-regions__content {
        gap: 2rem;
    }

    #leaflet-map {
        height: 600px;
    }

    .region__card {
        padding: 1rem;
    }


    .region__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .stat {
        padding: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    #leaflet-map {
        height: 500px;
    }

    .sourcing-regions__content {
        gap: 1.5rem;
    }

    .region__card h3 {
        font-size: 1.2rem;
    }

    .region__info {
        gap: 0.5rem;
    }

    .region__close {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}

/* Contact Form Responsive Improvements */
@media screen and (max-width: 768px) {
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact__form {
        order: 1;
    }

    .contact__info {
        order: 2;
    }
}

/* Navigation Menu Improvements */
@media screen and (max-width: 768px) {
    .nav__list {
        padding: 2rem 0;
    }

    .nav__link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }
}

/* Team Section Responsive Fix */
@media screen and (max-width: 768px) {
    .team__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team__card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* About Section Responsive Fix */
@media screen and (max-width: 768px) {
    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about__stats {
        justify-content: center;
    }
}

/* Why Us Section Responsive Fix */
@media screen and (max-width: 768px) {
    .why-us__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .why-us__features {
        gap: 1.5rem;
    }

    .feature {
        text-align: left;
    }
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Dark Theme Version */
body.dark-theme {
    --primary-color: #12b8a6;
    --primary-dark: #088878;
    --primary-light: #63dfd1;
    --secondary-color: #d9a441;
    --accent-color: #d65745;
    --text-dark: #f3f7f4;
    --text-light: #b8c8bf;
    --background: #0e1411;
    --background-light: #171f1a;
    --border-color: rgba(255, 255, 255, 0.13);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.28);
    --shadow-medium: 0 18px 50px rgba(0, 0, 0, 0.38);
    --shadow-heavy: 0 26px 70px rgba(0, 0, 0, 0.5);
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(18, 184, 166, 0.12), transparent 32rem),
        linear-gradient(180deg, #0e1411 0%, #121a16 45%, #0e1411 100%);
}

body.dark-theme .header {
    background-color: rgba(14, 20, 17, 0.9);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

body.dark-theme .nav__logo-img,
body.dark-theme .hero__img,
body.dark-theme .footer__logo-img {
    filter: drop-shadow(0 0 14px rgba(18, 184, 166, 0.28));
}

body.dark-theme .nav__link,
body.dark-theme .hero__title,
body.dark-theme .section__title,
body.dark-theme .product__title,
body.dark-theme .feature__title,
body.dark-theme .team__name,
body.dark-theme .contact__title,
body.dark-theme .regions__info h3,
body.dark-theme .regions__production h3,
body.dark-theme .regions__sustainability h3,
body.dark-theme .season__name,
body.dark-theme .practice__content h4,
body.dark-theme .agroecology__legend h4,
body.dark-theme .map-popup strong,
body.dark-theme .agro-popup strong {
    color: var(--text-dark);
}

body.dark-theme .nav__toggle span {
    background-color: var(--text-dark);
}

body.dark-theme .section:nth-child(even),
body.dark-theme .section {
    background-color: transparent;
}

body.dark-theme .section:nth-child(even) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 184, 166, 0.03)),
        var(--background-light);
}

body.dark-theme .section__description,
body.dark-theme .hero__description,
body.dark-theme .about__description,
body.dark-theme .product__description,
body.dark-theme .feature__description,
body.dark-theme .team__description,
body.dark-theme .contact__text,
body.dark-theme .regions__features li,
body.dark-theme .season__activities,
body.dark-theme .practice__content p,
body.dark-theme .footer__description {
    color: var(--text-light);
}

body.dark-theme .button--primary {
    color: #07110e;
}

body.dark-theme .button--secondary {
    background: rgba(18, 184, 166, 0.08);
}

body.dark-theme .button--secondary:hover {
    color: #07110e;
}

body.dark-theme .about__img,
body.dark-theme .why-us__image img,
body.dark-theme .quality__image img {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

body.dark-theme .product__card,
body.dark-theme .team__card,
body.dark-theme .service__card,
body.dark-theme .market__card,
body.dark-theme .quality__card,
body.dark-theme .feature,
body.dark-theme .terroir__feature,
body.dark-theme .terroir__scientific,
body.dark-theme .climate__zones,
body.dark-theme .zone,
body.dark-theme .test__category,
body.dark-theme .testing__partners,
body.dark-theme .testing__certifications,
body.dark-theme .partner,
body.dark-theme .certification,
body.dark-theme .guarantee__point,
body.dark-theme .regions__info,
body.dark-theme .regions__production,
body.dark-theme .regions__sustainability,
body.dark-theme .agroecology__details,
body.dark-theme .region__card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

body.dark-theme .product__card:hover,
body.dark-theme .team__card:hover,
body.dark-theme .service__card:hover,
body.dark-theme .market__card:hover,
body.dark-theme .quality__card:hover,
body.dark-theme .terroir__feature:hover,
body.dark-theme .zone:hover,
body.dark-theme .test__category:hover,
body.dark-theme .partner:hover,
body.dark-theme .certification:hover {
    box-shadow: var(--shadow-medium);
}

body.dark-theme .product__image img,
body.dark-theme .product__image img[src*="data:image/svg+xml"] {
    background-color: #101713;
}

body.dark-theme .category__tab {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    border-color: var(--border-color);
}

body.dark-theme .category__tab:hover,
body.dark-theme .category__tab.active {
    color: #07110e;
}

body.dark-theme .spec,
body.dark-theme .scientific__fact,
body.dark-theme .agroecology__legend,
body.dark-theme .season,
body.dark-theme .result-badge {
    background: rgba(255, 255, 255, 0.055);
    border-color: var(--border-color);
    color: var(--text-light);
}

body.dark-theme .zone__name,
body.dark-theme .zone-benefits strong,
body.dark-theme .test__details strong,
body.dark-theme .partner strong,
body.dark-theme .guarantee__point strong {
    color: var(--text-dark);
}

body.dark-theme .test__details li,
body.dark-theme .test__details p,
body.dark-theme .partner p,
body.dark-theme .certification p,
body.dark-theme .guarantee__point p {
    color: var(--text-light);
}

body.dark-theme .map__container,
body.dark-theme .ethiopia__map,
body.dark-theme .agroecology__map {
    background: #121a16;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

body.dark-theme .section--dark {
    background:
        linear-gradient(135deg, rgba(18, 184, 166, 0.14) 0%, rgba(214, 87, 69, 0.07) 100%),
        #101713;
    color: var(--text-dark);
}

body.dark-theme .section--dark .section__title,
body.dark-theme .section--dark .section__description,
body.dark-theme .section--dark .region__card h3,
body.dark-theme .section--dark .region__card p,
body.dark-theme .section--dark .region__info,
body.dark-theme .section--dark .region__info .info__item,
body.dark-theme .section--dark .region__info .info__item strong,
body.dark-theme .section--dark .region__info .info__item span,
body.dark-theme .section--dark .stat__label,
body.dark-theme .section--dark #region-title,
body.dark-theme .section--dark #region-description,
body.dark-theme .section--dark #region-spices,
body.dark-theme .section--dark #region-altitude,
body.dark-theme .section--dark #region-climate {
    color: var(--text-dark);
}

body.dark-theme .section--dark .region__card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    border-color: var(--border-color);
    backdrop-filter: blur(14px);
}

body.dark-theme .section--dark .region__close {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-color);
}

body.dark-theme .form__input,
body.dark-theme .form__textarea {
    background-color: rgba(255, 255, 255, 0.055);
    border-color: var(--border-color);
    color: var(--text-dark);
}

body.dark-theme .form__input::placeholder,
body.dark-theme .form__textarea::placeholder {
    color: rgba(184, 200, 191, 0.75);
}

body.dark-theme .form__input:focus,
body.dark-theme .form__textarea:focus {
    box-shadow: 0 0 0 3px rgba(18, 184, 166, 0.18);
}

body.dark-theme .products__cta,
body.dark-theme .testing__guarantee,
body.dark-theme .quality-testing {
    background:
        linear-gradient(135deg, rgba(18, 184, 166, 0.22), rgba(214, 87, 69, 0.12)),
        #101713;
}

body.dark-theme .cta__content .button,
body.dark-theme .testing__guarantee .button {
    background: #f3f7f4;
    color: #07110e;
    border-color: #f3f7f4;
}

body.dark-theme .footer {
    background: #080d0b;
    border-top: 1px solid var(--border-color);
}

body.dark-theme .footer__social-link {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
}

body.dark-theme .footer__link {
    color: var(--text-light);
}

body.dark-theme .footer__link:hover,
body.dark-theme .footer__social-link:hover {
    color: var(--primary-light);
}

body.dark-theme .leaflet-popup-content-wrapper,
body.dark-theme .leaflet-popup-tip {
    background: #101713;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}
