﻿
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f7f9f5;
    color: #263238;
}

/* =========================
           TOP BAR
        ========================== */

.top-bar {
    background: #198754;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

    .top-bar a {
        color: #fff;
        text-decoration: none;
    }

/* =========================
           NAVBAR
        ========================== */

.navbar {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,.07);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 23px;
    font-weight: 800;
    color: #198754 !important;
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: #198754;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-left: 12px;
}

    .navbar-nav .nav-link:hover {
        color: #198754;
    }

.cart-btn {
    background: #198754;
    color: #fff !important;
    border-radius: 30px;
    padding: 9px 18px !important;
}

/* =========================
           PAGE BANNER
        ========================== */

.page-banner {
    background: linear-gradient( rgba(20, 100, 62, .43), rgba(25, 135, 84, .61) ), url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    padding: 75px 0;
    color: #fff;
    text-align: center;
}

    .page-banner .small-title {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
        color: #d9f8e8;
        font-weight: 600;
    }

    .page-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .page-banner p {
        margin: 0;
        font-size: 16px;
        color: #e9fff3;
    }

/* =========================
           CONTACT SECTION
        ========================== */

.contact-section {
    padding: 70px 0;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: #18251f;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 35px;
}

/* =========================
           CONTACT CARDS
        ========================== */

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    border: 1px solid #e8eee9;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #e7f6ed;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 5px;
}

.contact-card a {
    color: #198754;
    text-decoration: none;
    font-weight: 600;
}

    .contact-card a:hover {
        text-decoration: underline;
    }

/* =========================
           FORM
        ========================== */

.contact-form {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    border: 1px solid #e8eee9;
}

    .contact-form h3 {
        font-size: 25px;
        font-weight: 800;
        margin-bottom: 25px;
    }

.form-label {
    font-weight: 600;
    font-size: 14px;
}

.form-control,
.form-select {
    border-radius: 9px;
    padding: 12px 14px;
    border: 1px solid #dce4df;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #198754;
        box-shadow: 0 0 0 .2rem rgba(25,135,84,.12);
    }

.submit-btn {
    background: #198754;
    color: #fff;
    border: 0;
    border-radius: 9px;
    padding: 12px 28px;
    font-weight: 700;
}

    .submit-btn:hover {
        background: #146c43;
    }

/* =========================
           MAP
        ========================== */

.map-box {
    overflow: hidden;
    border-radius: 16px;
    min-height: 420px;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        min-height: 420px;
        border: 0;
    }

/* =========================
           FOOTER
        ========================== */

footer {
    background: #13231b;
    color: #d9e3dd;
    padding: 55px 0 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

footer h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

footer p {
    color: #b9c8bf;
    font-size: 14px;
    line-height: 1.8;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    footer ul li {
        margin-bottom: 9px;
    }

        footer ul li a {
            color: #b9c8bf;
            text-decoration: none;
            font-size: 14px;
        }

            footer ul li a:hover {
                color: #fff;
            }

.footer-contact a {
    color: #b9c8bf;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 35px;
    padding-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #9eafa5;
}

/* =========================
           MOBILE
        ========================== */

@media (max-width: 767px) {

    .top-bar {
        text-align: center;
        font-size: 12px;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar-brand {
        font-size: 19px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .navbar-nav {
        margin-top: 12px;
    }

        .navbar-nav .nav-link {
            margin-left: 0;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

    .cart-btn {
        display: inline-block;
        margin-top: 10px;
        text-align: center;
    }

    .page-banner {
        padding: 55px 15px;
    }

        .page-banner h1 {
            font-size: 30px;
        }

        .page-banner p {
            font-size: 14px;
        }

    .contact-section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 25px;
    }

    .contact-card {
        padding: 23px;
    }

    .contact-form {
        padding: 23px;
    }

    .map-box,
    .map-box iframe {
        min-height: 300px;
    }

    footer {
        padding-top: 40px;
    }

        footer .footer-column {
            margin-bottom: 30px;
        }
}
/* ==========================
           CONTENT
        ========================== */

.agency-section {
    padding: 70px 0;
}

.intro-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
    border: 1px solid #e4ebe7;
    margin-bottom: 40px;
}

    .intro-box h2 {
        font-size: 30px;
        font-weight: 800;
        color: #173c2a;
        margin-bottom: 18px;
    }

    .intro-box p {
        font-size: 15px;
        line-height: 1.9;
        color: #626d67;
        text-align: justify;
    }

    .intro-box strong {
        color: #198754;
    }

/* ==========================
           ORGANIZATION CARD
        ========================== */

.agency-card {
    background: #fff;
    border-radius: 16px;
    height: 100%;
    padding: 28px;
    border: 1px solid #e3ebe6;
    box-shadow: 0 7px 25px rgba(0,0,0,.05);
    transition: .3s ease;
}

    .agency-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 35px rgba(0,0,0,.09);
    }

.agency-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: #e8f6ee;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 20px;
}

.agency-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #19382a;
    margin-bottom: 12px;
}

