/* =========================================================
   MARELLA EA WEBSITE STYLESHEET
   Version: 1.3
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {
    --green: #064420;
    --green-dark: #04511f;
    --green-light: #08713f;
    --gold: #d9a21b;
    --navy: #08214a;
    --light: #f7f9f4;
    --text: #1f2a24;
    --white: #ffffff;
}


/* =========================================================
   02. RESET
========================================================= */

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


/* =========================================================
   03. GLOBAL ELEMENTS
========================================================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}


/* =========================================================
   04. LAYOUT / CONTAINER
========================================================= */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 22px;
}


/* =========================================================
   05. HEADER
========================================================= */

.site-header {
    display: flex;
    align-items: center;
    padding: 18px 40px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 320px;
}

.logo {
    height: 75px;
    width: auto;
}

.brand-text span {
    display: block;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: var(--green);
}

.brand-text small {
    color: #555;
    font-size: 15px;
}

.menu-toggle {
    display: none;
}


/* =========================================================
   06. NAVIGATION
========================================================= */

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.main-nav a {
    color: var(--navy);
    font-weight: 700;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green-light);
}


/* =========================================================
   07. MEGA MENU
========================================================= */

.nav-item {
    position: relative;
}

.mega-parent {
    padding: 20px 0;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(880px, calc(100vw - 40px));
    background: #ffffff;
    display: none;
    grid-template-columns: 1.3fr 1fr 1fr;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.mega-parent:hover .mega-menu,
.mega-menu:hover {
    display: grid;
}

.mega-feature {
    background: linear-gradient(135deg, #046c3a, #0a8f4a);
    color: #ffffff;
    padding: 34px;
}

.mega-feature h3 {
    font-size: 30px;
    margin: 10px 0;
}

.mega-feature p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
}

.mega-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
}

.mega-column {
    padding: 34px;
}

.mega-column h4 {
    color: var(--green);
    margin-bottom: 14px;
}

.mega-column a {
    display: block;
    padding: 10px 0;
    color: var(--navy);
    border-bottom: 1px solid #eef2f0;
}

.mega-column a:last-child {
    border-bottom: none;
}

.mega-btn {
    display: inline-block !important;
    background: var(--green-light);
    color: #ffffff !important;
    padding: 12px 18px !important;
    border-radius: 30px;
    font-weight: 700;
}


/* =========================================================
   08. BUTTONS
========================================================= */

.btn {
    display: inline-block;
    background: var(--green-light);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 40px;
    font-weight: 700;
}

.btn:hover {
    background: #055c31;
}

.btn.secondary {
    background: var(--navy);
}


/* =========================================================
   09. HERO BANNER
========================================================= */

.hero-banner {
    width: 100%;
    max-width: 100%;
    min-height: 85vh;
    padding: 100px 80px;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.42),
            rgba(0, 0, 0, 0.42)
        ),
        url("/assets/images/homepage/banner.png") center / cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    max-width: 700px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    margin: 16px 0 22px;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* =========================================================
   10. LABELS / TITLES
========================================================= */

