/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    color: #1d2b20;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font-family: inherit;
}


/* =========================================================
   GLOBAL VARIABLES
========================================================= */

:root {
    --green-dark: #17391e;
    --green: #2e7d32;
    --green-light: #e8f2e8;
    --green-soft: #f5f8f4;

    --text-dark: #1d2b20;
    --text: #4b5563;
    --white: #ffffff;

    --gold: #c9a85d;

    --container-width: 1200px;

    --transition: 0.3s ease;
}


/* =========================================================
   CONTAINER
========================================================= */

.header-container,
.hero-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    height: 82px;
    background: #ffffff;
    position: relative;
    z-index: 1000;

    border-bottom: 1px solid #eeeeee;
}

.header-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nabta_logo {
    width: 105px;
    height: auto;
    display: block;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;

    position: relative;

    transition: var(--transition);
}


/* Underline effect */

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 145px;
    padding: 11px 20px;

    background: var(--green-dark);
    color: var(--white);

    border-radius: 6px;

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.header-cta:hover {
    background: var(--green);
    color: var(--white);

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    color: var(--green-dark);

    font-size: 23px;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 680px;

    position: relative;

    background-image: url("copy.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* Dark overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(10, 25, 14, 0.82) 0%,
            rgba(10, 25, 14, 0.62) 42%,
            rgba(10, 25, 14, 0.20) 100%);

    z-index: 1;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    min-height: 680px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    width: 650px;
    max-width: 100%;

    color: var(--white);
}


/* Small heading */

.hero-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #d8e8d9;

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Main heading */

.hero h1 {
    max-width: 700px;

    margin-bottom: 22px;

    color: var(--white);

    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;

    line-height: 1.1;

    letter-spacing: -1px;
}

.hero h1 span {
    display: block;

    color: #d8e8d9;
}


/* Description */

.hero-description {
    max-width: 610px;

    margin-bottom: 32px;

    color: #f0f4f0;

    font-size: 17px;
    font-weight: 300;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 38px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}


/* Primary */

.btn-primary {
    background: var(--white);
    color: var(--green-dark);
}

.btn-primary:hover {
    background: var(--green-light);
    color: var(--green-dark);

    transform: translateY(-2px);
}


/* Secondary */

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.7);

    color: var(--white);

    background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--green-dark);

    transform: translateY(-2px);
}


/* =========================================================
   BUYER PATHS
========================================================= */

.buyer-paths {
    display: flex;
    align-items: stretch;

    gap: 12px;

    max-width: 650px;
}

.buyer-path {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;

    background: rgba(0, 0, 0, 0.18);

    color: var(--white);

    backdrop-filter: blur(4px);

    transition: var(--transition);
}

.buyer-path:hover {
    background: rgba(255, 255, 255, 0.12);

    transform: translateY(-3px);
}


/* Buyer icon */

.buyer-path>i {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #d8e8d9;

    font-size: 15px;
}


/* Buyer text */