.agency-card p {
    font-size: 14px;
    color: #68746d;
    line-height: 1.75;
    margin-bottom: 0;
}

.state-list {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.state-badge {
    background: #f0f7f3;
    color: #17643e;
    border: 1px solid #d7e9de;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ==========================
           MINISTRY BOX
        ========================== */

.ministry-box {
    margin-top: 45px;
    background: linear-gradient(135deg, #155d3a, #198754);
    color: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(25,135,84,.18);
}

    .ministry-box i {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .ministry-box h3 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .ministry-box p {
        margin: 0;
        color: #e5f8ed;
        font-size: 14px;
    }
/* =========================
           ABOUT SECTION
        ========================== */

.about-section {
    padding: 75px 0;
}


.about-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,.10);
}


.about-content {
    padding-left: 25px;
}

.section-label {
    color: #198754;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #173c2a;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #626d67;
    text-align: justify;
}


/* =========================
           HIGHLIGHT BOX
        ========================== */

.highlight-box {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding: 18px;
    background: #eef8f2;
    border-radius: 12px;
    border-left: 4px solid #198754;
}

.highlight-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: #198754;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.highlight-box h5 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 700;
}

.highlight-box p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}


/* =========================
           MISSION SECTION
        ========================== */

.mission-section {
    background: #fff;
    padding: 70px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

    .section-heading h2 {
        font-size: 32px;
        font-weight: 800;
        color: #173c2a;
        margin-bottom: 10px;
    }

    .section-heading p {
        color: #6c757d;
        font-size: 15px;
    }


/* =========================
           CARDS
        ========================== */

.info-card {
    height: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e1ebe5;
    box-shadow: 0 7px 25px rgba(0,0,0,.05);
    transition: .3s ease;
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 35px rgba(0,0,0,.09);
    }

.info-icon {
    width: 58px;
    height: 58px;
    background: #e7f6ed;
    color: #198754;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: #19382a;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #68746d;
    margin: 0;
}


/* =========================
           WHY GROCERY
        ========================== */

.why-section {
    padding: 70px 0;
    background: #f2f7f4;
}

.why-card {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    height: 100%;
    border: 1px solid #e2ebe6;
}

    .why-card i {
        font-size: 28px;
        color: #198754;
        margin-bottom: 15px;
        display: block;
    }

    .why-card h5 {
        font-weight: 700;
        font-size: 17px;
        margin-bottom: 10px;
    }

    .why-card p {
        color: #6c757d;
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }


/* =========================
           CTA
        ========================== */

.cta-section {
    padding: 65px 0;
}

.cta-box {
    background: linear-gradient( 135deg, #155d3a, #198754 );
    color: #fff;
    border-radius: 22px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(25,135,84,.18);
}

    .cta-box h2 {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .cta-box p {
        color: #e2f7eb;
        margin-bottom: 25px;
    }

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #198754;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 30px;
    transition: .3s;
}

    .cta-btn:hover {
        background: #e8f6ee;
        color: #155d3a;
    }
/* =========================
           HERO
        ========================== */

.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(8, 55, 34, .94) 0%, rgba(12, 83, 51, .88) 48%, rgba(12, 83, 51, .35) 100% ), url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 720px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

    .hero h1 span {
        color: #8ff0b9;
    }

.hero p {
    font-size: 17px;
    line-height: 1.8;
    color: #e4f6eb;
    max-width: 650px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary-green {
    background: #fff;
    color: #198754;
    border: none;
    padding: 13px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

    .btn-primary-green:hover {
        background: #e8f6ee;
        color: #155d3a;
    }

.btn-outline-light-custom {
    color: #fff;
    border: 1px solid rgba(255,255,255,.65);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

    .btn-outline-light-custom:hover {
        background: #fff;
        color: #198754;
    }


/* =========================
           STATS
        ========================== */

.stats-section {
    margin-top: -55px;
    position: relative;
    z-index: 2;
}

.stats-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.09);
    padding: 28px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid #e7ece9;
}

    .stat-item:last-child {
        border-right: none;
    }

    .stat-item h3 {
        color: #198754;
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .stat-item p {
        margin: 0;
        color: #68746d;
        font-size: 13px;
    }


/* =========================
           COMMON SECTION
        ========================== */

.section {
    padding: 80px 0;
}

.section-label {
    color: #198754;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    color: #173c2a;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    color: #68746d;
    line-height: 1.8;
    max-width: 720px;
}


/* =========================
           BUSINESS START
        ========================== */

.business-section {
    background: #fff;
}

.business-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,.09);
}

.business-content {
    padding-left: 25px;
}

    .business-content p {
        color: #626d67;
        font-size: 15px;
        line-height: 1.9;
        text-align: justify;
    }

.space-card {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    background: #eef8f2;
    padding: 20px;
    border-radius: 14px;
}

.space-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #198754;
    color: #fff;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.space-card h5 {
    margin: 0 0 5px;
    font-weight: 800;
}

