:root {
    /* Earthy Greens */
    --primary-green: #1A2902;  /* Deep Forest */
    --moss-green: #4F5D2F;     /* Moss */
    --light-green: #D8E2DC;    /* Soft Leaf */
    
    /* Earthy Browns */
    --accent-brown: #A67C52;   /* Clay/Copper */
    --soil-dark: #3E2723;      /* Deep Brown */
    
    /* Neutral Earth */
    --linen: #F2EDE4;          /* Warm Paper Background */
    --white: #ffffff;
    --text-main: #2D2926;      /* Almost black coffee */
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--linen);
    overflow-x: hidden;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background: url('Gemini_Generated_Image_tq4dqdtq4dqdtq4d.png') center/cover;

}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        rgba(26, 41, 2, 0.85), 
        rgba(62, 39, 35, 0.5)
    );
}

.hero-content { 
    position: relative; 
    z-index: 2;
    padding: 0 20px;
}
.hero h1 { 
    font-size: 4rem; 
    font-weight: 800; 
    margin-bottom: 20px; 
    line-height: 1.1;
 }
.hero p { 
    font-size: 1.5rem; 
    margin-bottom: 30px; 
    opacity: 0.9; 
}

.btn-gold {
    background: var(--accent-brown);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.wave-divider { 
    position: absolute; 
    bottom: 0; 
    width: 100%; 
    line-height: 0; 
}

/* ABOUT */
.about { 
    padding: 100px 20px; 
}
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}
.about-image img { 
    width: 100%; 
    border-radius: 30px; 
}
.tag-light { 
    color: var(--primary-green); 
    background: var(--light-green); 
    padding: 5px 15px; 
    border-radius: 20px; 
    font-weight: 700; 
    font-size: 0.8rem;
    display: inline-block;
 }
.about-text h2 { 
    font-size: 2.8rem; 
    color: var(--primary-green); 
    margin: 20px 0; 
    line-height: 1.2; 
}

.about-text p {
    margin-bottom: 15px;
}

/* SERVICES */
.services { 
    background-color: var(--light-green); 
    padding: 100px 20px; 
    text-align: center; 
}
.tag-pill { 
    background: var(--primary-green); 
    color: white; 
    padding: 5px 20px; 
    border-radius: 20px; 
    font-weight: 700;
    display: inline-block;
}
.section-header h2 { 
    font-size: 2.5rem; 
    color: var(--primary-green); 
    margin: 20px 0; 
}
.subtitle {
    color: var(--text-main); 
    margin-bottom: 50px; 
    opacity: 0.8;
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}

.service-card { 
    background: var(--white);
    border-bottom: 4px solid var(--moss-green);
    padding: 40px 30px; 
    border-radius: 25px; 
    text-align: left; 
    transition: 0.3s; 
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-circle { 
    width: 60px; 
    height: 60px; 
    background: var(--light-green); 
    border-radius: 50%; 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary-green);
    font-size: 1.5rem;
}

.service-card h3{
    color: var(--soil-dark);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-main);
    opacity: 0.8;
}

/* WHY CHOOSE US */
.why-us-container{ 
    padding: 100px 20px 20px;
    text-align: center; 
    width: 100%;
    background-color: var(--linen); 
}

.tag-pill-gold { 
    background: #fef3e2; 
    color: var(--accent-brown); 
    padding: 5px 20px; 
    border-radius: 20px; 
    font-weight: 700; 
    border: 1px solid var(--accent-brown);
    display: inline-block;
}

.why-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    justify-content: center;
    align-items: stretch;
    margin-top: 50px; 
    text-align: left;
}

