/* =============================================
   1Nature Corp — Main Stylesheet
   ============================================= */

:root {
    --green-dark: #1a5c2a;
    --green-mid: #2d7a3e;
    --green-light: #4caf50;
    --green-pale: #e8f5e9;
    --yellow: #cfb854;
    --yellow-dark: #e09010;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-mid: #e0e0e0;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --font-main: "Lora", serif;
    --font-body: "Work Sans", sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --radius: 10px;
    --radius-lg: 16px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.lora-font {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
}

.work-sans-font {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: #1a5c2a;
    padding: 6px 0;
    font-size: 12.5px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left span {
    color: rgba(255, 255, 255, .85);
    font-size: 12.5px;
}

.top-bar-left a:hover {
    color: #fff;
}

.top-bar-left i {
    margin-right: 5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-right span {
    color: rgba(255, 255, 255, .85);
    font-size: 12.5px;
}

.top-bar-right a {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    transition: background .2s;
}

.top-bar-right a:hover {
    background: rgba(255, 255, 255, .3);
}

/* =============================================
   NAVIGATION
   ============================================= */
.main-navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding .25s, box-shadow .25s;
}

.main-navbar.scrolled {
    padding: 6px 0;
    box-shadow: var(--shadow-md);
}

.nav-logo {
    height: 45px;
    width: auto;
}

.main-navbar .nav-link {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 14.5px;
    color: #333;
    padding: 8px 16px !important;
    transition: color .2s;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    background: var(--green-dark);
    color: #fff;
    border-radius: 10px;
}

.main-navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: 10px 0;
}

.main-navbar .dropdown-item {
    font-size: 13.5px;
    padding: 8px 20px;
    color: #333;
    transition: all .2s;
}

.main-navbar .dropdown-item:hover {
    background: var(--green-pale);
    color: var(--green-dark);
}

.btn-login {
    background: var(--green-dark);
    color: #fff !important;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 24px;
    border-radius: 6px;
    transition: background .2s;
}

.btn-login:hover {
    background: #0e3d1a;
    color: #fff !important;
}

/* =============================================
   HERO SECTION  — matches screenshot exactly
   ============================================= */

/* 1. Nature background: light misty green mountains / rice terraces */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 560px;

    /* Layered gradient to simulate misty green nature scene */
    background:
        /* Foreground leaf hints on left edge */
        radial-gradient(ellipse 22% 40% at -2% 55%, rgba(30, 90, 30, .50) 0%, transparent 70%),
        /* Near-ground rich green vegetation */
        radial-gradient(ellipse 130% 35% at 50% 100%, #1f6b2e 0%, #2a8038 20%, transparent 55%),
        /* Mid-ground rolling hills */
        radial-gradient(ellipse 90% 55% at 20% 80%, #3d9e50 0%, transparent 55%),
        radial-gradient(ellipse 80% 50% at 70% 75%, #389147 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 50% 68%, #4aaa5e 0%, transparent 50%),
        /* Far misty mountains — lighter, hazy */
        radial-gradient(ellipse 100% 55% at 35% 62%, #6dc47e 0%, transparent 60%),
        radial-gradient(ellipse 90% 50% at 70% 58%, #60bb72 0%, transparent 58%),
        radial-gradient(ellipse 70% 45% at 15% 55%, #72ca85 0%, transparent 55%),
        /* Distant mountains blending into sky */
        radial-gradient(ellipse 110% 60% at 50% 52%, #8fd4a0 0%, transparent 65%),
        /* Sky — soft light blue-green, misty */
        linear-gradient(to bottom,
            #d4ece2 0%,
            #c5e8d8 15%,
            #b2e0c8 30%,
            #98d4b5 45%,
            #78c59a 60%,
            #55b07c 75%,
            #38914f 90%,
            #237038 100%);
}

/* Misty overlay — brightens top, darkens bottom for depth */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* Top mist */
        linear-gradient(to bottom, rgba(255, 255, 255, .38) 0%, transparent 45%),
        /* Slight left-side darkening so text is readable */
        linear-gradient(to right, rgba(0, 0, 0, .08) 0%, transparent 50%),
        /* Bottom ground shadow */
        linear-gradient(to top, rgba(10, 40, 15, .35) 0%, transparent 35%);
    pointer-events: none;
}

/* Subtle wood/earth strip at very bottom (like original) */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 2;
    background: linear-gradient(to top,
            rgba(100, 60, 20, .18) 0%,
            rgba(80, 50, 15, .08) 40%,
            transparent 100%);
    pointer-events: none;
}

.hero-section {
    background: url("/images/hero-bg.webp") no-repeat;
    background-size: 100%;
    height: 800px;
    background-position: inherit;
    position: relative;
    overflow: visible;
}

/* Container sits above all overlays */
.hero-container {
    position: relative;
    z-index: 3;
}

.hero-row {
    min-height: 540px;
    padding: 60px 0 0;
    align-items: flex-end !important;
}

/* ---- Left: Text ---- */
.hero-content {
    padding-bottom: 50px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.2em;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, .6);
}

.hero-title {
    font-family: var(--font-main);
    font-size: clamp(28px, 3.8vw, 4em);
    font-weight: 800;
    color: #111;
    line-height: 1.18;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, .5);
}

.hero-title-accent {
    color: var(--green-dark);
}

.hero-desc {
    font-size: 1.2em;
    color: #222;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 450px;
    text-shadow: 0 1px 4px rgba(255, 255, 255, .4);
}

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

.btn-hero-primary {
    background: var(--green-dark);
    color: #fff !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    padding: 15px 30px;
    border-radius: 6px;
    border: 2px solid var(--green-dark);
    letter-spacing: .5px;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
}

.btn-hero-primary:hover {
    background: #0e3d1a;
    border-color: #0e3d1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, .85);
    color: #222 !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    padding: 15px 30px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, .9);
    letter-spacing: .5px;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
}

.btn-hero-outline:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ---- Right: People + Products ---- */
.hero-visuals-col {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.hero-visuals-wrap {
    position: relative;
    width: 100%;
    height: 530px;
    /* fixed height to contain both images */
}

/* Team photo — transparent PNG, positioned right/center, full height */
.hero-team-img {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 92%;
    width: auto;
    max-width: 60%;
    object-fit: contain;
    object-position: bottom center;
    z-index: 5;
    filter: drop-shadow(-6px 0 18px rgba(0, 0, 0, .18));
}

/* Products — transparent PNG, spans full width at bottom, in front of people */
.hero-products-img {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 90%;
    max-width: 640px;
    object-fit: contain;
    object-position: bottom left;
    z-index: 6;
    /* in front of people */
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .25));
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
    background: #fff;
    box-shadow: var(--shadow-md);
    padding: 30px 0;
    z-index: 10;
    width: 85%;
    border-radius: 25px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -7%;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 8px;
    border-right: 1px solid var(--gray-mid);
}

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

.stat-icon {
    font-size: 2.5em;
    color: var(--green-dark);
}

.stat-content {
    text-align: left;
}

.stat-content strong {
    display: block;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.2em;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-content span {
    font-size: 0.9em;
    color: var(--text-muted);
    font-weight: 600;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
    background: var(--gray-light);
    padding-top: 7em;
}

.why-section .why-item i.fas {
    font-size: 2.5em;
}

.section-title {
    font-family: var(--font-main);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.leaf-icon {
    color: var(--green-mid);
    font-size: 18px;
}

.why-item {
    padding: 20px 14px;
    border-radius: var(--radius);
    transition: all .25s;
}

.why-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.why-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--green-dark);
    font-size: 22px;
    transition: all .25s;
}

.why-item:hover .why-icon-wrap {
    background: var(--green-dark);
    color: #fff;
    border-color: var(--green-dark);
}

.why-item h6 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* =============================================
   PRODUCTS + BUSINESS OPPORTUNITY
   ============================================= */
.products-biz-section {
    background: #f9f9f9;
}

.products-card,
.biz-card {
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.biz-card {
    background: #fff;
    border-radius: var(--radius-lg);
}

.products-biz-section .col-lg-6:nth-child(2) .biz-card {
    background: url("/images/girl.webp") no-repeat;
    background-size: contain;
    background-position: right;
}

.products-card:nth-child(1) {
    height: 85%;
}

.products-card {
    background: url("/images/agri-products-3.webp") no-repeat;
    background-size: contain;
    background-position: bottom;
}

.card-section-title {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-section-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
    width: 50%;
}

.btn-green-outline {
    background: transparent;
    border: 2px solid var(--green-dark);
    color: var(--green-dark) !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    transition: all .25s;
}

.btn-green-outline:hover {
    background: var(--green-dark);
    color: #fff !important;
}

.products-card .btn-green-outline {
    background: var(--green-dark);
    color: #fff !important;
    border-radius: 50px;
}

.products-card .btn-green-outline:hover {
    background: #fff;
    color: var(--green-dark) !important;
    border: 1px solid var(--green-dark);
}

/* Products image on dark card background */
.products-img-bg-wrap {
    background: #111;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 10px 0 0;
}

.products-real-img {
    width: 100%;
    max-height: 230px;
    object-fit: contain;
    display: block;
}

.product-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    box-shadow: 5px 1px 10px rgb(0 0 0 / 10%);
    padding: 12px 10px;
    border-radius: 10px;
}

.product-categories span {
    font-size: 0.8em;
    font-weight: 600;
    color: var(--green-dark);
    padding: 4px 12px;
    border-right: 1px solid #b7e4b7;
}

/* Business Opportunity card */
.biz-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.biz-title {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}

.biz-title.accent {
    color: var(--green-dark);
    margin-bottom: 12px;
}

.biz-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.biz-body-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.biz-body-left {
    flex: 1;
}

.biz-body-right {
    flex-shrink: 0;
    width: 155px;
}

.biz-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.biz-checklist li {
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.biz-checklist li i {
    color: var(--green-mid);
    font-size: 16px;
}

.biz-person-bg-wrap {
    background: #0d4019;
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.biz-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* =============================================
   HOW IT WORKS + JOIN FORM
   ============================================= */
.how-join-section {
    background: #fff;
}

.section-sub-title {
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.how-steps-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: nowrap;
}

.how-step {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.how-step-icon-col {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.step-badge {
    width: 28px;
    height: 28px;
    background: var(--green-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f4f4f4;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.how-step-text {
    flex: 1;
    min-width: 0;
}

.how-step-text h6 {
    font-family: var(--font-main);
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.how-step-text .step-title-green {
    color: var(--green-mid);
}

.how-step-text p {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.how-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 18px;
    flex-shrink: 0;
    padding: 0 4px;
}

/* Join form */
.join-form-card {
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.join-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 6px;
}

.join-subtitle {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 22px;
}

.join-input {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 12px 14px;
    font-size: 14px;
    background: rgba(255, 255, 255, .95);
    color: #333;
    width: 100%;
    transition: border .2s;
}

.join-input:focus {
    border-color: var(--yellow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, .2);
}

.btn-register {
    background: var(--yellow);
    color: #fff !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    padding: 13px;
    border-radius: 6px;
    border: none;
    letter-spacing: .5px;
    transition: all .25s;
    width: 100%;
    display: block;
}

.btn-register:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.free-tag {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .8);
    margin: 0;
}

/* =============================================
   TESTIMONIALS — Real Results. Real People.
   ============================================= */
.testimonials-section {
    background: #f2f6f2;
}

/* 5-column equal-width row */
.rr-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: stretch;
}

.rr-col {
    flex: 1 1 0;
    min-width: 0;
    padding: 0;
}

/* Person testimonial card */
.testi-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e4ede4;
}

/* Income badge — stacked layout */
.income-badge {
    background: var(--green-dark);
    color: #fff;
    font-family: var(--font-main);
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.income-amount {
    font-weight: 800;
    font-size: 17px;
    line-height: 1.2;
}

.income-label {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
}

.testi-photo-wrap {
    position: relative;
    overflow: hidden;
    background: #1a5c2a;
    flex: 1;
}

.testi-photo {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .35s ease;
}

.testi-card:hover .testi-photo {
    transform: scale(1.05);
}

.testi-info {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #fff;
}

.testi-info strong {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.testi-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Quote card */
.testi-quote-card {
    background: var(--green-dark);
    color: #fff;
    border-radius: var(--radius);
    padding: 28px 20px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.rr-quote-marks {
    font-size: 52px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.55);
    font-family: Georgia, serif;
    margin-bottom: 8px;
    letter-spacing: -8px;
}

.testi-quote-card p {
    font-size: 14.5px;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 12px;
    color: #fff;
}

.testi-quote-card em {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    font-style: normal;
}

/* Cert card */
.cert-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 16px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4ede4;
}

.cert-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    text-align: center;
}

.cert-logos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
    width: 100%;
    max-width: 160px;
}

.cert-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    height: 48px;
}

.cert-logo-item.cert-text {
    background: var(--green-pale);
    color: var(--green-dark);
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    border: 2px solid #b7d8b7;
}

.cert-logo-item.cert-circle {
    background: #e8f5e9;
    color: var(--green-dark);
    font-size: 20px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    border: 2px solid #b7d8b7;
    margin: 0 auto;
}

.cert-logo-item.cert-yellow {
    background: #fff8e1;
    color: #e09010;
    border-color: #ffe082;
}

.cert-logo-item.cert-blue {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #90caf9;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: lowercase;
    font-style: italic;
}

.cert-sub {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* Responsive: allow wrapping on small screens */
@media (max-width: 900px) {
    .rr-row {
        flex-wrap: wrap;
    }

    .rr-col {
        flex: 0 0 calc(50% - 6px);
    }
}

@media (max-width: 500px) {
    .rr-col {
        flex: 0 0 100%;
    }
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, #0e3d1a 0%, #1a6b2f 100%);
    padding: 30px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 26px;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
}

.cta-text h4 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin: 0 0 4px;
}

.cta-text p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .8);
    margin: 0;
}

.btn-cta-yellow {
    background: var(--yellow);
    color: #fff !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 6px;
    border: none;
    white-space: nowrap;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
}

.btn-cta-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #111;
    padding: 50px 0 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    opacity: .85;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    transition: all .2s;
}

.footer-socials a:hover {
    background: var(--green-mid);
    color: #fff;
}

.footer-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green-dark);
    display: inline-block;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--green-light);
}