.space-card p {
    margin: 0;
    font-size: 13px;
    text-align: left;
}


/* =========================
           STEPS
        ========================== */

.steps-section {
    background: #f2f7f4;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    border: 1px solid #e1ebe5;
    box-shadow: 0 7px 25px rgba(0,0,0,.04);
    transition: .3s;
}

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 35px rgba(0,0,0,.08);
    }

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e5f5eb;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-card h4 {
    color: #19382a;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.step-card p {
    color: #68746d;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}


/* =========================
           PROFITABILITY
        ========================== */

.profit-section {
    background: #fff;
}

.profit-box {
    background: linear-gradient( 135deg, #155d3a, #198754 );
    border-radius: 22px;
    padding: 45px;
    color: #fff;
    box-shadow: 0 12px 35px rgba(25,135,84,.17);
}

    .profit-box h2 {
        font-size: 32px;
        font-weight: 800;
    }

    .profit-box p {
        color: #e3f7eb;
        line-height: 1.8;
    }

.margin-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    padding: 20px;
    height: 100%;
}

    .margin-card h3 {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .margin-card p {
        margin: 0;
        font-size: 13px;
    }


/* =========================
           PROFIT FACTORS
        ========================== */

.factor-card {
    background: #fff;
    border: 1px solid #e1ebe5;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
}

.factor-icon {
    color: #198754;
    font-size: 27px;
    margin-bottom: 15px;
}

.factor-card h5 {
    font-weight: 800;
    font-size: 17px;
}

.factor-card p {
    color: #68746d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =========================
           CTA
        ========================== */

.cta-section {
    padding: 70px 0;
}

.cta-box {
    background: #e8f6ee;
    border-radius: 22px;
    padding: 50px 35px;
    text-align: center;
}

    .cta-box h2 {
        color: #173c2a;
        font-weight: 800;
        font-size: 30px;
    }

    .cta-box p {
        color: #68746d;
        margin-bottom: 25px;
    }

.green-btn {
    display: inline-block;
    background: #198754;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
}

    .green-btn:hover {
        background: #146c43;
        color: #fff;
    }
/* =========================
           MOBILE
        ========================== */

@media (max-width: 767px) {

    .top-bar {
        text-align: center;
        font-size: 11px;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar-brand {
        font-size: 19px;
    }

    .logo-icon {
        width: 37px;
        height: 37px;
    }

    .navbar-nav {
        margin-top: 12px;
    }

        .navbar-nav .nav-link {
            margin-left: 0;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

    .cart-btn {
        display: inline-block;
        margin-top: 10px;
        text-align: center;
    }

    .hero {
        min-height: 570px;
        padding: 70px 0;
    }

        .hero h1 {
            font-size: 34px;
        }

        .hero p {
            font-size: 14px;
        }

    .stats-section {
        margin-top: -30px;
    }

    .stats-box {
        padding: 18px 10px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e7ece9;
        padding: 13px 0;
    }

        .stat-item:last-child {
            border-bottom: none;
        }

        .stat-item h3 {
            font-size: 25px;
        }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 27px;
    }

    .business-image {
        height: 280px;
        margin-bottom: 30px;
    }

    .business-content {
        padding-left: 0;
    }

        .business-content p {
            text-align: left;
            font-size: 14px;
        }

    .profit-box {
        padding: 30px 20px;
    }

        .profit-box h2 {
            font-size: 26px;
        }

    .cta-box {
        padding: 35px 20px;
    }

        .cta-box h2 {
            font-size: 25px;
        }

    footer {
        padding-top: 40px;
    }

    .footer-column {
        margin-bottom: 25px;
    }
}