.why-card { 
    border: 1px solid #ddd; 
    padding: 30px; 
    border-radius: 20px; 
    display: flex; 
    gap: 20px; 
    background-color: var(--white);
    align-items: flex-start;
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.number-circle { 
    background: var(--accent-brown);  
    color: white; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    font-weight: 700; 
}

.why-card h3 {
    margin-bottom: 10px;
}

.why-card p {
    opacity: 0.8;
}

/* IMPACT */
.impact {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 100px 20px 20px;
background:  
                url('black-farmer.jpg') no-repeat center;
    background-size: cover;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}

.impact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.impact h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.impact p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.impact-wave { 
    position: absolute; 
    bottom: 0; 
    width: 100%; 
    line-height: 0; 
    pointer-events: none;
}

/* CONTACT */
.contact {
    background: linear-gradient(rgb(30, 48, 1), rgba(22, 68, 0, 0.685));
    padding: 100px 20px 20px;
    text-align: center; 
    color: white; 
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px auto; 
    max-width: 1200px;
}

.contact-card { 
    background: rgba(255,255,255,0.1);
    padding: 40px; 
    border-radius: 25px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.15);
}

.contact-icon { 
    font-size: 2rem;
    background: var(--accent-brown); 
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex; 
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.btn-gold-large { 
    background: var(--accent-brown);
    color: white;
    padding: 20px 60px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700;
    display: inline-block; 
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.btn-gold-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

footer { 
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px; 
    font-size: 0.9rem; 
    opacity: 0.7; 
}

.commodities {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    min-height: auto;
}

/* Container Layout */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    gap: 30px;
    padding: 20px;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Card Style */
.prod-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    width: 300px;
    height: 400px;
    background: var(--soil-dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Image & Zoom Animation */
.prod-img {
    width: 100%;
    height: 100%;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.prod-card:hover .prod-img img {
    transform: scale(1.1);
}

/* Text Overlay Styling */
.prod-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.4) 60%, 
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.prod-title {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 0 0 10px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.prod-description {
    color: var(--light-green);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */

/* Tablets (≤ 1024px) */
/* @media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prod-grid {
        grid-template-columns: repeat(2, 300px);
    }

    .commodities {
        padding: 80px 20px;
    }
} */

/* Mobile (≤ 768px) */
/* @media (max-width: 768px) { */
    /* body {
        box-sizing: border-box; 
        margin: 0;
        padding: 0;
        display: flex;align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero {
        height: 90vh;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .services {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .prod-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .prod-card {
        width: 90%;
        max-width: 300px;
    }

    .impact h2 {
        font-size: 2rem;
    }

    .impact p {
        font-size: 1rem;
    }
} */

/* Small phones (≤ 480px) */
/* @media (max-width: 480px) {
     body {
        box-sizing: border-box; 
        margin: 0;
        padding: 0;
        display: flex;align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about {
        padding: 70px 15px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .why-us-container {
        padding: 70px 15px;
    }
   .contact-grid{
    grid-template-columns: 1fr;
        justify-items: center;
   }
    .impact {
        min-height: 80vh;
        padding: 80px 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
.services{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
    .impact h2 {
        font-size: 1.8rem;
    }

    .btn-gold,
    .btn-gold-large {
        padding: 14px 36px;
        font-size: 1rem;
    }

    .prod-card {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
    .contact h2 {
        font-size: 2rem;
    }
} */

/* =========================
    REFINED RESPONSIVE FIXES
   ========================= */

/* Global Safety Net to prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
    .about-grid, .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-grid { 
        grid-template-columns: repeat(2, 1fr); 
        width: 100%; 
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    /* REMOVED: display: flex from body. This was the main cause of the wobble */
    body {
        display: block; 
    }

    .hero h1 { font-size: 2.2rem; }
    
    /* Stack cards in one column */
    .services-grid, 
    .why-grid, 
    .contact-grid, 
    .prod-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Fix for the Contact Cards shown in your screenshot */
    .contact-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 15px;
    }

    /* This prevents long emails from pushing the card off-screen */
    .contact-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 0.9rem;
    }

    .prod-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 { font-size: 1.8rem; }

    .about-text h2, .section-header h2, .contact h2 {
        font-size: 1.6rem;
    }

    /* Force all images to stay within screen bounds */
    img {
        max-width: 100%;
        height: auto;
    }
}