.contact-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-list li i {
    color: var(--green-light);
    margin-top: 2px;
    flex-shrink: 0;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin: 0;
}

/* =============================================
   INNER PAGES
   ============================================= */
.page-hero-section {
    background: linear-gradient(135deg, #0e3d1a 0%, #1a6b2f 50%, #2d8a3e 100%);
    padding: 60px 0 50px;
    text-align: center;
}

.page-hero-title {
    font-family: var(--font-main);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.page-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .82);
    margin: 0;
}

.about-stat {
    background: var(--green-pale);
    border-radius: var(--radius);
    padding: 16px 18px;
    border-left: 4px solid var(--green-dark);
}

.about-stat strong {
    display: block;
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
}

.about-stat span {
    font-size: 13px;
    color: var(--text-muted);
}

.mv-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.mv-card h5 {
    font-family: var(--font-main);
    font-weight: 700;
    margin-bottom: 10px;
}

.mv-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Product page tabs */
.prod-tabs .nav-link {
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 30px;
    padding: 8px 20px;
    border: 2px solid var(--gray-mid);
    margin: 4px;
    transition: all .2s;
}

.prod-tabs .nav-link.active,
.prod-tabs .nav-link:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--green-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.product-body {
    padding: 14px;
}

.product-category {
    font-size: 11px;
    color: var(--green-mid);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 4px;
}