.buyer-path span {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.buyer-path strong {
    color: var(--white);

    font-size: 13px;
    font-weight: 600;
}

.buyer-path small {
    color: #d6ded7;

    font-size: 10px;
    font-weight: 300;

    line-height: 1.4;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .header-container {
        width: min(92%, 850px);
        gap: 18px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .header-cta {
        min-width: 120px;
        padding: 10px 14px;
        font-size: 12px;
    }


    .hero {
        min-height: 620px;
    }

    .hero-container {
        min-height: 620px;
    }

    .hero-content {
        width: 580px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-description {
        font-size: 15px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-header {
        height: 72px;
    }

    .header-container {
        width: 90%;
        position: relative;
    }


    /* Logo */

    .nabta_logo {
        width: 90px;
    }


    /* Menu button */

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;

        margin-left: auto;
    }


    /* Mobile navigation */

    .main-nav {
        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        display: block;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);

        max-height: 0;

        overflow: hidden;

        transition: max-height 0.35s ease;
    }

    .main-nav.active {
        max-height: 500px;
    }

    .nav-links {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding: 13px 25px;

        font-size: 14px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: var(--green-light);
    }


    /* Header CTA */

    .header-cta {
        display: none;
    }


    /* Hero */

    .hero {
        min-height: calc(100svh - 72px);

        background-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(10, 25, 14, 0.82) 0%,
                rgba(10, 25, 14, 0.60) 100%);
    }

    .hero-container {
        width: 90%;
        min-height: calc(100svh - 72px);

        align-items: center;
    }

    .hero-content {
        width: 100%;
        max-width: 520px;
    }


    .hero-eyebrow {
        margin-bottom: 12px;

        font-size: 11px;

        letter-spacing: 1px;
    }


    .hero h1 {
        margin-bottom: 18px;

        font-size: clamp(36px, 10vw, 48px);

        line-height: 1.12;
        letter-spacing: -0.5px;
    }


    .hero-description {
        margin-bottom: 25px;

        font-size: 14px;
        line-height: 1.7;
    }


    /* Buttons */

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 10px;

        margin-bottom: 25px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;

        min-height: 48px;
    }


    /* Buyer paths */

    .buyer-paths {
        flex-direction: column;

        width: 100%;

        gap: 8px;
    }

    .buyer-path {
        width: 100%;

        padding: 11px 13px;
    }

    .buyer-path>i {
        width: 34px;
        height: 34px;
    }

    .buyer-path strong {
        font-size: 12px;
    }

    .buyer-path small {
        font-size: 9px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */



@media (max-width: 427px) {

    header {
        position: relative;
        z-index: 1000;
    }

    /* Menu Button */

    .menu-btn {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        padding: 0;

        border: none;
        background: transparent;

        color: #124b23;

        font-size: 26px;

        cursor: pointer;

        position: relative;
        z-index: 1002;
    }


    /* Navigation */

    header nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #ffffff;

        overflow: hidden;

        max-height: 0;

        transition: max-height 0.4s ease;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

        z-index: 1001;
    }


    /* Open Navigation */

    header nav.nav-open,
    header nav:has(.nav-links.show) {
        max-height: 600px;
    }


    /* UL */

    header nav .nav-links {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: flex-start;

        width: 100%;

        margin: 0;

        padding: 10px 0 15px;

        gap: 0;

        list-style: none;
    }


    /* LI */

    header nav .nav-links li {

        display: block;

        width: 100%;

        margin: 0;

        padding: 0;

        text-align: center;
    }


    /* LINKS */

    header nav .nav-links li a {

        display: block;

        width: 100%;

        padding: 14px 20px;

        color: #124b23;

        font-size: 16px;

        text-decoration: none;
    }


    header nav .nav-links li a:hover {

        background: #f1f6f1;

        color: #124b23;
    }


    /* Hide Contact Button */

    header > .btn {
        display: none;
    }

}
/* =========================================================
   TRUST / BUYER NEEDS
========================================================= */

.trust-section {
    padding: 95px 0;
    background: #ffffff;
}

.trust-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading>span {
    display: block;

    margin-bottom: 10px;

    color: var(--green);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 18px;

    color: var(--green-dark);

    font-size: clamp(30px, 4vw, 44px);
    font-weight: 600;

    line-height: 1.2;
}

.section-heading p {
    max-width: 700px;
    margin: 0 auto;

    color: var(--text);

    font-size: 15px;
    font-weight: 400;

    line-height: 1.8;
}


/* =========================================================
   TRUST GRID
========================================================= */

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* =========================================================
   TRUST CARD
========================================================= */

.trust-card {
    min-height: 230px;

    padding: 30px 24px;

    background: var(--green-soft);

    border: 1px solid #e5ece5;
    border-radius: 12px;

    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-6px);

    border-color: #d2e2d2;

    box-shadow: 0 15px 35px rgba(23, 57, 30, 0.08);
}


/* =========================================================
   ICON
========================================================= */

.trust-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--green-dark);

    color: #ffffff;

    font-size: 19px;
}


/* =========================================================
   CARD TEXT
========================================================= */

.trust-card h3 {
    margin-bottom: 10px;

    color: var(--green-dark);

    font-size: 18px;
    font-weight: 600;
}