.section-label {
    display: inline-block;
    background: #e8f5ec;
    color: var(--green);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-intro {
    max-width: 850px;
    margin-bottom: 34px;
    font-size: 17px;
    color: #555;
}


/* =========================================================
   11. BENEFIT STRIP
========================================================= */

.benefit-strip {
    max-width: 100%;
    padding: 26px 40px;
    background: #064d2e;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #ffffff;
    padding: 0 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-item span {
    font-size: 40px;
}

.benefit-item p {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
}


/* =========================================================
   12. ABOUT MARELLA
========================================================= */

.about-marella {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-image img {
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
}

.about-content h2 {
    color: var(--green);
    font-size: 38px;
    line-height: 1.15;
    margin: 18px 0;
}

.about-content p {
    color: #555;
    margin-bottom: 18px;
}


/* =========================================================
   13. PRODUCTS SECTION
========================================================= */

.products-section {
    width: 100%;
    max-width: 100%;
    background: var(--light);
    padding: 80px 20px;
}

.products-container {
    max-width: 1300px;
    margin: 0 auto;
}

.products-section h2,
.products-title {
    color: var(--green);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 35px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.product-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2dac9;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-body,
.product-content {
    padding: 28px 24px 34px;
}

.product-body h3,
.product-content h3 {
    color: var(--green);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
}

.product-body p,
.product-content p {
    color: #111;
    font-size: 16px;
    line-height: 1.55;
}


/* =========================================================
   14. WHY BALANCE SECTION
========================================================= */

.why-section,
.page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 22px;
}

.why-section h2,
.page-section h1 {
    color: var(--green);
    font-size: 38px;
    margin: 16px 0 26px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-card {
    background: #ffffff;
    border: 1px solid #e8e2d3;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    color: var(--green);
    margin-bottom: 14px;
}

.info-card ul {
    padding-left: 18px;
}

.info-card li {
    margin-bottom: 8px;
}


/* =========================================================
   15. OUR APPROACH SECTION
========================================================= */

.approach-section {
    width: 100%;
    max-width: 100%;
    background: #f7f9f4;
    padding: 80px 20px;
}

.approach-container {
    max-width: 1300px;
    margin: 0 auto;
}

.approach-title {
    color: var(--green);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 35px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.approach-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}

.approach-card h3 {
    color: #111;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.approach-card p {
    color: #111;
    font-size: 16px;
    line-height: 1.55;
}


/* =========================================================
   16. PILLS / BADGES
========================================================= */

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pill {
    background: #eaf7ef;
    color: var(--green);
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 700;
}


/* =========================================================
   17. CONTACT FORM
========================================================= */

.contact-form {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 160px;
}


/* =========================================================
   18. FOOTER
========================================================= */

.footer {
    background: #005b28;
    color: #fff;
    padding-top: 55px;
}

.footer-container {
    width: min(92%, 1350px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.6fr;
    column-gap: 55px;
    align-items: start;
}

.footer-col {
    text-align: left;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.footer-col p {
    margin: 0 0 14px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 11px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 22px;
    margin: 24px 0;
}

.whatsapp-btn {
    display: inline-block;
    background: #06d66b;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 700;
}

.footer-contact {
    min-width: 360px;
}

.footer-address {
    max-width: 360px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.contact-row strong {
    min-width: 55px;
}

.newsletter-title {
    margin-top: 22px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 430px;
    margin-top: 12px;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 14px;
    border: none;
    outline: none;
}

.newsletter-form button {
    height: 42px;
    padding: 0 18px;
    border: none;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 45px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--gold);
}


/* =========================================================
   19. PRODUCT BENEFIT LIST
========================================================= */

.product-benefits {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    text-align: left;
}

.product-benefits li {
    position: relative;
    padding: 8px 0 8px 32px;
    margin-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.product-benefits li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    left: 0;
    top: 8px;

    color: var(--green);
    font-size: 16px;
}

.product-benefits li:last-child {
    border-bottom: none;
}

/* =========================================================
   20. RESPONSIVE STYLES
========================================================= */

@media (max-width: 992px) {

    .site-header {
        flex-direction: column;
        gap: 20px;
    }

    .brand {
        flex: none;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mega-parent {
        padding: 0;
    }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        grid-template-columns: 1fr;
    }

    .benefit-strip,
    .about-marella,
    .products-grid,
    .cards-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact {
        min-width: 0;
    }

    .hero-banner {
        min-height: 70vh;
        padding: 60px 24px;
    }
}

@media (max-width: 600px) {

    .brand-text span {
        font-size: 30px;
    }

    .logo {
        height: 55px;
    }

    .hero-overlay h1 {
        font-size: 38px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* =========================================================
   CALL TO ACTION - PREMIUM
========================================================= */

.cta-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at top left,
            rgba(217, 162, 27, 0.28),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--green),
            var(--green-light)
        );

    color: #ffffff;
    padding: 110px 20px 150px;
    text-align: center;
}

.cta-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 45px;
    transform: translateX(-50%);

    width: min(85%, 900px);
    height: 1px;

    background: rgba(255, 255, 255, 0.25);
}

.cta-section .container {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-title {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
}

.cta-text {
    max-width: 720px;
    margin: 0 auto 34px;

    font-size: 20px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}

.cta-btn {
    background: var(--gold);
    color: #ffffff;

    padding: 17px 42px;
    font-size: 18px;
    font-weight: 800;

    border-radius: 50px;
    display: inline-block;

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    transition: all 0.25s ease;
}

.cta-btn:hover {
    background: #c48f12;
    transform: translateY(-3px);
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    background: #ffffff;
    padding: 90px 20px;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-section h2 {
    color: var(--green);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.15;
    margin: 18px 0 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 38px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2dac9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.service-content {
    padding: 26px 22px 30px;
}

.service-content h3 {
    color: var(--green);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 12px;
}

.service-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-content a {
    color: var(--green);
    font-weight: 800;
}

.service-content a:hover {
    color: var(--gold);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.page-hero {
    background: linear-gradient(
        135deg,
        var(--green),
        var(--green-light)
    );
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.page-hero .container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.1;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}


/* =========================================================
   COMPANY OVERVIEW
========================================================= */

.about-section {
    padding: 100px 20px;
}

.about-grid {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-content h2 {
    color: var(--green);
    font-size: 40px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}


/* =========================================================
   MISSION & VISION
========================================================= */

.mission-section {
    background: #f8faf8;
    padding: 90px 20px;
}

.mission-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.mission-card h3 {
    color: var(--green);
    font-size: 30px;
    margin-bottom: 20px;
}

.mission-card p {
    color: #555;
    line-height: 1.8;
}


/* =========================================================
   WHY MARELLA
========================================================= */

.difference-section {
    padding: 100px 20px;
}

.difference-section .container {
    max-width: 1300px;
    margin: 0 auto;
}

.difference-section h2 {
    text-align: center;
    color: var(--green);
    font-size: 42px;
    margin-bottom: 50px;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.difference-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;

    transition: all .3s ease;
}

.difference-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.difference-card h3 {
    color: var(--green);
    margin-bottom: 15px;
    font-size: 22px;
}

.difference-card p {
    color: #666;
    line-height: 1.7;
}


/* =========================================================
   SERVICES HIGHLIGHT
========================================================= */

.services-highlight {
    background: #f8faf8;
    padding: 100px 20px;
}

.services-highlight .container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-highlight h2 {
    text-align: center;
    color: var(--green);
    font-size: 42px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-item {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.service-item h3 {
    color: var(--green);
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.7;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
    background: linear-gradient(
        135deg,
        var(--green),
        var(--green-light)
    );

    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.about-cta .container {
    max-width: 900px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-cta .btn {
    display: inline-block;

    background: var(--gold);
    color: #fff;

    padding: 16px 40px;
    border-radius: 50px;

    font-weight: 700;
    text-decoration: none;

    transition: all .3s ease;
}

.about-cta .btn:hover {
    background: #c48f12;
    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .about-grid,
    .mission-grid,
    .difference-grid,
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .about-grid,
    .mission-grid,
    .difference-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .about-content h2,
    .difference-section h2,
    .services-highlight h2,
    .about-cta h2 {
        font-size: 32px;
    }
}

.mission-card {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.mission-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,91,40,0.08);

    border-radius: 50%;
}

.mission-icon i {
    font-size: 42px;
    color: var(--green);
}

.mission-card h3 {
    color: var(--green);
    font-size: 30px;
    margin-bottom: 18px;
}

.difference-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0,91,40,0.08);
}

.difference-icon i {
    font-size: 40px;
    color: var(--green);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-item {
    position: relative;
    min-height: 380px;

    padding: 40px 30px;

    border-radius: 18px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    color: #fff;

    background-size: cover;
    background-position: center;

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-item::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.25)
    );
}

.service-item > * {
    position: relative;
    z-index: 2;
}

.service-item h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feeding-service {
    background-image: url('../images/about/services/feeding-guide.png');
}

.software-service {
    background-image: url('../images/about/services/farm-software.png');
}

.training-service {
    background-image: url('../images/about/services/farmer-training.png');
}

.partnership-service {
    background-image: url('../images/about/services/distribution.png');
}

.service-item {
    position: relative;
    min-height: 420px;

    padding: 40px 30px;

    border-radius: 18px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    color: #fff;

    background-size: cover;
    background-position: center;

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);

    transition: all 0.35s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}
.service-btn {
    display: inline-block;
    align-self: flex-start;

    margin-top: auto;

    padding: 12px 24px;

    background: var(--gold);
    color: #fff;

    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        min-height: 380px;
    }
}

@media (max-width: 600px) {
    .services-highlight,
    .services-section {
        padding: 60px 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-item {
        min-height: 330px;
        padding: 28px 22px;
    }

    .service-item h3 {
        font-size: 22px;
        line-height: 1.2;
    }

    .service-item p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .service-btn {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }
}

.product-hero,
.product-cta {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.product-hero h1,
.product-cta h2 {
    font-size: 46px;
    margin: 18px 0;
}

.product-hero p,
.product-cta p {
    max-width: 760px;
    margin: 0 auto 25px;
    font-size: 20px;
}

.product-overview,
.components-section,
.animal-benefits-section,
.product-climate-section {
    padding: 90px 20px;
}

.product-overview-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.product-image-box img {
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.product-info-box h2,
.components-section h2,
.animal-benefits-section h2,
.product-climate-section h2 {
    color: var(--green);
    font-size: 38px;
    margin-bottom: 22px;
}

.components-grid,
.animal-benefits-grid,
.climate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.component-card,
.animal-benefit-card,
.climate-card {
    background: #fff;
    border: 1px solid #e2dac9;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.animal-benefit-card h3,
.climate-card h3 {
    color: var(--green);
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .product-overview-grid,
    .components-grid,
    .animal-benefits-grid,
    .climate-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .product-overview-grid,
    .components-grid,
    .animal-benefits-grid,
    .climate-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SHOP PAGE
========================================================= */

.shop-section {
    padding: 80px 20px;
    background: #f8faf8;
}

.shop-section .container {
    max-width: 1300px;
    margin: 0 auto;
}

.shop-section h1 {
    text-align: center;
    color: var(--green);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.shop-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 18px;
    line-height: 1.7;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shop-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;

    border: 1px solid #e8e8e8;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);

    transition: all .3s ease;
}

.shop-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.shop-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.shop-content {
    padding: 25px;
}

.shop-card h3 {
    color: var(--green);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.shop-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.shop-price {
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
}

.shop-stock {
    display: inline-block;

    padding: 6px 12px;

    background: rgba(0,128,0,0.08);
    color: #0f7a0f;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 20px;
}

.shop-actions {
    display: flex;
    gap: 10px;
}

.shop-actions .shop-btn {
    flex: 1;
}

.shop-btn {
    text-align: center;

    background: var(--green);
    color: #fff;

    padding: 12px 20px;

    border-radius: 50px;

    text-decoration: none;
    font-weight: 700;

    transition: all .3s ease;
}

.shop-btn:hover {
    background: var(--gold);
    color: #fff;
}

.shop-btn.secondary {
    background: #f4f4f4;
    color: #333;
}

.shop-btn.secondary:hover {
    background: #e5e5e5;
}

/* =========================================================
   SHOP HERO
========================================================= */

.shop-hero {
    background: linear-gradient(
        135deg,
        var(--green),
        var(--green-light)
    );

    color: #fff;

    padding: 100px 20px;

    text-align: center;
}

.shop-hero h1 {
    color: #fff;
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 15px;
}

.shop-hero p {
    max-width: 700px;
    margin: 0 auto;

    font-size: 20px;
    line-height: 1.8;

    color: rgba(255,255,255,0.9);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

    .shop-section {
        padding: 60px 15px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shop-card img {
        height: 220px;
    }

    .shop-section h1,
    .shop-hero h1 {
        font-size: 34px;
    }

    .shop-actions {
        flex-direction: column;
    }

}

.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 30px 0 45px;
}

.shop-categories a {
    padding: 10px 18px;
    border-radius: 30px;
    background: #fff;
    color: var(--green);
    font-weight: 700;
    border: 1px solid #dcdcdc;
}

.shop-categories a.active,
.shop-categories a:hover {
    background: var(--green);
    color: #fff;
}

.shop-category {
    display: inline-block;
    margin: 8px 0 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
}

.product-detail-section {
    padding: 90px 20px;
    background: #f8faf8;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-detail-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.product-detail-content h1 {
    color: var(--green);
    font-size: 44px;
    margin-bottom: 15px;
}

.product-detail-price {
    color: var(--gold);
    font-size: 32px;
    font-weight: 900;
    margin: 20px 0;
}

.product-detail-content p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.add-cart-form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.add-cart-form input[type="number"] {
    width: 90px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-content h1 {
        font-size: 34px;
    }
}

.checkout-section {
    padding: 90px 20px;
    background: #f8faf8;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.checkout-form-box,
.checkout-summary {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.checkout-form-box h1,
.checkout-summary h2 {
    color: var(--green);
    margin-bottom: 25px;
}

.checkout-form-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-form-box input,
.checkout-form-box textarea,
.checkout-form-box select {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
}

.checkout-form-box textarea {
    min-height: 120px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.summary-total {
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
    margin-top: 25px;
}

@media (max-width: 800px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}
.payment-section {
    padding: 90px 20px;
    background: #f8faf8;
}

.payment-card {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.payment-card h1,
.payment-card h2 {
    color: var(--green);
    margin-bottom: 18px;
}

.payment-card p,
.payment-card li {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.payment-card ul {
    margin: 20px 0 30px;
    padding-left: 22px;
}

/* =========================================================
   CART PAGE
========================================================= */

.cart-section {
    padding: 90px 20px;
    background: #f8faf8;
}

.cart-header {
    text-align: center;
    margin-bottom: 45px;
}

.cart-header h1 {
    color: var(--green);
    font-size: 44px;
    margin: 15px 0 10px;
}

.cart-header p {
    color: #666;
    font-size: 18px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
    gap: 35px;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 180px;
    gap: 22px;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.cart-item-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
}

.cart-item-details {
    min-width: 0;
}

.cart-item-details h3 {
    color: var(--green);
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}

.cart-item-details p {
    color: #666;
    margin: 8px 0;
}

.remove-link {
    color: #c62828;
    font-weight: 700;
}

.remove-link:hover {
    color: #b71c1c;
}

.cart-item-price {
    color: var(--gold);
    font-size: 22px;
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
}

.cart-summary-card,
.empty-cart-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.cart-summary-card {
    min-width: 0;
}

.cart-summary-card h2,
.empty-cart-card h2 {
    color: var(--green);
    margin-bottom: 22px;
}

.summary-line,
.summary-total {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.summary-line strong,
.summary-total strong {
    text-align: right;
    white-space: nowrap;
}

.summary-total {
    border-bottom: none;
    font-size: 24px;
    font-weight: 900;
    color: var(--green);
}

.cart-summary-card .shop-btn {
    display: block;
    width: 100%;
    text-align: center;
    flex: unset;
}

.checkout-btn {
    margin-top: 25px;
}

.continue-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    color: var(--green);
    font-weight: 700;
}

.continue-link:hover {
    color: var(--gold);
}

.empty-cart-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.empty-cart-card p {
    margin: 15px 0 25px;
    color: #666;
}

/* =========================================================
   CART BADGE
========================================================= */

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    margin-left: 6px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

/* =========================================================
   CART MOBILE
========================================================= */

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-item-card {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .cart-item-image img {
        width: 90px;
        height: 90px;
    }

    .cart-item-price {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .cart-section {
        padding: 60px 15px;
    }

    .cart-header h1 {
        font-size: 34px;
    }

    .cart-summary-card,
    .empty-cart-card {
        padding: 24px;
    }

    .summary-line,
    .summary-total {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .summary-line strong,
    .summary-total strong {
        text-align: left;
    }
}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page {
    padding: 100px 20px;
    background: linear-gradient(
        180deg,
        #f8faf8 0%,
        #ffffff 100%
    );
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-header h1 {
    font-size: 52px;
    color: var(--green);
    margin: 15px 0;
}

.contact-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.contact-info-card h2 {
    color: var(--green);
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-item i {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(0,128,0,.08);

    color: var(--green);
    font-size: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 30px;

    padding: 15px 20px;

    border-radius: 12px;

    background: #25D366;
    color: #fff;

    text-decoration: none;
    font-weight: 700;

    transition: .3s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 14px 16px;

    border: 1px solid #ddd;
    border-radius: 12px;

    font-size: 16px;
    transition: .3s;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0,128,0,.08);
}

.contact-btn {
    width: 100%;
    border: none;

    background: var(--green);
    color: #fff;

    padding: 16px;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
    transition: .3s;
}

.contact-btn:hover {
    background: var(--gold);
}

@media (max-width: 900px) {

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

    .contact-header h1 {
        font-size: 38px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
}

/* =========================================================
   CUSTOMER ACCOUNT PAGE
========================================================= */

.account-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}

.account-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.account-header {
    text-align: center;
    margin-bottom: 35px;
}

.account-header h1 {
    color: var(--green);
    font-size: 42px;
    margin: 15px 0 8px;
}

.account-header p {
    color: #666;
    font-size: 17px;
}

.account-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 35px 0;
}

.account-detail {
    background: #f8faf8;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e7eee7;
}

.account-detail span {
    display: block;
    color: #777;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.account-detail strong {
    color: var(--green);
    font-size: 17px;
}

.account-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.account-actions .shop-btn {
    flex: unset;
    min-width: 180px;
}

@media (max-width: 700px) {
    .account-card {
        padding: 30px 22px;
    }

    .account-details {
        grid-template-columns: 1fr;
    }

    .account-header h1 {
        font-size: 32px;
    }

    .account-actions .shop-btn {
        width: 100%;
    }
}

.account-panel {
    margin-top: 35px;
    padding: 28px;
    background: #f8faf8;
    border: 1px solid #e3ece3;
    border-radius: 18px;
}

.account-panel h2 {
    color: var(--green);
    margin-bottom: 18px;
}

.account-form {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.account-form input {
    flex: 1;
    min-width: 220px;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.account-orders {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.account-order-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 16px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #edf1ed;
}

.account-order-row strong {
    color: var(--green);
}

.account-order-row p {
    margin: 4px 0 0;
    color: #666;
}

@media (max-width: 700px) {
    .account-order-row {
        grid-template-columns: 1fr;
    }

    .account-form .shop-btn {
        width: 100%;
    }
}

.saved-customer-card {
    background: #f8faf8;
    border: 1px solid #e3ece3;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 22px;
}

.saved-customer-card h3 {
    color: var(--green);
    margin-bottom: 12px;
}

.saved-customer-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.saved-customer-card .shop-btn {
    display: inline-block;
    width: auto;
    flex: unset;
}

/* ==========================================
   PAYMENT INSTRUCTIONS
========================================== */

.payment-section {
    padding: 80px 0;
    background: #f7faf8;
}

.payment-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    border: 1px solid #edf1ed;
}

.payment-card .section-label {
    display: inline-block;
    background: #e8f5e9;
    color: #064420;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.payment-card h1 {
    color: #064420;
    margin-bottom: 15px;
    font-size: 2rem;
}

.payment-card p {
    color: #555;
    line-height: 1.8;
}

.payment-order-info {
    background: #f8faf8;
    border: 1px solid #e5ece5;
    border-radius: 18px;
    padding: 25px;
    margin: 30px 0;
}

.payment-order-info h3 {
    margin-bottom: 15px;
    color: #064420;
}

.payment-order-info .info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.payment-order-info .info-row:last-child {
    border-bottom: none;
}

.payment-method-box {
    margin-top: 30px;
    padding: 30px;
    background: #fffef7;
    border: 2px solid #f1e5a5;
    border-radius: 18px;
}

.payment-method-box h2 {
    color: #064420;
    margin-bottom: 20px;
}

.payment-method-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.payment-method-box li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.payment-method-box li:last-child {
    border-bottom: none;
}

.payment-highlight {
    background: #064420;
    color: #fff;
    padding: 18px 24px;
    border-radius: 14px;
    margin: 25px 0;
    font-size: 1rem;
    font-weight: 600;
}

.payment-actions {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-actions .shop-btn {
    min-width: 220px;
    text-align: center;
}

.payment-status-pending {
    color: #f59e0b;
    font-weight: 700;
}

.payment-status-success {
    color: #16a34a;
    font-weight: 700;
}

.payment-status-failed {
    color: #dc2626;
    font-weight: 700;
}

@media (max-width: 768px) {

    .payment-card {
        padding: 25px;
    }

    .payment-actions {
        flex-direction: column;
    }

    .payment-actions .shop-btn {
        width: 100%;
    }

    .payment-order-info .info-row {
        flex-direction: column;
        gap: 5px;
    }
}

.payment-order-info {
    margin-bottom: 35px;
}

.payment-order-info .info-row {
    margin-bottom: 12px;
}

.payment-actions {
    margin-top: 40px;
}

.payment-actions .shop-btn {
    display: inline-block;
    margin-top: 15px;
}

.payment-highlight {
    margin-bottom: 30px;
}
.payment-order-info {
    margin: 30px 0 40px;
}

.payment-method-box {
    margin-top: 35px;
    margin-bottom: 35px;
}

.payment-actions {
    margin-top: 32px;
}

.payment-actions .shop-btn {
    display: inline-block;
    margin-top: 10px;
}

#location_suggestions {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-top: -10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.location-suggestion {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.location-suggestion:hover {
    background: #f4faf4;
    color: var(--green);
}

/* ==========================================
   BALANCE STORY SECTION - PREMIUM
========================================== */

.balance-story-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(13, 107, 58, .12), transparent 35%),
        linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
    position: relative;
}

.balance-story-section .container {
    max-width: 1100px;
}

.balance-story-section .section-label {
    display: block;
    width: fit-content;
    margin: 0 auto 18px;
}

.balance-story-section h2 {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 45px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: #12351f;
}

.story-content {
    max-width: 920px;
    margin: 0 auto;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(13,107,58,.12);
    border-radius: 28px;
    padding: 55px;
    box-shadow: 0 25px 70px rgba(0,0,0,.08);
}

.story-content p {
    margin-bottom: 22px;
    line-height: 1.95;
    font-size: 1.07rem;
    color: #3f4f43;
}

.story-content p:first-of-type {
    font-size: 1.25rem;
    color: #12351f;
    font-weight: 600;
}

.story-content blockquote {
    margin: 40px 0;
    padding: 30px 35px;
    border-left: 6px solid #0d6b3a;
    background: linear-gradient(135deg, #eef8f0, #ffffff);
    border-radius: 18px;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 700;
    color: #0d6b3a;
}

.story-list {
    list-style: none;
    margin: 25px 0 35px;
    padding: 0;
}

.story-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    line-height: 1.8;
    color: #3f4f43;
}

.story-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    color: #0d6b3a;
    font-weight: 800;
}

.story-highlight {
    margin-top: 55px;
    padding: 38px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(13,107,58,.95), rgba(23,149,77,.95));
    color: #fff;
    border-radius: 24px;
    font-size: 1.35rem;
    line-height: 1.7;
    box-shadow: 0 20px 45px rgba(13,107,58,.25);
}

@media (max-width: 768px) {
    .balance-story-section {
        padding: 70px 0;
    }

    .story-content {
        padding: 28px;
        border-radius: 20px;
    }

    .story-content blockquote {
        font-size: 1.1rem;
        padding: 22px;
    }

    .story-highlight {
        padding: 26px;
        font-size: 1.1rem;
    }
}

/* ==========================================
   PRODUCTS SECTION - PREMIUM
========================================== */

.dairy-hero {
    background: linear-gradient(rgba(6,68,32,.78), rgba(6,68,32,.78)),
        url("../images/products/dairy-balance.jpg") center/cover no-repeat;
    color: #fff;
}

.dairy-section {
    padding: 90px 0;
    background: #f8faf7;
}

.dairy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.dairy-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.dairy-content h2 {
    color: #064420;
    margin-bottom: 20px;
}

.dairy-content p {
    line-height: 1.8;
    color: #555;
}

.dairy-benefits {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.dairy-benefits li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.dairy-benefits li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #0d6b3a;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.dairy-usage-section {
    padding: 90px 0;
    background: #fff;
    text-align: center;
}

.usage-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.usage-card {
    background: #f8faf7;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e4ece4;
}

.usage-card h3 {
    color: #064420;
    margin-bottom: 12px;
}

.usage-card p {
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .dairy-grid,
    .usage-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PRODUCTS SECTION - DAIRY PREMIUM UPDATE
========================================== */

.dairy-product-page {
    background: #f5f9f4;
    padding-bottom: 70px;
}

.dairy-hero-wrap {
    padding: 40px 5%;
    background: #ffffff;
    border-bottom: 6px solid #082b68;
}

.dairy-title h1 {
    font-size: clamp(2rem, 5vw, 4.2rem);
    color: #082b68;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.dairy-title p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #0b6b2e;
    font-weight: 800;
    margin-top: 5px;
}

.dairy-icons {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.dairy-icons div {
    background: #f7fbf7;
    border: 1px solid #dce8dc;
    border-radius: 14px;
    padding: 14px;
    font-size: .95rem;
}

.dairy-layout {
    width: min(1500px, 95%);
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr 1.05fr;
    gap: 24px;
}

.dairy-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dce5dc;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.dairy-card h2 {
    background: #082b68;
    color: #fff;
    padding: 14px 18px;
    margin: 0;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
}

.dairy-card img {
    width: 100%;
    display: block;
}

.cow-points {
    padding: 20px;
}

.cow-points p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.main-product-card {
    position: relative;
}

.main-product-card ul,
.tips-card ul {
    list-style: none;
    padding: 22px;
    margin: 0;
}

.main-product-card li,
.tips-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    line-height: 1.5;
}

.main-product-card li::before,
.tips-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background: #0b6b2e;
    border-radius: 50%;
}

.milk-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #082b68;
    color: #fff;
    display: grid;
    place-content: center;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
    border: 8px solid #fff;
}

.milk-badge span {
    font-size: .9rem;
    text-transform: uppercase;
}

.dairy-table {
    width: 100%;
    border-collapse: collapse;
}

.dairy-table th {
    background: #eef4ee;
    color: #0b4b22;
    padding: 13px;
    font-size: .85rem;
}

.dairy-table td {
    padding: 13px;
    border-top: 1px solid #e3e8e3;
    text-align: center;
    font-size: .9rem;
}

.dairy-table td:first-child {
    text-align: left;
    font-weight: 700;
}

.dairy-benefit-strip {
    width: min(1500px, 95%);
    margin: 25px auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.dairy-benefit-strip div {
    background: #fff;
    border: 1px solid #dce5dc;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.dairy-benefit-strip h3 {
    color: #082b68;
    margin-bottom: 8px;
}

.dairy-feed-section {
    width: min(1500px, 95%);
    margin: 25px auto;
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 24px;
}

.tips-card .btn {
    margin: 0 22px 25px;
}

@media (max-width: 1000px) {
    .dairy-layout,
    .dairy-feed-section,
    .dairy-icons,
    .dairy-benefit-strip {
        grid-template-columns: 1fr;
    }

    .milk-badge {
        position: static;
        margin: 20px auto;
    }
}
.dairy-icons {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.dairy-icons div {
    background: #f7fbf7;
    border: 1px solid #dce8dc;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dairy-icons i {
    font-size: 1.8rem;
    color: #0d6b3a;
    margin-bottom: 8px;
}

.dairy-icons strong {
    color: #082b68;
    font-size: 1rem;
}

/* ==========================================
   PRODUCTS SECTION - POULTRY PREMIUM UPDATE
========================================== */

.poultry-product-page {
    background: #fff9ef;
    padding-bottom: 70px;
}

.poultry-hero-wrap {
    padding: 40px 5%;
    background: #ffffff;
    border-bottom: 6px solid #0b6b2e;
}

.poultry-title h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #082b68;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.poultry-title p {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    color: #0b6b2e;
    font-weight: 800;
    margin-top: 5px;
}

.poultry-icons {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.poultry-icons div {
    background: #fffdf7;
    border: 1px solid #eadfbe;
    border-radius: 14px;
    padding: 14px;
    font-size: .95rem;
}

.poultry-layout {
    width: min(1500px, 95%);
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr 1.05fr;
    gap: 24px;
}

.poultry-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eadfbe;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.poultry-card h2 {
    background: #0b6b2e;
    color: #fff;
    padding: 14px 18px;
    margin: 0;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
}

.poultry-card img {
    width: 100%;
    display: block;
}

.chicken-points {
    padding: 20px;
}

.chicken-points p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.main-poultry-card {
    position: relative;
}

.main-poultry-card ul,
.tips-card ul {
    list-style: none;
    padding: 22px;
    margin: 0;
}

.main-poultry-card li,
.tips-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    line-height: 1.5;
}

.main-poultry-card li::before,
.tips-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background: #0b6b2e;
    border-radius: 50%;
}

.egg-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: #f5a400;
    color: #082b68;
    display: grid;
    place-content: center;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 900;
    border: 8px solid #fff;
}

.egg-badge span {
    font-size: .78rem;
    text-transform: uppercase;
}

.poultry-table {
    width: 100%;
    border-collapse: collapse;
}

.poultry-table th {
    background: #fff4d8;
    color: #0b4b22;
    padding: 13px;
    font-size: .85rem;
}

.poultry-table td {
    padding: 13px;
    border-top: 1px solid #eee2c0;
    text-align: center;
    font-size: .9rem;
}

.poultry-table td:first-child {
    text-align: left;
    font-weight: 700;
}

.poultry-benefit-strip {
    width: min(1500px, 95%);
    margin: 25px auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.poultry-benefit-strip div {
    background: #fff;
    border: 1px solid #eadfbe;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.poultry-benefit-strip h3 {
    color: #082b68;
    margin-bottom: 8px;
}

.poultry-feed-section {
    width: min(1500px, 95%);
    margin: 25px auto;
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 24px;
}

.tips-card .btn {
    margin: 0 22px 25px;
}

@media (max-width: 1000px) {
    .poultry-layout,
    .poultry-feed-section,
    .poultry-icons,
    .poultry-benefit-strip {
        grid-template-columns: 1fr;
    }

    .egg-badge {
        position: static;
        margin: 20px auto;
    }
}
.poultry-icons {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.poultry-icons div {
    background: #fffdf7;
    border: 1px solid #eadfbe;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.poultry-icons i {
    font-size: 1.8rem;
    color: #0b6b2e;
    margin-bottom: 6px;
}

.poultry-icons strong {
    color: #082b68;
}

/* ==========================================
     SHEEP & GOAT PRODUCT PAGE
========================================== */

.sheep-goat-product-page {
    background: #f8faf4;
    padding-bottom: 70px;
}

.sheep-goat-hero-wrap {
    padding: 40px 5%;
    background: #ffffff;
    border-bottom: 6px solid #0b6b2e;
}

.sheep-goat-title h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #082b68;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.sheep-goat-title p {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    color: #0b6b2e;
    font-weight: 800;
    margin-top: 5px;
}

.sheep-goat-icons {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.sheep-goat-icons div {
    background: #f7fbf7;
    border: 1px solid #dce8dc;
    border-radius: 14px;
    padding: 14px;
    font-size: .95rem;
}

.sheep-goat-layout {
    width: min(1500px, 95%);
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr 1.05fr;
    gap: 24px;
}

.sheep-goat-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dce5dc;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.sheep-goat-card h2 {
    background: #0b6b2e;
    color: #fff;
    padding: 14px 18px;
    margin: 0;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
}

.sheep-goat-card img {
    width: 100%;
    display: block;
}

.animal-points {
    padding: 20px;
}

.animal-points p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.main-sheep-goat-card {
    position: relative;
}

.main-sheep-goat-card ul,
.tips-card ul {
    list-style: none;
    padding: 22px;
    margin: 0;
}

.main-sheep-goat-card li,
.tips-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    line-height: 1.5;
}

.main-sheep-goat-card li::before,
.tips-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background: #0b6b2e;
    border-radius: 50%;
}

.goat-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: #082b68;
    color: #fff;
    display: grid;
    place-content: center;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 900;
    border: 8px solid #fff;
}

.goat-badge span {
    font-size: .85rem;
    text-transform: uppercase;
}

.sheep-goat-table {
    width: 100%;
    border-collapse: collapse;
}

.sheep-goat-table th {
    background: #eef7ee;
    color: #0b4b22;
    padding: 13px;
    font-size: .85rem;
}

.sheep-goat-table td {
    padding: 13px;
    border-top: 1px solid #e3e8e3;
    text-align: center;
    font-size: .9rem;
}

.sheep-goat-table td:first-child {
    text-align: left;
    font-weight: 700;
}

.sheep-goat-benefit-strip {
    width: min(1500px, 95%);
    margin: 25px auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.sheep-goat-benefit-strip div {
    background: #fff;
    border: 1px solid #dce5dc;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.sheep-goat-benefit-strip h3 {
    color: #082b68;
    margin-bottom: 8px;
}

.sheep-goat-feed-section {
    width: min(1500px, 95%);
    margin: 25px auto;
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 24px;
}

.tips-card .btn {
    margin: 0 22px 25px;
}

@media (max-width: 1000px) {
    .sheep-goat-layout,
    .sheep-goat-feed-section,
    .sheep-goat-icons,
    .sheep-goat-benefit-strip {
        grid-template-columns: 1fr;
    }

    .goat-badge {
        position: static;
        margin: 20px auto;
    }
}
.sheep-goat-icons div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #f7fbf7;
    border: 1px solid #dce8dc;
    border-radius: 14px;
    padding: 18px 14px;
    font-size: .95rem;
}

.sheep-goat-icons i {
    font-size: 1.8rem;
    color: #0b6b2e;
    margin-bottom: 6px;
}
.fa-circle-check {
    color: #0b6b2e;
    margin: 0 10px;
    font-size: 0.8rem;
}

/* ==========================================
     MEGA MENU MOBILE
========================================== */
@media (max-width: 991px) {
    .mega-parent .mega-menu {
        display: none;
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        padding: 15px;
        border-radius: 14px;
        background: #f8faf7;
    }

    .mega-parent.mega-open .mega-menu {
        display: grid;
    }

    .mega-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mega-toggle i {
        margin-left: 8px;
        transition: transform .25s ease;
    }

    .mega-parent.mega-open .mega-toggle i {
        transform: rotate(180deg);
    }
}

/* ===========================
   Product Detail
=========================== */

.product-detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:flex-start;
}

.product-detail-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

.product-detail-content h1{
    margin-bottom:15px;
}

.product-detail-price{
    font-size:46px;
    font-weight:700;
    color:#d89b00;
    margin:25px 0;
}

.add-cart-form{
    margin-top:35px;
}

.add-cart-form label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    margin-top:20px;
    color:#033b2d;
}

.add-cart-form select,
.add-cart-form input[type=number]{

    width:100%;
    height:52px;
    padding:0 15px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    font-size:16px;
    background:#fff;
    box-sizing:border-box;

}

.add-cart-form button{

    margin-top:30px;
    width:220px;

}

.shop-category{

    display:inline-block;
    margin-bottom:15px;
    color:#c98b00;
    font-weight:600;

}

@media(max-width:991px){

.product-detail-grid{

    grid-template-columns:1fr;

}

.product-detail-content{

    margin-top:30px;

}

.add-cart-form button{

    width:100%;

}

}