.product-name {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
}

.product-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    margin: 0 0 12px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--green-dark);
}

.btn-add-cart {
    width: 34px;
    height: 34px;
    background: var(--green-dark);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background .2s;
    padding: 0;
}

.btn-add-cart:hover {
    background: #0e3d1a;
    color: #fff;
}

.income-ex-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
}

.income-ex-card:hover,
.income-ex-card.featured {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.income-ex-card.featured {
    border: 2px solid var(--green-dark);
}

.income-ex-amount {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 800;
    color: var(--green-dark);
}

.income-ex-label {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: var(--green-pale);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.contact-info-item a {
    color: var(--text-muted);
    transition: color .2s;
}

.contact-info-item a:hover {
    color: var(--green-dark);
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h4 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-dark);
}

.contact-form-card .form-control {
    border-radius: 6px;
    border: 1.5px solid var(--gray-mid);
    padding: 11px 14px;
    font-size: 14px;
    transition: border-color .2s;
}

.contact-form-card .form-control:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, .1);
}

.contact-form-card .form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* =============================================
   ALERTS + ANIMATIONS
   ============================================= */
.alert-success-custom {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 14.5px;
}

.scroll-hidden {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.scroll-hidden.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-item:nth-child(2) {
    transition-delay: .08s;
}

.why-item:nth-child(3) {
    transition-delay: .16s;
}

.why-item:nth-child(4) {
    transition-delay: .24s;
}

.why-item:nth-child(5) {
    transition-delay: .32s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp .7s ease both;
}

.hero-visuals-col {
    animation: fadeUp .7s ease .15s both;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .hero-visuals-wrap {
        height: 400px;
    }

    .hero-team-img {
        height: 88%;
        right: 0;
    }

    .hero-row {
        width: 60%;
    }

    .hero-products-img {
        width: 85%;
        left: -2%;
    }

    .hero-content {
        padding-bottom: 30px;
    }

    .hero-section {
        background-size: cover;
        background-position: center;
    }

    .hero-title,
    .ab-hero-title {
        font-size: clamp(28px, 5vw, 4em);
    }

    .stats-bar {
        width: 95%;
    }

    .products-card:nth-child(1) {
        height: 400px;
    }

    .card-section-desc {
        font-size: 18px;
        width: 50%;
    }

    .biz-body-row {
        flex-direction: unset;
    }

    .biz-body-right {
        width: 100%;
    }

    .biz-desc {
        font-size: 18px;
        width: 65%;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        text-align: center;
    }

    .cta-icon-wrap {
        margin: 0 auto;
    }

    .ab-hero {
        background-size: cover;
        background-position: left;
    }

    .ab-badge i {
        font-size: 1.2em;
    }

    .ab-hero-badges {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .hero-row {
        padding: 36px 0 0;
        min-height: 380px;
        width: unset;
    }

    .nav-logo {
        height: 35px;
    }

    .hero-section {
        background-size: cover;
        background-position: left;
    }

    .hero-visuals-wrap {
        height: 320px;
    }

    .hero-team-img {
        height: 85%;
        right: 0;
        max-width: 55%;
    }

    .stat-icon {
        font-size: 1.5em;
    }

    .stat-content strong {
        font-size: 1em;
    }

    .stat-content span {
        font-size: 0.75em;
    }

    .products-card:nth-child(1) {
        height: 350px;
    }

    .card-section-desc {
        width: 80%;
    }

    .biz-body-row {
        flex-direction: unset;
    }

    .products-biz-section .col-lg-6:nth-child(2) .biz-card {
        background-size: 38%;
        background-position: 100% 100%;
    }

    .hero-products-img {
        width: 88%;
        left: -5%;
    }

    .hero-title {
        font-size: 26px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-mid);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .how-steps-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .how-step-arrow {
        display: none;
    }

    .how-step {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 35px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-visuals-wrap {
        height: 260px;
    }

    .hero-team-img {
        max-width: 52%;
    }

    .stats-bar {
        width: 95%;
    }

    .testi-photo {
        height: 150px;
    }

    .how-step {
        flex: 0 0 100%;
    }
}

/* =============================================
   TRANSPARENT PNG OVERRIDES
   (team-photo-nobg.png + all-products-nobg.png)
   ============================================= */

/* Products card — transparent image on green gradient bg */
.products-img-bg-wrap {
    background: linear-gradient(135deg, #0d4019 0%, #1a6b2f 60%, #2d8a3e 100%);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 210px;
    padding: 14px 8px 0;
}

.products-real-img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .3));
}

/* Business card person — transparent image, green background */
.biz-person-bg-wrap {
    background: linear-gradient(170deg, #0d4019 0%, #1a6b2f 100%);
    border-radius: var(--radius);
    overflow: hidden;
    height: 230px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.biz-team-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .2));
}

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