.trust-card p {
    color: var(--text);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   TRUST TABLET
========================================================= */

@media (max-width: 992px) {

    .trust-section {
        padding: 75px 0;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   TRUST MOBILE
========================================================= */

@media (max-width: 600px) {

    .trust-section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .trust-card {
        min-height: auto;

        padding: 24px 20px;

        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .trust-icon {
        width: 44px;
        height: 44px;

        flex-shrink: 0;

        margin-bottom: 0;

        font-size: 16px;
    }

    .trust-card h3 {
        font-size: 16px;
    }

    .trust-card p {
        font-size: 12px;
    }

}

/* =========================================================
   PRODUCTS SECTION
========================================================= */

.products-section {
    padding: 100px 0;

    background: #f7faf6;
}

.products-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================================================
   PRODUCTS HEADING
========================================================= */

.products-heading {
    margin-bottom: 45px;
}


/* =========================================================
   CATEGORY FILTER
========================================================= */

.product-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 45px;
}

.category-btn {
    padding: 10px 20px;

    border: 1px solid #dce7dc;
    border-radius: 30px;

    background: #ffffff;

    color: #3f5544;

    font-size: 13px;
    font-weight: 500;

    cursor: pointer;

    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--green);

    color: var(--green);
}

.category-btn.active {
    background: var(--green-dark);

    border-color: var(--green-dark);

    color: #ffffff;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e6ece6;
    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(23, 57, 30, 0.05);

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 35px rgba(23, 57, 30, 0.10);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
    height: 220px;

    position: relative;

    overflow: hidden;

    background: #edf2ed;
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}


/* =========================================================
   PRODUCT CATEGORY BADGE
========================================================= */

.product-category {
    position: absolute;

    top: 14px;
    left: 14px;

    padding: 5px 10px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.92);

    color: var(--green-dark);

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 8px;

    color: var(--green-dark);

    font-size: 20px;
    font-weight: 600;
}

.product-info p {
    min-height: 66px;

    margin-bottom: 16px;

    color: var(--text);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   PRODUCT META
========================================================= */

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-top: 13px;

    border-top: 1px solid #edf1ed;

    color: #68756b;

    font-size: 10px;
    font-weight: 500;
}

.product-meta span:first-child {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-meta i {
    color: var(--green);
}


/* =========================================================
   PRODUCT LINK
========================================================= */

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 15px;

    color: var(--green);

    font-size: 12px;
    font-weight: 600;

    transition: var(--transition);
}

.product-link:hover {
    color: var(--green-dark);

    gap: 11px;
}


/* =========================================================
   PRODUCTS CTA
========================================================= */

.products-cta {
    margin-top: 50px;

    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: var(--green-dark);

    border-radius: 12px;
}

.products-cta p {
    max-width: 650px;

    margin: 0;

    color: #e1e9e2;

    font-size: 14px;
    line-height: 1.7;
}

.products-cta-btn {
    flex-shrink: 0;

    background: #ffffff;
    color: var(--green-dark);

    white-space: nowrap;
}

.products-cta-btn:hover {
    background: var(--green-light);
    color: var(--green-dark);
}


/* =========================================================
   PRODUCTS TABLET
========================================================= */

@media (max-width: 1050px) {

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   PRODUCTS TABLET / SMALL
========================================================= */

@media (max-width: 800px) {

    .products-section {
        padding: 75px 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image {
        height: 210px;
    }

    .products-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   PRODUCTS MOBILE
========================================================= */

@media (max-width: 560px) {

    .products-section {
        padding: 65px 0;
    }

    .products-container {
        width: 90%;
    }

    .products-heading {
        margin-bottom: 30px;
    }

    .product-categories {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 8px;

        margin-bottom: 30px;

        scrollbar-width: none;
    }

    .product-categories::-webkit-scrollbar {
        display: none;
    }

    .category-btn {
        flex-shrink: 0;

        padding: 9px 16px;

        font-size: 11px;
    }

    .products-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .product-image {
        height: 230px;
    }

    .product-info {
        padding: 18px;
    }

    .product-info p {
        min-height: auto;
    }

    .products-cta {
        margin-top: 35px;

        padding: 24px 20px;
    }

    .products-cta p {
        font-size: 12px;
    }

    .products-cta-btn {
        width: 100%;
    }

}

/* =========================================================
   ABOUT NABTA
========================================================= */

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================
   ABOUT HEADING
========================= */

.about-heading {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}


/* =========================
   ABOUT CONTENT
========================= */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}


/* =========================
   IMAGE
========================= */

.about-image {
    overflow: hidden;

    border-radius: 16px;

    background: #edf2ed;
}

.about-image img {
    width: 100%;
    height: 500px;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}


/* =========================
   TEXT
========================= */

.about-text {
    max-width: 560px;
}

.about-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--green);

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-text h3 {
    margin-bottom: 20px;

    color: var(--green-dark);

    font-size: 32px;
    font-weight: 600;

    line-height: 1.3;
}

.about-text>p {
    margin-bottom: 16px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   BUYER TYPES
========================= */

.buyer-types {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 30px;
}

.buyer-card {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 18px;

    background: #f7faf6;

    border: 1px solid #e4ebe4;

    border-radius: 12px;
}

.buyer-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #e6f0e5;

    color: var(--green);

    font-size: 16px;
}

.buyer-card h4 {
    margin-bottom: 6px;

    color: var(--green-dark);

    font-size: 14px;
    font-weight: 600;
}

.buyer-card p {
    margin: 0;

    color: var(--text);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================
   BUTTON
========================= */

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 30px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .about-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image {
        max-width: 700px;
        margin: 0 auto;
    }

    .about-text {
        max-width: 700px;
        margin: 0 auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .about-section {
        padding: 65px 0;
    }

    .about-heading {
        margin-bottom: 35px;
    }

    .about-image img {
        height: 300px;
    }

    .about-text h3 {
        font-size: 25px;
    }

    .about-text>p {
        font-size: 13px;
    }

    .buyer-types {
        grid-template-columns: 1fr;
    }

    .about-btn {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding: 100px 0;
    background: #f7faf6;
}

.contact-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* ================= Contact Heading ================= */

.contact-heading {
    margin-bottom: 55px;
}

.contact-heading h2 {
    color: var(--green-dark);
}

.contact-heading p {
    max-width: 680px;
    margin: 0 auto;
}

/* ================= Contact Wrapper ================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
    align-items: stretch;
}

/* ================= Contact Info ================= */

.contact-info {
    padding: 40px;
    background: var(--green-dark);
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(23, 57, 30, 0.08);
}

.contact-info h3 {
    margin-bottom: 15px;

    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.contact-info>p {
    margin-bottom: 35px;

    color: #dce6dd;
    font-size: 14px;
    line-height: 1.8;
}

/* ================= Contact Items ================= */

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 22px;
}

.contact-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.1);
    color: var(--green-light);

    font-size: 16px;
}

.contact-item span {
    display: block;

    margin-bottom: 3px;

    color: #aebcaf;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.contact-item strong {
    display: block;

    color: #fff;

    font-size: 14px;
    font-weight: 500;
}

/* ================= WhatsApp ================= */

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;

    margin-top: 18px;
    padding: 13px 18px;

    border-radius: 8px;

    background: #fff;
    color: var(--green-dark);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: var(--green-light);
    color: var(--green-dark);

    transform: translateY(-2px);
}

/* ================= Contact Form ================= */

.contact-form-box {
    padding: 40px;

    background: #fff;

    border: 1px solid #e4ebe4;
    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(23, 57, 30, 0.05);
}

.contact-form-box form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #dfe7df;
    border-radius: 8px;

    background: #fbfdfb;

    color: #333;

    font-family: inherit;
    font-size: 13px;

    outline: none;

    transition: var(--transition);
}

