* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Image loading optimization */
img {
    display: block;
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.6s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Prevent layout shift while images load */
img {
    background-color: var(--light-color);
}

:root {
    --primary-color: #2c5530;
    --secondary-color: #5a8c5e;
    --accent-color: #8fbc8f;
    --dark-color: #1a2e1a;
    --light-color: #f4f7f4;
    --text-color: #333;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fullscreen Video Greeting */
.video-greeting-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-greeting-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.greeting-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-video-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.close-video-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(255, 255, 255, 1);
}

.close-video-btn:active {
    transform: scale(0.95) rotate(90deg);
}

.close-video-btn svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 3;
}

.close-video-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

/* Prevent scrolling when video is playing */
body.video-playing {
    overflow: hidden;
}

@media (max-width: 768px) {
    .close-video-btn {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .close-video-btn svg {
        width: 20px;
        height: 20px;
    }
}

body {
    font-family: 'IM Fell English SC', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-weight: 600;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0;
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.back-to-top:active {
    transform: scale(0.95);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Scroll Animation Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 46, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    transition: var(--transition), box-shadow 0.3s ease, transform 0.3s ease;
    will-change: transform;
}

.navbar.scrolled {
    background-color: rgba(26, 46, 26, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    cursor: pointer;
}

.logo:hover {
    color: var(--accent-color);
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
    left: 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active::after {
    width: 100%;
    left: 0;
}

.nav-menu a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes slowZoom {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.1);
    }
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-background img,
    .history-hero-image img,
    .cultivation-background img {
        animation: none !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: 6rem;
    margin-bottom: 2.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: 3px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-line {
    font-size: 6rem;
    line-height: 1;
    display: block;
}

.hero-ampersand {
    font-size: 4rem;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.cta-button:active {
    transform: translateY(-1px) scale(1);
}

.cta-button:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
}

/* What We Do Section */
.what-we-do {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.what-we-do h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.what-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.what-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.what-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.what-card p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
    color: var(--text-color);
}

/* Our Plants Section */
.our-plants {
    padding: 5rem 0;
    background-color: var(--white);
}

.our-plants h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3.5rem;
    font-weight: 600;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.plant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.plant-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.plant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.plant-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.plant-card:hover .plant-image img {
    transform: scale(1.08);
}

.plant-info {
    padding: 2rem;
}

.plant-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plant-info p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
    color: var(--text-color);
}





/* Philosophy Boxes Section */
.philosophy-boxes {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #e8f0e8 100%);
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-box {
    background-color: var(--white);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.philosophy-box-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.philosophy-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(143, 188, 143, 0.1), transparent);
    transition: left 0.6s ease;
}

.philosophy-box:hover::before {
    left: 100%;
}

.philosophy-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-top-color: var(--accent-color);
}

.philosophy-box:active {
    transform: translateY(-5px) scale(0.98);
}

.box-icon {
    font-size: 3rem;
    margin-bottom: 0;
    display: block;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.box-icon-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.box-icon-image-full {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-box:hover .box-icon-image-full {
    transform: scale(1.05);
}

.philosophy-box h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    padding: 0 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-box p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
    color: var(--text-color);
    padding: 0 2rem 2rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-image-main {
    width: 100%;
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.about-image-main:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-image-secondary {
    width: 100%;
}

.about-image-secondary img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.about-image-secondary:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 600;
}

.heritage-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    transition: var(--transition);
}

.heritage-box:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.heritage-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.heritage-box p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.heritage-note {
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.heritage-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.heritage-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.heritage-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}







/* Protein Section */
.protein-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.protein-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.protein-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.protein-image {
    width: 100%;
}

.protein-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.protein-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.protein-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.protein-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 600;
}

.protein-benefits {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
}

.protein-benefits h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
}

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

.protein-benefits li {
    padding: 0.6rem 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    font-weight: 600;
}

.protein-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tarwi Discovery Section */
.tarwi-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.tarwi-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.tarwi-image {
    width: 100%;
}

.tarwi-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.tarwi-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.tarwi-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

.tarwi-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.tarwi-text p strong {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.15rem;
    display: block;
    margin-top: 1.5rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.why-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.why-item p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
}

/* Our Approach Section */
.our-approach {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.approach-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.approach-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 22s ease-in-out infinite alternate;
    will-change: transform;
}

.approach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.88);
    z-index: 1;
}

.approach-content {
    position: relative;
    z-index: 2;
}

.our-approach h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.approach-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
}

.approach-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #d32f2f;
    background-color: #ffebee;
}

.form-group input.success,
.form-group textarea.success {
    border-color: var(--secondary-color);
    background-color: #e8f5e9;
}

.error-message {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
    font-weight: 600;
}

.error-message.show {
    display: block;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-success-message {
    background-color: #e8f5e9;
    border-left: 4px solid var(--secondary-color);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    display: none;
    animation: slideInDown 0.5s ease;
}

.form-success-message.show {
    display: block;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success-message p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(90, 140, 94, 0.15);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--secondary-color);
}

.form-group {
    position: relative;
}

.form-group label {
    transition: var(--transition-fast);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--secondary-color);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

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

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-style: italic;
    opacity: 0.8;
}

.footer-links h4 {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-social h4 {
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-link svg {
    transition: var(--transition);
}

.social-link:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.social-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link span {
    font-size: 1rem;
}

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

.footer-bottom p {
    margin: 0.5rem 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
        transition: transform 0.3s ease;
    }
    
    .menu-toggle:active {
        transform: scale(0.9);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateX(20px);
        animation: slideInNav 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    
    @keyframes slideInNav {
        from {
            opacity: 0;
            transform: translateX(30px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }
    
    .nav-menu a {
        padding: 1rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu a:hover {
        padding-left: 1rem;
        background: rgba(143, 188, 143, 0.15);
        border-radius: 5px;
    }
    
    .nav-menu a.active {
        background: rgba(143, 188, 143, 0.2);
        padding-left: 1rem;
        border-radius: 5px;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .hero-line {
        font-size: 3.5rem;
    }
    
    .hero-ampersand {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-image-main img {
        height: 350px;
    }
    
    .about-image-secondary img {
        height: 500px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-link {
        justify-content: center;
    }
    

    

    
    .heritage-images {
        grid-template-columns: 1fr;
    }
    
    .heritage-images img {
        height: 300px;
    }
    
    .what-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plant-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .protein-content {
        grid-template-columns: 1fr;
    }
    
    .tarwi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tarwi-image img {
        height: 350px;
    }
    
    .protein-image img {
        height: 350px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .boxes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero {
        height: 70vh;
        margin-top: 65px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-line {
        font-size: 3rem;
    }
    
    .hero-ampersand {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Better touch scrolling on mobile */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    .what-card,
    .plant-info,
    .why-item {
        padding: 1.5rem;
    }
    
    .plant-image {
        height: 220px;
    }
}
    
    .what-we-do,
    .our-plants,
    .our-approach,
    .why-choose,
    .about,
    .cta-section,
    .contact {
        padding: 3rem 0;
    }
    
    .what-we-do h2,
    .our-plants h2,
    .our-approach h2,
    .why-choose h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-line {
        font-size: 2.5rem;
    }
    
    .hero-ampersand {
        font-size: 1.8rem;
    }