/* ---- Shared helpers ---- */
.ab-eyebrow {
    font-family: var(--font-main);
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 8px;
}

.ab-eyebrow-light {
    font-family: var(--font-main);
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 10px;
}

.ab-green {
    color: var(--green-dark);
}

.ab-yellow {
    color: var(--yellow);
}

/* ---- Hero ---- */
.ab-hero {
    background: url('/images/about-bg.webp') no-repeat;
    padding: 50px 0 0;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.ab-hero-container {
    display: flex;
    align-items: flex-end;
    gap: 0;
    position: relative;
}

.ab-hero-left {
    flex: 0 0 48%;
    max-width: 48%;
    padding-bottom: 40px;
    z-index: 2;
}

.ab-hero-right {
    flex: 0 0 52%;
    max-width: 52%;
    position: relative;
    align-self: flex-end;
    min-height: 380px;
}

.ab-hero-title {
    font-family: var(--font-main);
    font-size: clamp(28px, 3.8vw, 4em);
    font-weight: 800;
    line-height: 1.15;
    color: #111;
    margin-bottom: 14px;
}

.ab-hero-desc {
    font-size: 1.2em;
    color: #3d3d3d;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 450px;
    font-weight: 600;
}

.ab-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.ab-btn-primary {
    background: var(--green-dark);
    color: #fff !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--green-dark);
    transition: all .25s;
}

.ab-btn-primary:hover {
    background: #0e3d1a;
    border-color: #0e3d1a;
}

.ab-btn-outline {
    background: #fff;
    color: var(--green-dark) !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--green-dark);
    transition: all .25s;
}