.form-group input {
    height: 46px;
}

.form-group textarea {
    min-height: 130px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa39b;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);

    background: #fff;

    box-shadow: 0 0 0 3px rgba(76, 125, 66, 0.08);
}

/* ================= Submit Button ================= */

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;

    padding: 13px 20px;

    border: none;
    border-radius: 8px;

    background: var(--green-dark);
    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: var(--transition);
}

.contact-submit:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ================= Form Message ================= */

.form-message {
    min-height: 20px;

    margin-top: 15px;

    text-align: center;

    font-size: 12px;
    line-height: 1.5;
}

.form-message.success {
    color: #3f7d45;
}

.form-message.error {
    color: #b64b4b;
}

/* ================= Tablet ================= */

@media (max-width: 900px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-box {
        padding: 35px;
    }

}

/* ================= Mobile ================= */

@media (max-width: 560px) {

    .contact-section {
        padding: 65px 0;
    }

    .contact-container {
        width: 90%;
    }

    .contact-heading {
        margin-bottom: 35px;
    }

    .contact-info,
    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-info h3 {
        font-size: 22px;
    }

    .contact-info>p {
        font-size: 13px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }

    .form-group input {
        height: 44px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #17391e;

    color: #ffffff;

    padding: 70px 0 0;
}

.footer-container {
    width: min(1200px, 92%);
    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;

    gap: 45px;

    padding-bottom: 55px;
}


/* ================= Footer Company ================= */

.footer-company h2 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 29px;
    font-weight: 600;
}