.ab-btn-outline:hover {
    background: var(--green-dark);
    color: #fff !important;
}

.ab-hero-badges {
    display: flex;
    gap: 1.5em;
    flex-wrap: wrap;
    background-color: #fff1c7;
    padding: 30px;
    width: fit-content;
    border-radius: 25px;
}

.ab-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ab-badge i {
    color: var(--green-mid);
    font-size: 2em;
    flex-shrink: 0;
}

.ab-badge strong {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.ab-badge span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

/* Team + products positioned images */
.ab-hero-team-img {
    position: absolute;
    bottom: 0;
    right: 10%;
    height: 360px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 2;
    filter: drop-shadow(-4px 0 14px rgba(0, 0, 0, .15));
}

.ab-hero-products-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    object-fit: contain;
    object-position: bottom left;
    z-index: 3;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .2));
}

/* ---- Our Story ---- */
.ab-story {
    background: #fff;
}

.ab-story-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

.ab-story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-lg);
}

.ab-story-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, .95);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.ab-story-badge i {
    font-size: 22px;
    color: var(--green-mid);
}

.ab-story-badge strong {
    display: block;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.ab-story-badge span {
    font-size: 12px;
    color: var(--text-muted);
}

.ab-story-person {
    position: absolute;
    bottom: 0;
    right: -12px;
    width: 160px;
}

.ab-story-person-img {
    width: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(-4px 0 10px rgba(0, 0, 0, .2));
}

.ab-story-title {
    font-family: var(--font-main);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 18px;
}

.ab-story-text {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ---- Mission Banner ---- */
.ab-mission {
    background: #f2f6f2;
    padding: 40px 0;
}

/* Rounded card wrapping the whole banner */
.ab-mission-card {
    background: linear-gradient(135deg, #0e3d1a 0%, #1a5c2a 55%, #2d7a3e 100%);
    border-radius: 16px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.ab-mission-left {
    flex: 0 0 350px;
    min-width: 220px;
    padding-right: 36px;
}

.ab-mission-title {
    font-family: var(--font-main);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

/* Thin vertical divider line */
.ab-mission-vline {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, .2);
    flex-shrink: 0;
    margin: 0 4px;
}

.ab-mission-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

/* Each pillar: icon centered on top, text centered below */
.ab-pillar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    gap: 14px;
}

/* Outline-only circle, yellow icon inside */
.ab-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .45);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 22px;
    flex-shrink: 0;
}

.ab-pillar p {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .ab-mission-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .ab-mission-left {
        flex: none;
        width: 100%;
        padding-right: 0;
        padding-bottom: 28px;
    }

    .ab-mission-vline:first-of-type {
        width: 60%;
        height: 1px;
        align-self: center;
        margin: 0 0 28px;
    }

    .ab-mission-right {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
    }

    .ab-pillar {
        flex: 0 0 calc(50% - 10px);
        padding: 0 10px;
    }

    .ab-mission-vline {
        display: none;
    }
}

@media (max-width: 500px) {
    .ab-pillar {
        flex: 0 0 100%;
    }
}

/* ---- Stats ---- */
.ab-stats {
    background: #f9f9f9;
    border-bottom: 1px solid #e8e8e8;
}

.ab-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ab-stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.ab-stat-number {
    font-family: var(--font-main);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.ab-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ---- Leadership ---- */
.ab-leadership {
    background: #fff;
}

.ab-team-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f0f0f0;
}

.ab-team-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.ab-leadership-title {
    font-family: var(--font-main);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.ab-leadership-desc {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ab-leadership-checks {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.ab-check-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ab-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
}

.ab-check-item i {
    color: var(--green-mid);
    font-size: 16px;
}

.ab-btn-outline-green {
    background: transparent;
    color: var(--green-dark) !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    padding: 11px 26px;
    border-radius: 6px;
    border: 2px solid var(--green-dark);
    transition: all .25s;
    display: inline-flex;
    align-items: center;
}

.ab-btn-outline-green:hover {
    background: var(--green-dark);
    color: #fff !important;
}

/* ---- CTA Banner ---- */
.ab-cta-banner {
    background: linear-gradient(135deg, #0e3d1a 0%, #1a6b2f 100%);
    padding: 36px 0;
}

.ab-cta-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ab-cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 28px;
    flex-shrink: 0;
}

.ab-cta-text {
    flex: 1;
    min-width: 200px;
}

.ab-cta-text h4 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin: 0 0 4px;
}

.ab-cta-text p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .78);
    margin: 0;
}

.ab-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.ab-btn-yellow {
    background: var(--yellow);
    color: #fff !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 26px;
    border-radius: 6px;
    border: none;
    transition: all .25s;
}

.ab-btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.ab-btn-cta-outline {
    background: transparent;
    color: #fff !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 26px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, .6);
    transition: all .25s;
}

.ab-btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

/* About page responsive */
@media (max-width: 991px) {
    .ab-hero-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .ab-hero-left,
    .ab-hero-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ab-hero {
        background-size: cover;
        background-position: right;
    }

    .ab-hero-desc {
        font-size: 1em;
        line-height: 1.5;
        max-width: 400px;
        font-weight: 500;
    }

    .ab-hero-right {
        height: 300px;
        width: 100%;
    }

    .ab-mission-left {
        padding-right: 0;
        padding-bottom: 28px;
    }

    .ab-mission-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .15);
        padding-left: 0;
        padding-top: 28px;
    }

    .ab-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .ab-cta-text {
        text-align: center;
    }

    .ab-cta-btns {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .ab-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ab-hero-btns {
        flex-direction: column;
    }

    .ab-hero-badges {
        gap: 20px;
        width: 95%;
        align-items: center;
        margin: auto;
    }

    .ab-badge strong {
        font-size: 15px;
    }

    .ab-badge span {
        font-size: 13px;
    }

    .ab-story-img {
        background-position: right;
    }
}