.footer-company p {
    max-width: 340px;

    color: #cdd8cf;

    font-size: 13px;

    line-height: 1.8;
}


/* ================= Footer Titles ================= */

.footer-column h3 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;
}


/* ================= Footer Lists ================= */

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cdd8cf;

    font-size: 13px;

    text-decoration: none;

    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #8bc34a;

    padding-left: 5px;
}


/* ================= Social ================= */

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 25px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 14px;

    text-decoration: none;

    transition: 0.3s;
}

.footer-social a:hover {
    background: #8bc34a;

    color: #17391e;

    transform: translateY(-3px);
}


/* ================= Footer Contact ================= */

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 15px;

    color: #cdd8cf;

    font-size: 13px;

    line-height: 1.6;
}

.footer-contact-item i {
    width: 18px;

    margin-top: 3px;

    color: #8bc34a;

    font-size: 14px;
}

.footer-contact-item a {
    color: #cdd8cf;

    text-decoration: none;

    transition: 0.3s;
}

.footer-contact-item a:hover {
    color: #8bc34a;
}


/* ================= WhatsApp ================= */

.footer-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 8px;

    padding: 10px 15px;

    border-radius: 7px;

    background: #2e7d32;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s;
}

.footer-whatsapp:hover {
    background: #8bc34a;

    color: #17391e;

    transform: translateY(-2px);
}


/* ================= Footer Bottom ================= */

.footer-bottom {
    padding: 18px 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: #aebbb1;

    font-size: 11px;
}


/* ================= Footer Tablet ================= */

@media (max-width: 950px) {

    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 35px;
    }

    .footer-contact {
        grid-column: span 3;
    }

}


/* ================= Footer Mobile ================= */