/* =============================================
   PRODUCTS PAGE — HERO SECTION
   ============================================= */
.prod-hero-section {
    position: relative;
    background: url('/images/products-bg.webp') no-repeat center center;
    background-size: cover;
    min-height: 520px;
    overflow: hidden;
}

.prod-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 255, 255, 0.70) 35%,
            rgba(255, 255, 255, 0.10) 65%,
            transparent 100%);
    z-index: 1;
}

.prod-hero-container {
    position: relative;
    z-index: 2;
}

.prod-hero-row {
    min-height: 520px;
    padding: 60px 0 40px;
}

.prod-hero-left {
    padding-bottom: 30px;
}

.prod-hero-title {
    font-family: var(--font-main);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, .5);
}

.prod-hero-accent {
    color: var(--green-dark);
}

.prod-hero-desc {
    font-size: 14.5px;
    color: #333;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 420px;
    font-weight: 500;
}

/* Trust badges row */
.prod-hero-badges {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.phb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.phb-item i {
    font-size: 22px;
    color: var(--green-dark);
    flex-shrink: 0;
}

.prod-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-prod-primary {
    background: var(--green-dark);
    color: #fff !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    padding: 13px 26px;
    border-radius: 50px;
    border: 2px solid var(--green-dark);
    display: inline-flex;
    align-items: center;
    transition: all .25s;
}

.btn-prod-primary:hover {
    background: #0e3d1a;
    border-color: #0e3d1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-prod-outline {
    background: rgba(255, 255, 255, .85);
    color: #222 !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    padding: 13px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, .9);
    display: inline-flex;
    align-items: center;
    transition: all .25s;
    border: 1px solid var(--green-dark)
}

.btn-prod-outline:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Right column — products image */
.prod-hero-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.prod-hero-img-wrap {
    position: relative;
    width: 100%;
    text-align: right;
}

.prod-hero-products-img {
    width: 100%;
    max-width: 580px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .18));
    display: inline-block;
    vertical-align: bottom;
}

/* Organic badge overlay */
.prod-organic-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    border: 3px solid var(--green-light);
    z-index: 3;
}

.prod-organic-badge i {
    color: var(--green-dark);
    font-size: 18px;
    margin-bottom: 2px;
}

.prod-organic-badge span {
    font-size: 8px;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.2;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* =============================================
   PRODUCTS PAGE — SHOP BY CATEGORY
   ============================================= */
.prod-categories-section {
    background: #f9f9f9;
    padding: 60px 0;
}

.prod-section-eyebrow {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--green-mid);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.prod-section-sub {
    font-size: 20px;
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Category Card */
.prod-cat-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    overflow: visible;
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #f0f0f0;
}

.prod-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .13);
}

/* Icon top-left circle */
.prod-cat-icon {
    position: absolute;
    top: -5%;
    left: 14px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    border: 1.5px solid var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    z-index: 2;
}

.prod-cat-icon i {
    font-size: 20px;
}

/* Product images grid inside card */

.pci {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform .3s;
}

.prod-cat-card:hover .pci {
    transform: scale(1.05);
    border-radius: 14px;
}

/* Card text body */
.prod-cat-body {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.prod-cat-name {
    font-family: var(--font-body);
    font-size: 1.05em;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.prod-cat-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
    padding: 0 25px;
}

.prod-cat-link {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--green-mid);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
    width: fit-content;
    padding: 0;
    border: none;
    background: none;
}

.prod-cat-link:hover {
    color: var(--green-dark);
    gap: 10px;
}

/* =============================================
   PRODUCTS PAGE — FEATURED PRODUCTS
   ============================================= */
.prod-featured-section {
    background: #fff;
    padding: 50px 0 60px;
}

.prod-featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.prod-featured-title {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: .5px;
    margin: 0;
}

.prod-view-all {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
}

.prod-view-all:hover {
    color: #0e3d1a;
}

/* Featured product card */
.prod-feat-card {
    background: #f7f9f7;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.prod-feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .13);
}