@media (max-width: 650px) {

    .site-footer {
        padding-top: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;

        padding-bottom: 40px;
    }

    .footer-company p {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column ul li a:hover {
        padding-left: 0;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-contact-item {
        justify-content: center;

        text-align: left;

        max-width: 270px;

        margin-left: auto;
        margin-right: auto;
    }

    .footer-whatsapp {
        margin-top: 5px;
    }

}

/* 
 */
 /* =========================================================
   QUALITY & CERTIFICATIONS
========================================================= */

.quality-section {
    padding: 90px 0;
    background: #ffffff;
}

.quality-container {
    width: min(1150px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.3fr 0.7fr;

    gap: 70px;
    align-items: center;
}


/* ================= Content ================= */

.quality-content {
    max-width: 650px;
}

.quality-section .section-label {
    display: inline-block;

    margin-bottom: 14px;

    /* color: #4f7942; */

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.quality-content h2 {
    margin: 0 0 18px;

    color: #17391e;

    font-size: 40px;
    font-weight: 600;

    line-height: 1.25;
}

.quality-content > p {
    margin-bottom: 28px;

    color: #68756b;

    font-size: 15px;
    line-height: 1.8;
}


/* ================= Certifications ================= */

.quality-certifications {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-bottom: 30px;
}

.quality-certification {
    display: flex;
    align-items: center;

    gap: 12px;
}

.quality-certification > i {
    color: #4f7942;

    font-size: 18px;
}

.quality-certification div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.quality-certification strong {
    color: #17391e;

    font-size: 14px;
    font-weight: 600;
}

.quality-certification span {
    color: #7a847c;

    font-size: 11px;
}


/* ================= Button ================= */

.quality-section-btn {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 12px 22px;

    background: #17391e;
    color: #ffffff;

    border-radius: 7px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 500;

    transition: 0.3s ease;
}

.quality-section-btn:hover {
    background: #4f7942;

    color: #ffffff;

    gap: 12px;
}


/* ================= Visual ================= */

.quality-visual {
    display: flex;
    justify-content: center;
}

.quality-visual-card {
    width: 100%;
    max-width: 320px;

    padding: 40px 30px;

    background: #f4f8f3;

    border: 1px solid #e2ebe2;
    border-radius: 16px;

    text-align: center;
}

.quality-visual-card > i {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    background: #17391e;
    color: #ffffff;

    border-radius: 50%;

    font-size: 25px;
}

.quality-visual-card span {
    display: block;

    margin-bottom: 8px;

    color: #4f7942;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
}

.quality-visual-card h3 {
    margin-bottom: 15px;

    color: #17391e;

    font-size: 25px;
    font-weight: 600;

    line-height: 1.3;
}

.quality-visual-card p {
    margin: 0;

    color: #68756b;

    font-size: 12px;
    line-height: 1.7;
}


/* ================= Tablet ================= */

@media (max-width: 800px) {

    .quality-section {
        padding: 70px 0;
    }

    .quality-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .quality-content {
        max-width: 100%;
        text-align: center;
    }

    .quality-certifications {
        align-items: center;
    }

    .quality-visual {
        justify-content: center;
    }

}


/* ================= Mobile ================= */

@media (max-width: 560px) {

    .quality-section {
        padding: 60px 0;
    }

    .quality-container {
        width: 90%;
    }

    .quality-content h2 {
        font-size: 29px;
    }

    .quality-content > p {
        font-size: 13px;
    }

    .quality-certification {
        text-align: left;
    }

    .quality-section-btn {
        width: 100%;
        justify-content: center;
    }

    .quality-visual-card {
        padding: 32px 22px;
    }

}
/*  */
/* =========================================================
   BUSINESS SECTIONS
========================================================= */

.business-section {
    padding: 100px 0;
}

.business-container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.business-content {
    max-width: 900px;
    margin: 0 auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.business-section .section-label,
.certifications-preview .section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--green);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   HEADINGS
========================================================= */

.business-section h2,
.certifications-preview h2 {
    margin-bottom: 20px;

    color: var(--green-dark);

    font-size: 38px;
    font-weight: 600;

    line-height: 1.3;
}

.business-section > .business-container > .business-content > p,
.certifications-preview-content > p {
    max-width: 760px;

    margin-bottom: 30px;

    color: var(--text);

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   QUALITY
========================================================= */

.quality-section {
    background: #ffffff;
}

.business-points {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin: 30px 0;
}

.business-point {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 16px;

    background: #f7faf6;

    border: 1px solid #e5ece5;
    border-radius: 8px;
}

.business-point i {
    color: var(--green);

    font-size: 16px;
}

.business-point span {
    color: #465247;

    font-size: 13px;
}


/* =========================================================
   BUTTON
========================================================= */

.section-btn {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 12px 22px;

    background: var(--green-dark);

    color: #ffffff;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition: var(--transition);
}

.section-btn:hover {
    background: var(--green);

    color: #ffffff;

    gap: 12px;
}


/* =========================================================
   PROCESSING
========================================================= */

.processing-section {
    background: #f7faf6;
}

.process-steps {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 35px;
}

.process-step {
    display: flex;

    gap: 15px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e4ebe4;
    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(23, 57, 30, 0.04);
}

.process-step > span {
    flex-shrink: 0;

    color: var(--green);

    font-size: 24px;
    font-weight: 600;
}

.process-step h3 {
    margin-bottom: 8px;

    color: var(--green-dark);

    font-size: 17px;
}

.process-step p {
    margin: 0;

    color: #69736c;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   PACKAGING
========================================================= */

.packaging-section {
    background: #ffffff;
}

.packaging-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 35px;
}

.packaging-card {
    padding: 30px 25px;

    background: #f7faf6;

    border: 1px solid #e4ebe4;

    border-radius: 10px;

    transition: var(--transition);
}

.packaging-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(23, 57, 30, 0.08);
}

.packaging-card i {
    margin-bottom: 18px;

    color: var(--green);

    font-size: 25px;
}

.packaging-card h3 {
    margin-bottom: 10px;

    color: var(--green-dark);

    font-size: 18px;
}

.packaging-card p {
    margin: 0;

    color: #69736c;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   EXPORT
========================================================= */

.export-section {
    background: #f7faf6;
}

.export-points {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin: 35px 0;
}

.export-point {
    display: flex;

    gap: 15px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e4ebe4;

    border-radius: 10px;
}

.export-point > i {
    flex-shrink: 0;

    color: var(--green);

    font-size: 22px;
}

.export-point h3 {
    margin-bottom: 8px;

    color: var(--green-dark);

    font-size: 16px;
}

.export-point p {
    margin: 0;

    color: #69736c;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   CERTIFICATIONS PREVIEW
========================================================= */

.certifications-preview {
    padding: 90px 0;

    background: #ffffff;

    border-top: 1px solid #e8eee8;
}

.certifications-preview-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.certifications-preview-content > p {
    margin-left: auto;
    margin-right: auto;
}

.certification-badges {
    display: flex;

    justify-content: center;

    gap: 20px;

    margin: 35px 0;
}

.certification-badge {
    width: 170px;

    padding: 20px;

    background: #f7faf6;

    border: 1px solid #dfe8df;

    border-radius: 10px;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 5px;
}

.certification-badge strong {
    color: var(--green-dark);

    font-size: 24px;
}

.certification-badge span {
    color: #657168;

    font-size: 12px;

    font-weight: 500;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .business-section {
        padding: 75px 0;
    }

    .business-section h2,
    .certifications-preview h2 {
        font-size: 32px;
    }

    .process-steps,
    .packaging-grid,
    .export-points {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .business-section {
        padding: 65px 0;
    }

    .business-container {
        width: 90%;
    }

    .business-section h2,
    .certifications-preview h2 {
        font-size: 27px;
    }

    .business-section > .business-container > .business-content > p,
    .certifications-preview-content > p {
        font-size: 13px;

        line-height: 1.8;
    }

    .business-points {
        grid-template-columns: 1fr;
    }

    .process-step,
    .export-point {
        padding: 20px;
    }

    .packaging-card {
        padding: 25px 20px;
    }

    .certifications-preview {
        padding: 65px 0;
    }

    .certification-badges {
        gap: 10px;
    }

    .certification-badge {
        width: 140px;

        padding: 17px;
    }

    .section-btn {
        font-size: 12px;

        padding: 11px 18px;
    }

}
/* =========================================================
   MOBILE NAVIGATION
========================================================= */

/* .menu-btn {
    display: none;
} */

/* =========================================================
   PRODUCTS PREVIEW CTA
========================================================= */

.products-preview-action {
    grid-column: span 2;

    height: 100%;
    box-sizing: border-box;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    gap: 20px;

    background: #eef4ee;

    border: 1px solid #dfe9df;
    border-radius: 12px;

    transition: var(--transition);
}


/* =========================================================
   CTA TEXT
========================================================= */

.products-preview-text {
    max-width: 100%;
}

.products-preview-text span {
    display: block;

    margin-bottom: 8px;

    color: var(--green);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.2px;
}

.products-preview-text p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.products-preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 12px 20px;

    background: var(--green-dark);

    border: 1px solid var(--green-dark);
    border-radius: 6px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: var(--transition);
}

.products-preview-btn:hover {
    background: var(--green);

    border-color: var(--green);

    color: #ffffff;

    gap: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .products-preview-action {
        grid-column: 1 / -1;

        min-height: 220px;

        flex-direction: row;

        align-items: center;
        justify-content: space-between;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .products-preview-action {
        grid-column: 1 / -1;

        min-height: auto;

        padding: 24px 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .products-preview-text {
        max-width: 100%;
    }


    .products-preview-text p {
        font-size: 12px;
    }


    .products-preview-btn {
        width: 100%;
    }

}