.prod-feat-img {
    background: #f7f9f7;
    padding: 18px 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.prod-feat-img img {
    width: 100%;
    object-fit: contain;
    transition: transform .3s;
}

.prod-feat-card:hover .prod-feat-img img {
    transform: scale(1.07);
}

.prod-feat-body {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prod-feat-name {
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.prod-feat-price {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 800;
    color: var(--green-dark);
    margin: 0 0 6px;
}

.prod-feat-stars {
    color: #f5a623;
    font-size: 11px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.btn-feat-cart {
    background: var(--green-dark);
    color: #fff !important;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 6px;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    margin-top: auto;
}

.btn-feat-cart:hover {
    background: #0e3d1a;
    color: #fff;
    transform: translateY(-1px);
}

/* =============================================
   PRODUCTS PAGE — WHY CHOOSE US (rounded dark bar)
   ============================================= */
.prod-why-section {
    padding: 40px 0;
}

/* Rounded dark green inner card */
.prod-why-inner {
    background: var(--green-dark);
    border-radius: 16px;
    padding: 26px 10px 22px;
}

/* Centered section title */
.prod-why-title {
    text-align: center;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding-bottom: 16px;
}

/* Column with right divider */
.prod-why-col {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.prod-why-col:last-child {
    border-right: none;
}

.prod-why-item {
    padding: 10px 20px;
    color: #fff;
    text-align: center;
}

/* Outlined circle icon — matches reference image */
.prod-why-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #439143;
    border: 1.5px solid rgba(160, 215, 160, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin: auto;
    transition: background .25s, border-color .25s, color .25s;
}

.prod-why-item:hover .prod-why-icon {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(160, 215, 160, 0.85);
    color: #c5eac5;
}

.prod-why-item h6 {
    font-family: var(--font-main);
    font-size: 1.2em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    margin-top: 15px;
}

.prod-why-item p {
    font-size: 1em;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   PRODUCTS PAGE — STATS SECTION
   ============================================= */
section.prod-stats-section .container {
    background-color: #f4ecd35c;
    border-radius: 30px;
    padding: 25px;
}

.prod-stats-eyebrow {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.prod-stats-title {
    font-family: var(--font-main);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 12px;
}

.prod-stats-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 16px;
}

/* Avatar dots */
.prod-stats-avatars {
    display: flex;
    gap: -6px;
    margin-bottom: 10px;
}

.psa-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-block;
    margin-right: -8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.prod-stats-rating {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Stat boxes */
.prod-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 10px;
    border-radius: 12px;
    background: #f9f9f9;
    border: 1px solid #ececec;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
    box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 8%);
}

.prod-stat-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .09);
    transform: translateY(-3px);
}

.psb-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.prod-stat-box strong {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.prod-stat-box span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
}

/* =============================================
   PRODUCTS PAGE — BOTTOM CTA BANNER
   ============================================= */
.prod-cta-section {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    align-items: center;
}

.prod-cta-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.prod-cta-bg-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.prod-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(10, 50, 20, 0.88) 0%,
            rgba(10, 50, 20, 0.80) 50%,
            rgba(10, 50, 20, 0.75) 100%);
}

.prod-cta-inner {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    width: 100%;
}

.prod-cta-title {
    font-family: var(--font-main);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 6px;
}

.prod-cta-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .80);
    margin: 0;
}

.btn-cta-primary {
    background: var(--green-light);
    color: #fff !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 50px;
    border: 2px solid var(--green-light);
    display: inline-flex;
    align-items: center;
    transition: all .25s;
    white-space: nowrap;
}

.btn-cta-primary:hover {
    background: #388e3c;
    border-color: #388e3c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cta-outline {
    background: transparent;
    color: #fff !important;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, .7);
    display: inline-flex;
    align-items: center;
    transition: all .25s;
    white-space: nowrap;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   PRODUCTS PAGE — RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .prod-hero-row {
        min-height: auto;
        padding: 50px 0 30px;
    }

    .prod-hero-right {
        justify-content: center;
        margin-top: 24px;
    }

    .prod-hero-products-img {
        max-width: 460px;
    }

    .prod-cat-desc {
        font-size: 12px;
        padding: 0 !important;
    }

    .prod-cat-name {
        font-size: 0.9em;
    }
}

@media (max-width: 767px) {
    .prod-hero-section {
        min-height: auto;
        background-position: unset;
    }

    .prod-hero-title {
        font-size: 30px;
    }

    .prod-hero-badges {
        gap: 12px;
    }

    .prod-hero-right {
        display: none;
    }

    .prod-featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .prod-cta-section .row {
        gap: 16px;
    }

    .prod-stats-avatars {
        margin-bottom: 12px;
    }
}

@media (max-width: 575px) {
    .prod-cat-img-wrap {
        min-height: 120px;
    }

    .prod-feat-img {
        min-height: 130px;
    }
}