/*
Theme Name: Techelp Custom Farmhouse Theme
Theme URI: https://www.techelp.in
Author: Himansu
Author URI: https://www.techelp.in
Description: Custom theme for our farmhouse, designed to reflect the warmth, simplicity, and connection to nature that define our vision. This theme combines earthy brand colors, natural textures, and clean typography to create a welcoming, modern aesthetic that feels both timeless and authentic.
Version: 1.0
Text Domain: Farm house theme
*/

/* =====================================
   Global Design System
===================================== */

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

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  overflow-x: hidden;
  color: #fff;
}



/* =====================================
   Layout
===================================== */


/* Container */
.container {
  width: min(1200px, 92%);
  margin: auto;
}

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid #eee;
    backdrop-filter:blur(10px);
}

.header-inner{
    position: relative;
    max-width:1200px;
    margin:auto;
    padding:16px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#111;
    font-size:1.2rem;
    font-weight:700;
}

.logo img{
    width:60px;
    height:60px;
}

.main-nav{
    flex:1;
    display:flex;
    justify-content:center;
    border-radius: 15px;
}

.nav-menu{
    display:flex;
    gap:32px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu a{
    text-decoration:none;
    color:#444;
    font-weight:500;
    transition:.3s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item>a{
    color:#679d16;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}



.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 30px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}

.hero-btn-outline{
    border:1px solid #8bcf26;
    color:#334e0c;
}

.hero-btn-outline:hover{
    background:#7fbd23;
    color:#fff;
    transform:translateY(-3px);
}

.hero-btn-primary {
    background:#8bcf26;
    color:#fff;
    box-shadow:
    0 10px 30px rgba(139,207,38,.35);
}


.hero-btn-primary:hover {
    background:#a8e83e;
    transform:translateY(-3px);
}

.nav-toggle{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:#fff;
    border-radius:10px;
    cursor:pointer;
    position:relative;
    z-index:1001;
    transition:.3s ease;
}

.nav-toggle:hover{
    background:#f5f5f5;
}

.nav-toggle span{
    position:absolute;
    left:11px;
    width:24px;
    height:2px;
    background:#111;
    transition:.35s ease;
    border-radius:5px;
}

.nav-toggle span:nth-child(1){
    top:15px;
}

.nav-toggle span:nth-child(2){
    top:22px;
}

.nav-toggle span:nth-child(3){
    top:29px;
}

/* Open State */

.nav-toggle.active span:nth-child(1){
    top:22px;
    transform:rotate(45deg);
}

.nav-toggle.active span:nth-child(2){
    opacity:0;
    transform:translateX(-10px);
}

.nav-toggle.active span:nth-child(3){
    top:22px;
    transform:rotate(-45deg);
}

@media (max-width:992px){

    /* Mobile Menu */
    .main-nav{
        position:fixed;
        top:0;
        right:0;
        width:300px;
        max-width:85%;
        height:70vh;

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

        background:#fff;
        box-shadow:-10px 0 35px rgba(0,0,0,.15);

        transition:right .4s ease;
        z-index:999;
        overflow-y:auto;
        visibility: hidden;
    }

    .main-nav.active{
        visibility: visible;
    }

    .nav-menu{
        width:100%;
        display:flex;
        flex-direction:column;
        padding:90px 20px 30px;
        gap:8px;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu a{
        display:flex;
        align-items:center;
        justify-content:space-between;

        padding:15px 18px;
        border-radius:12px;

        font-size:16px;
        font-weight:600;
        color:#444;
        text-decoration:none;

        transition:.3s ease;
        position:relative;
        overflow:hidden;
    }

    /* Hover effect */
    .nav-menu a:hover{
        background:#8bcf26;
        color:#fff;
        transform:translateX(8px);
        box-shadow:0 10px 20px rgba(139,207,38,.3);
    }

    /* Active page */
    .nav-menu .current-menu-item>a{
        background:#8bcf26;
        color:#fff;
    }

    /* Ripple shine */
    .nav-menu a::before{
        content:"";
        position:absolute;
        left:-120%;
        top:0;
        width:70%;
        height:100%;
        background:linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );
        transition:.5s;
    }

    .nav-menu a:hover::before{
        left:130%;
    }

    .hero-btn-outline,
    .hero-btn-primary{
        display:none;
    }

    .nav-toggle{
        display:block;
        z-index:1001;
    }
}

/* ============= Header end ================== */


/*==============================
Footer
==============================*/

.site-footer{
    background:#101828;
    color:#fff;
    padding:70px 0 25px;

}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.3fr;
    gap:60px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
    text-decoration:none;
    color:#fff;
    font-size:22px;
    font-weight:700;
}

.footer-logo img{
    width:100px;
    height:100px;
}

.footer-about p{
    color:#cbd5e1;
    line-height:1.8;
    max-width:420px;
}

.site-footer h4{
    margin-bottom:20px;
    font-size:18px;
    color:#fff;
}

.footer-menu,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-menu li,
.footer-contact li{
    margin-bottom:14px;
}

.footer-menu a,
.footer-contact a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-menu a:hover,
.footer-contact a:hover{
    color:#22c55e;
    padding-left:5px;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

/*==============================
WhatsApp Floating Button
==============================*/

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.05);
}

/*==============================
Tablet
==============================*/

@media (max-width:992px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

/*==============================
Mobile
==============================*/

@media (max-width:768px){

    .site-footer{
        padding:50px 0 20px;
        text-align:center;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-about p{
        max-width:100%;
        margin:auto;
    }

    .footer-menu li,
    .footer-contact li{
        margin-bottom:12px;
    }

    .whatsapp-float{
        width:55px;
        height:55px;
        right:18px;
        bottom:18px;
        font-size:24px;
    }

}

/*==============================
Small Mobile
==============================*/

@media (max-width:480px){

    .site-footer{
        padding:40px 0 15px;
    }

    .footer-logo{
        font-size:20px;
    }

    .footer-bottom{
        font-size:13px;
    }

}



/* Hero Section */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    background: #173b20;
}

.hero-media {
    position: relative;
    width: 100%;
    min-height: 90vh;
}

.hero-media img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
    animation: zoomFarm 18s ease-in-out infinite alternate;
}


@keyframes zoomFarm {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}


/* Dark gradient overlay */

.hero-overlay {
    position:absolute;
    inset:0;
    z-index:2;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.15) 100%
    );
}


.hero-content {
    position: relative;
    z-index:3;
    max-width:750px;
    padding:90px 7%;
}


.eyebrow {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:.5px;
    backdrop-filter:blur(10px);
    margin-bottom:25px;
}


.hero h1 {
    font-size:clamp(38px,5vw,68px);
    line-height:1.05;
    font-weight:800;
    margin:0 0 20px;
}


.hero h1 span {
    color:#b9f34a;
}


.lede {
    font-size:clamp(17px,2vw,22px);
    line-height:1.7;
    max-width:620px;
    color:#f3f3f3;
    margin-bottom:35px;
}


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





.btn-primary {
    background:#8bcf26;
    color:#fff;
    box-shadow:
    0 10px 30px rgba(139,207,38,.35);
}


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


.btn-outline {
    border:2px solid rgba(255,255,255,.8);
    color:#fff;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
}


.btn-outline:hover {
    background:#fff;
    color:#1d481c;
}


.trust-points {
    display:flex;
    gap:18px;
    margin-top:45px;
    flex-wrap:wrap;
}


.trust-points div {
    min-width:130px;
    padding:15px 20px;
    border-radius:18px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.2);
}


.trust-points strong {
    display:block;
    font-size:22px;
    color:#c9ff69;
}


.trust-points span {
    font-size:13px;
    color:#eee;
}


.hero-tagline-hi {
    margin-top:30px;
    font-size:20px;
    font-weight:600;
}


/* Tablet */

@media(max-width:900px){

    .hero-content {
        padding:80px 5%;
    }

    .hero-overlay {
        background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.7),
            rgba(0,0,0,.45)
        );
    }
}



/* Mobile */

@media(max-width:600px){

    .hero,
    .hero-media {
        min-height:100vh;
    }


    .hero-content {
        padding:70px 22px;
    }


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


    .lede {
        font-size:16px;
        line-height:1.6;
    }


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


    .btn {
        width:100%;
    }


    .trust-points {
        gap:10px;
    }


    .trust-points div {
        flex:1;
        min-width:100px;
        padding:12px;
    }


    .hero-tagline-hi {
        font-size:18px;
    }

}

/* Farm Section */

/* ==============================
   Farm Welcome Section
   Scoped Only to .farm-section
================================ */

.farm-section {
    padding: 90px 0;
    background: #ffffff;
}

.farm-section .container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


.farm-section .split {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 70px;
}


/* Text Area */

.farm-section .split > div:first-child {
    max-width: 600px;
}


.farm-section .eyebrow {
    display: inline-flex;
    align-items: center;
    background: #eef8dc;
    color: #39751c;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 20px;
}


.farm-section h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    color: #173b20;
    margin: 0 0 25px;
    font-weight: 800;
}


.farm-section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    margin-top: 18px;
    background: #8bcf26;
    border-radius: 20px;
}


.farm-section p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}


/* Button */

.farm-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}


.farm-section .btn-outline {
    margin-top: 15px;
    border: 2px solid #39751c;
    color: #39751c;
    background: transparent;
}


.farm-section .btn-outline:hover {
    background: #39751c;
    color: #ffffff;
    transform: translateY(-3px);
}


/* Image Area */

.farm-section .split > div:last-child {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* .farm-section .split > div:last-child::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 85%;
    background: #eef8dc;
    border-radius: 50%;
} */


.farm-section img {
    position: relative;
    z-index: 1;
    width: min(450px, 100%);
    height: auto;
    filter: drop-shadow(0 25px 30px rgba(0,0,0,.12));
    animation: farmGuavaFloat 5s ease-in-out infinite;
}


@keyframes farmGuavaFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}



/* ==============================
   Tablet Responsive
================================ */

@media(max-width:900px){

    .farm-section {
        padding:70px 0;
    }


    .farm-section .split {
        grid-template-columns:1fr;
        gap:45px;
        text-align:center;
    }


    .farm-section .split > div:first-child {
        margin:auto;
    }


    .farm-section h2::after {
        margin-left:auto;
        margin-right:auto;
    }


    .farm-section .split > div:last-child {
        order:-1;
    }


    .farm-section img {
        width:350px;
    }

}



/* ==============================
   Mobile Responsive
================================ */

@media(max-width:600px){

    .farm-section {
        padding:55px 0;
    }


    .farm-section .container {
        width:92%;
    }


    .farm-section .eyebrow {
        font-size:13px;
        padding:7px 15px;
    }


    .farm-section h2 {
        font-size:32px;
    }


    .farm-section p {
        font-size:16px;
        line-height:1.7;
    }


    .farm-section img {
        width:280px;
    }


    .farm-section .btn {
        width:100%;
    }

}


/* =====================================
   Why Choose Us Section
   Scoped only to .section-alt
===================================== */

.section-alt {
    padding: 90px 0;
    background: #f7fbf1;
}


.section-alt .container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* Divider */

.section-alt .guava-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}


.section-alt .seed-line {
    width: 80px;
    height: 2px;
    background: #8bcf26;
    position: relative;
}


.section-alt .seed-line::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #39751c;
    border-radius: 50%;
    top: -3px;
}


.section-alt .seed-line.right::before {
    right:0;
}



.different-section .guava-mark,
.section-alt .guava-mark{
    width:32px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.different-section .guava-mark img,
.section-alt .guava-mark img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}




/* Heading */

.section-alt h2 {
    color:#173b20;
    font-size:clamp(32px,4vw,48px);
    font-weight:800;
    margin:0 0 50px;
}



/* Grid */

.section-alt .grid-3 {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}



/* Feature Cards */

.section-alt .feature-card {

    background:#ffffff;
    padding:35px 30px;
    border-radius:24px;

    text-align:center;

    border:1px solid rgba(57,117,28,.08);

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

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

    position:relative;
    overflow:hidden;
}


.section-alt .feature-card::before {

    content:"";
    position:absolute;
    width:100%;
    height:4px;
    top:0;
    left:0;

    background:#8bcf26;

    transform:scaleX(0);
    transform-origin:left;
    transition:.35s ease;
}



.section-alt .feature-card:hover {

    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.12);

    border-color:#8bcf26;
}


.section-alt .feature-card:hover::before {
    transform:scaleX(1);
}



/* Icon */

.section-alt .icon {

    width:75px;
    height:75px;

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

    margin:0 auto 20px;

    background:#eef8dc;

    border-radius:50%;

    font-size:36px;

    transition:.3s ease;
}


.section-alt .feature-card:hover .icon {

    background:#8bcf26;

    transform:rotate(8deg) scale(1.1);
}



/* Card Content */

.section-alt h3 {

    color:#173b20;

    font-size:22px;

    margin:0 0 12px;

    font-weight:750;
}


.section-alt p {

    color:#666;

    font-size:16px;

    line-height:1.7;

    margin:0;

}



/* =====================================
   Tablet Responsive
===================================== */

@media(max-width:950px){

    .section-alt {
        padding:70px 0;
    }


    .section-alt .grid-3 {

        grid-template-columns:repeat(2,1fr);

        gap:25px;
    }

}



/* =====================================
   Mobile Responsive
===================================== */

@media(max-width:600px){

    .section-alt {

        padding:55px 0;

    }


    .section-alt .container {

        width:92%;

    }


    .section-alt h2 {

        margin-bottom:35px;

        font-size:32px;

    }


    .section-alt .grid-3 {

        grid-template-columns:1fr;

        gap:20px;

    }


    .section-alt .feature-card {

        padding:30px 22px;

        border-radius:20px;

    }


    .section-alt .seed-line {

        width:50px;

    }


    .section-alt .icon {

        width:65px;

        height:65px;

        font-size:30px;

    }


    .section-alt h3 {

        font-size:20px;

    }

}


/* =====================================
   Our Products Section
===================================== */

.our-product-section{
    padding:90px 0;
    background:#fff;
}

.our-product-section .container{
    width:min(1200px,90%);
    margin:0 auto;
}

/*=====================================
  Header
=====================================*/

.our-product-section .eyebrow{
    display:inline-flex;
    background:#eef8dc;
    color:#39751c;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.our-product-section h2{
    color:#173b20;
    font-size:clamp(32px,4vw,50px);
    line-height:1.15;
    font-weight:800;
    margin:0 0 18px;
}

.our-product-section h2::after{
    content:"";
    display:block;
    width:70px;
    height:5px;
    background:#8bcf26;
    border-radius:20px;
    margin-top:18px;
}

.our-product-section > .container > p{
    max-width:700px;
    color:#666;
    font-size:17px;
    line-height:1.8;
    margin-bottom:50px;
}

/*=====================================
  Product Grid
=====================================*/

.our-product-section .grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*=====================================
  Product Card
=====================================*/

.our-product-section .crate-card{
    position: relative;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:none;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.our-product-section .crate-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(0,0,0,.14);
}

/*=====================================
  Product Image (Hero)
=====================================*/

.our-product-section .thumb{
    height:350px;
    overflow:hidden;
    background:#f5f5f5;
}

.our-product-section .thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.our-product-section .crate-card:hover .thumb img{
    transform:scale(1.08);
}

/*=====================================
  Floating Tag
=====================================*/

.our-product-section .tag{
    position:absolute;
    top:20px;
    left:20px;
    display:inline-block;
    background:rgba(255,255,255,.95);
    color:#173b20;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    backdrop-filter:blur(8px);
}

/*=====================================
  Card Body
=====================================*/

.our-product-section .body{
    padding:22px 24px 24px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.our-product-section h3{
    margin:0;
    color:#173b20;
    font-size:23px;
    font-weight:800;
    line-height:1.3;
}

.our-product-section .body p{
    margin:0 0 18px;
    color:#666;
    font-size:15px;
    line-height:1.7;
}

.our-product-section .btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:13px 28px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.our-product-section .btn-outline{
    border:2px solid #39751c;
    color:#39751c;
}

.our-product-section .btn-outline:hover{
    background:#39751c;
    color:#fff;
}

.our-product-section .btn-gold{
    background:#d8a928;
    color:#fff;
    box-shadow:0 10px 25px rgba(216,169,40,.35);
}

.our-product-section .btn-gold:hover{
    background:#bd8e16;
    transform:translateY(-3px);
}

/*=====================================
  Tablet
=====================================*/

@media (max-width:950px){

    .our-product-section{
        padding:70px 0;
    }

    .our-product-section .grid-3{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .our-product-section .thumb{
        height:420px;
    }

    .our-product-section .body{
        padding:20px;
    }

    .our-product-section h3{
        font-size:22px;
    }

}

/*=====================================
  Mobile
=====================================*/

@media (max-width:600px){

    .our-product-section{
        padding:55px 0;
    }

    .our-product-section .container{
        width:92%;
    }

    .our-product-section h2{
        font-size:32px;
    }

    .our-product-section > .container > p{
        font-size:16px;
        margin-bottom:35px;
    }

    .our-product-section .grid-3{
        grid-template-columns:1fr;
        gap:24px;
    }

    .our-product-section .thumb{
        height:340px;
    }

    .our-product-section .body{
        padding:18px;
    }

    .our-product-section h3{
        font-size:21px;
    }

    .our-product-section .btn{
        width:100%;
    }

    .our-product-section .tag{
        top:15px;
        left:15px;
        font-size:12px;
        padding:7px 14px;
    }

}

/* =====================================
   Farm Gallery Section
   Scoped only to .farm-gallery-section
===================================== */

.farm-gallery-section {
    padding: 90px 0;
    background: #f7fbf1;
}


.farm-gallery-section .container {
    width: min(1200px, 90%);
    margin: 0 auto;
}



/* Heading */

.farm-gallery-section .eyebrow {

    display:inline-flex;

    background:#eef8dc;

    color:#39751c;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}


.farm-gallery-section h2 {

    color:#173b20;

    font-size:clamp(32px,4vw,50px);

    font-weight:800;

    line-height:1.15;

    margin:0 0 18px;

}


.farm-gallery-section h2::after {

    content:"";

    display:block;

    width:70px;

    height:5px;

    background:#8bcf26;

    border-radius:20px;

    margin-top:18px;

}


.farm-gallery-section > .container > p {

    max-width:650px;

    color:#666;

    font-size:17px;

    line-height:1.8;

    margin-bottom:45px;

}



/* Gallery Grid */

.farm-gallery-section .gallery-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



/* Gallery Card */

.farm-gallery-section .gallery-item {

    position:relative;

    height:360px;

    overflow:hidden;

    border-radius:26px;

    background:#ffffff;

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

    cursor:pointer;

}



.farm-gallery-section .gallery-item img {

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}



.farm-gallery-section .gallery-item:hover img {

    transform:scale(1.1);

}

.farm-gallery-section .gallery-popup {
    display:block;
    width:100%;
    height:100%;
    position:relative;
    z-index:2;
}

/* Overlay */

.farm-gallery-section .gallery-item::after {

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    background:
    linear-gradient(
        180deg,
        transparent 40%,
        rgba(0,0,0,.75)
    );

}



/* Caption */

.farm-gallery-section .cap {

    position:absolute;

    left:25px;

    bottom:25px;

    z-index:2;

    color:#fff;

    font-size:22px;

    font-weight:800;

}



/* Button */

.farm-gallery-section .gallery-btn {
    margin-top:35px;

}


.farm-gallery-section .btn {

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 32px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;

}



.farm-gallery-section .btn-outline {

    border:2px solid #39751c;

    color:#39751c;

    background:transparent;

}


.farm-gallery-section .btn-outline:hover {

    background:#39751c;

    color:#fff;

    transform:translateY(-3px);

}



/* =====================================
   Tablet
===================================== */

@media(max-width:950px){

    .farm-gallery-section {

        padding:70px 0;

    }


    .farm-gallery-section .gallery-grid {

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }


    .farm-gallery-section .gallery-item {

        height:320px;

    }

}



/* =====================================
   Mobile
===================================== */

@media(max-width:600px){

    .farm-gallery-section {

        padding:55px 0;

    }


    .farm-gallery-section .container {

        width:92%;

    }


    .farm-gallery-section h2 {

        font-size:32px;

    }


    .farm-gallery-section > .container > p {

        font-size:16px;

        margin-bottom:30px;

    }


    .farm-gallery-section .gallery-grid {

        grid-template-columns:1fr;

        gap:20px;

    }


    .farm-gallery-section .gallery-item {

        height:260px;

        border-radius:20px;

    }


    .farm-gallery-section .cap {

        font-size:20px;

        left:20px;

        bottom:20px;

    }


    .farm-gallery-section .btn {

        width:100%;

    }

}



/* =====================================
   Bulk Supply Section
   Scoped only to .bulk-supply-section
===================================== */

.bulk-supply-section {

    padding:90px 0;

    background:
    linear-gradient(
        135deg,
        #f7fbf1,
        #ffffff
    );

}


.bulk-supply-section .container {

    width:min(1200px,90%);

    margin:0 auto;

}



/* Heading */

.bulk-supply-section .eyebrow {

    display:inline-flex;

    background:#eef8dc;

    color:#39751c;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}



.bulk-supply-section h2 {

    color:#173b20;

    font-size:clamp(32px,4vw,50px);

    line-height:1.15;

    font-weight:800;

    margin:0 0 18px;

}



.bulk-supply-section h2::after {

    content:"";

    display:block;

    width:70px;

    height:5px;

    background:#8bcf26;

    border-radius:20px;

    margin-top:18px;

}



.bulk-supply-section .bulk-intro {

    max-width:650px;

    color:#666;

    font-size:17px;

    line-height:1.8;

    margin-bottom:35px;

}



/* Specification Table */

.bulk-supply-section .spec-table {

    width:100%;

    max-width:650px;

    border-collapse:separate;

    border-spacing:0;

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:

    0 15px 35px rgba(0,0,0,.08);

}



.bulk-supply-section .spec-table tr {

    transition:.3s ease;

}



.bulk-supply-section .spec-table tr:hover {

    background:#f5faeb;

}



.bulk-supply-section .spec-table td {

    padding:20px 25px;

    border-bottom:1px solid #edf2e5;

    font-size:16px;

    line-height:1.5;

}



.bulk-supply-section .spec-table tr:last-child td {

    border-bottom:none;

}



/* First Column */

.bulk-supply-section .spec-table td:first-child {

    width:45%;

    color:#173b20;

    font-weight:700;

}



/* Second Column */

.bulk-supply-section .spec-table td:last-child {

    color:#555;

}



/* Add small accent */

.bulk-supply-section .spec-table td:first-child::before {

    content:"✓";

    color:#8bcf26;

    font-weight:bold;

    margin-right:10px;

}



/* =====================================
   Tablet Responsive
===================================== */

@media(max-width:900px){

    .bulk-supply-section {

        padding:70px 0;

    }


    .bulk-supply-section .spec-table {

        max-width:100%;

    }

}



/* =====================================
   Mobile Responsive
===================================== */

@media(max-width:600px){

    .bulk-supply-section {

        padding:55px 0;

    }


    .bulk-supply-section .container {

        width:92%;

    }


    .bulk-supply-section h2 {

        font-size:32px;

    }


    .bulk-supply-section .bulk-intro {

        font-size:16px;

    }


    .bulk-supply-section .spec-table {

        border-radius:16px;

    }


    .bulk-supply-section .spec-table td {

        display:block;

        width:100% !important;

        padding:14px 18px;

    }


    .bulk-supply-section .spec-table td:first-child {

        background:#f0f8e3;

        padding-bottom:8px;

    }


    .bulk-supply-section .spec-table td:last-child {

        padding-top:8px;

    }


    .bulk-supply-section .spec-table tr {

        display:block;

        padding:8px 0;

    }

}

/* =====================================
   Buyer Testimonials Section
   Scoped only to .buyer-testimonials-section
===================================== */

.buyer-testimonials-section {

    padding:90px 0;

    background:#f7fbf1;

}


.buyer-testimonials-section .container {

    width:min(1200px,90%);

    margin:0 auto;

}



/* Heading */

.buyer-testimonials-section .eyebrow {

    display:inline-flex;

    background:#eef8dc;

    color:#39751c;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}



.buyer-testimonials-section h2 {

    color:#173b20;

    font-size:clamp(32px,4vw,50px);

    line-height:1.15;

    font-weight:800;

    margin:0 0 45px;

}



.buyer-testimonials-section h2::after {

    content:"";

    display:block;

    width:70px;

    height:5px;

    background:#8bcf26;

    border-radius:20px;

    margin-top:18px;

}



/* Testimonials Grid */

.buyer-testimonials-section .grid-3 {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



/* Testimonial Card */

.buyer-testimonials-section .testi-card {

    position:relative;

    background:#ffffff;

    padding:35px 30px;

    border-radius:25px;

    border:1px solid rgba(57,117,28,.10);

    box-shadow:

    0 15px 35px rgba(0,0,0,.06);

    transition:.35s ease;

    overflow:hidden;

}



.buyer-testimonials-section .testi-card::before {

    content:"";

    position:absolute;

    top:0;

    left:0;

    height:5px;

    width:100%;

    background:#8bcf26;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s ease;

}



.buyer-testimonials-section .testi-card:hover {

    transform:translateY(-8px);

    box-shadow:

    0 25px 50px rgba(0,0,0,.12);

}



.buyer-testimonials-section .testi-card:hover::before {

    transform:scaleX(1);

}



/* Quote */

.buyer-testimonials-section .quote-icon {

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef8dc;

    color:#39751c;

    border-radius:50%;

    font-size:38px;

    font-weight:800;

    margin-bottom:20px;

}



.buyer-testimonials-section .testi-card p {

    color:#555;

    font-size:16px;

    line-height:1.8;

    font-style:italic;

    margin:0 0 25px;

}



/* Buyer Details */

.buyer-testimonials-section .who {

    color:#173b20;

    font-size:16px;

    font-weight:700;

}



.buyer-testimonials-section .who strong {

    display:block;

    font-size:18px;

}



.buyer-testimonials-section .who span {

    display:block;

    margin-top:5px;

    color:#777;

    font-size:14px;

    font-weight:500;

}



/* =====================================
   Tablet
===================================== */

@media(max-width:950px){

    .buyer-testimonials-section {

        padding:70px 0;

    }


    .buyer-testimonials-section .grid-3 {

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

}



/* =====================================
   Mobile
===================================== */

@media(max-width:600px){

    .buyer-testimonials-section {

        padding:55px 0;

    }


    .buyer-testimonials-section .container {

        width:92%;

    }


    .buyer-testimonials-section h2 {

        font-size:32px;

        margin-bottom:35px;

    }


    .buyer-testimonials-section .grid-3 {

        grid-template-columns:1fr;

        gap:20px;

    }


    .buyer-testimonials-section .testi-card {

        padding:28px 22px;

        border-radius:20px;

    }


    .buyer-testimonials-section .testi-card p {

        font-size:15px;

    }

}


/* =====================================
   Supplier CTA Section
   Scoped only to .supplier-cta-section
===================================== */

.supplier-cta-section {

    padding:90px 0;

    background:
    linear-gradient(
        135deg,
        #173b20,
        #285d25
    );

    position:relative;

    overflow:hidden;

}



.supplier-cta-section::before {

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(139,207,38,.12);

    border-radius:50%;

    top:-180px;

    right:-120px;

}



.supplier-cta-section .container {

    width:min(1200px,90%);

    margin:0 auto;

    position:relative;

    z-index:1;

}



/* CTA Box */

.supplier-cta-section .supplier-cta-banner {

    text-align:center;

    max-width:850px;

    margin:auto;

}



/* Heading */

.supplier-cta-section h2 {

    color:#ffffff;

    font-size:clamp(32px,4vw,52px);

    line-height:1.15;

    font-weight:800;

    margin:0 0 18px;

}



.supplier-cta-section h2::after {

    content:"";

    display:block;

    width:75px;

    height:5px;

    margin:20px auto 0;

    background:#8bcf26;

    border-radius:20px;

}



.supplier-cta-section p {

    color:rgba(255,255,255,.85);

    font-size:19px;

    line-height:1.7;

    margin:25px auto 35px;

}



/* Buttons */

.supplier-cta-section .actions {

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}



.supplier-cta-section .btn {

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 35px;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    transition:.35s ease;

}



/* WhatsApp Button */

.btn-whatsapp {

    background:#25D366;

    color:#ffffff;

    box-shadow:

    0 12px 30px rgba(37,211,102,.35);

}



.btn-whatsapp:hover {

    background:#1fb85a;

    transform:translateY(-4px);

}



/* Gold Button */

.btn-gold {

    background:#d8a928;

    color:#ffffff;

    box-shadow:

    0 12px 30px rgba(216,169,40,.35);

}



.btn-gold:hover {

    background:#bd8e16;

    transform:translateY(-4px);

}



/* =====================================
   Tablet
===================================== */

@media(max-width:900px){

    .supplier-cta-section {

        padding:70px 0;

    }


    .supplier-cta-section p {

        font-size:17px;

    }

}



/* =====================================
   Mobile
===================================== */

@media(max-width:600px){

    .supplier-cta-section {

        padding:55px 0;

    }


    .supplier-cta-section .container {

        width:92%;

    }


    .supplier-cta-section h2 {

        font-size:32px;

    }


    .supplier-cta-section p {

        font-size:16px;

        margin-bottom:28px;

    }


    .supplier-cta-section .actions {

        flex-direction:column;

        width:100%;

    }


    .supplier-cta-section .btn {

        width:100%;

        padding:14px 20px;

    }

}


/* =====================================
   Contact Info Section
===================================== */

.contact-info-section {

    padding:90px 0;

    background:#f7fbf1;

}


.contact-info-section .container {

    width:min(1200px,90%);

    margin:0 auto;

}


.contact-info-section .contact-wrapper {

    display:grid;

    grid-template-columns:1fr .9fr;

    align-items:center;

    gap:70px;

}



/* Content */

.contact-info-section h2 {

    color:#173b20;

    font-size:clamp(32px,4vw,50px);

    font-weight:800;

    line-height:1.15;

    margin-bottom:35px;

}


.contact-info-section h2::after {

    content:"";

    display:block;

    width:70px;

    height:5px;

    background:#8bcf26;

    border-radius:20px;

    margin-top:18px;

}



/* Contact Cards */

.contact-info-section .info-list {

    list-style:none;

    padding:0;

    margin:0 0 35px;

}



.contact-info-section .info-list li {

    display:flex;

    align-items:center;

    gap:25px;

    background:#ffffff;
    color: #000;

    padding:20px 25px;

    margin-bottom:15px;

    border-radius:18px;

    border:1px solid rgba(57,117,28,.1);

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

    transition:.3s ease;

}


.contact-info-section .info-list li:hover {

    transform:translateX(8px);

    border-color:#8bcf26;
    color:#39751c;

}



.contact-info-section .label {

    min-width:90px;

    color:#39751c;

    font-weight:800;

}



.contact-info-section .info-list a {

    color:#173b20;

    text-decoration:none;

    font-weight:600;

}



/* Button */

.contact-info-section .btn-primary {

    display:inline-flex;

    padding:15px 35px;

    background:#8bcf26;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;

}


.contact-info-section .btn-primary:hover {

    background:#a8e83e;

    transform:translateY(-4px);

}



/* Image */

.contact-info-section .contact-image {

    position:relative;

    display:flex;

    justify-content:center;

}


.contact-info-section .contact-image::before {

    content:"";

    position:absolute;

    width:85%;

    height:85%;

    background:#e9f6d4;

    border-radius:50%;

    z-index:0;

}



.contact-info-section .contact-image img {

    position:relative;

    z-index:1;

    width:min(480px,100%);

    height:auto;

    filter:drop-shadow(0 25px 35px rgba(0,0,0,.15));

    animation:contactFloat 5s ease-in-out infinite;

}



@keyframes contactFloat {

    0%,100% {

        transform:translateY(0);

    }

    50% {

        transform:translateY(-12px);

    }

}



/* =====================================
   Tablet
===================================== */

@media(max-width:900px){

    .contact-info-section {

        padding:70px 0;

    }


    .contact-info-section .contact-wrapper {

        grid-template-columns:1fr;

        gap:45px;

        text-align:center;

    }


    .contact-info-section .contact-image {

        order:-1;

    }


    .contact-info-section h2::after {

        margin-left:auto;

        margin-right:auto;

    }


    .contact-info-section .info-list li {

        justify-content:center;

    }

}



/* =====================================
   Mobile
===================================== */

@media(max-width:600px){

    .contact-info-section {

        padding:55px 0;

    }


    .contact-info-section .container {

        width:92%;

    }


    .contact-info-section h2 {

        font-size:32px;

    }


    .contact-info-section .info-list li {

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

        padding:18px;

    }


    .contact-info-section .label {

        min-width:auto;

    }


    .contact-info-section .btn-primary {

        width:100%;

        justify-content:center;

    }


    .contact-info-section .contact-image img {

        width:280px;

    }

}


.fhg-gallery-hero{

    width:100%;

    padding:80px 0 40px;

    background:
    linear-gradient(
        135deg,
        #f5fbe9,
        #ffffff
    );

    overflow:hidden;

    position:relative;

}


.fhg-gallery-hero-container{

    width:min(1200px,92%);

    margin:auto;

    position:relative;

    z-index:2;

}

/* ==========================================
   CONTENT
========================================== */

.fhg-gallery-hero-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.fhg-gallery-left{

    flex:1;

    max-width:650px;

}

.fhg-gallery-eyebrow{

    display:inline-flex;

    align-items:center;

    padding:9px 22px;

    background:#eaf7d3;

    color:#35751b;

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.3px;

}

.fhg-gallery-hero h1{

    margin:25px 0 20px;

    color:#16391d;

    font-size:clamp(40px,5vw,62px);

    line-height:1.1;

    font-weight:700;

}

.fhg-gallery-hero h1::after{

    content:"";

    display:block;

    width:80px;

    height:5px;

    margin-top:22px;

    border-radius:20px;

    background:#8bcf26;

}

.fhg-gallery-lede{

    color:#555;

    font-size:19px;

    line-height:1.8;

    margin:0;

}

/* ==========================================
   ILLUSTRATION
========================================== */

.fhg-gallery-art{

    position:relative;

    width:480px;

    height:360px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

}


.hero-guava{

    position:relative;

    width:480px;

    max-width:100%;

    height:auto;

    animation:heroFloat 5s ease-in-out infinite;

    z-index:2;

}

@keyframes heroFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:1000px){

    .fhg-gallery-hero{

        padding:70px 0 40px;

    }

    .fhg-gallery-hero-content{

        gap:40px;

    }

    .fhg-gallery-hero h1{

        font-size:48px;

    }

    .fhg-gallery-lede{

        font-size:17px;

    }

    .fhg-gallery-art{

        width:300px;

        height:280px;

    }

    .hero-guava{

        width:220px;

    }

}

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

@media(max-width:768px){

    .fhg-gallery-hero{

        padding:55px 0 35px;

    }

    .fhg-gallery-hero-content{

        flex-direction:column;

        text-align:center;

        gap:35px;

    }

    .fhg-gallery-left{

        max-width:100%;

    }

    .fhg-gallery-hero h1{

        font-size:38px;

        margin:20px 0 16px;

    }

    .fhg-gallery-hero h1::after{

        margin:20px auto 0;

    }

    .fhg-gallery-lede{

        font-size:16px;

        line-height:1.75;

    }

    .fhg-gallery-art{

        width:260px;

        height:240px;

    }

    .hero-guava{

        width:190px;

    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

    .fhg-gallery-hero-container{

        width:92%;

    }

    .fhg-gallery-eyebrow{

        font-size:13px;

        padding:8px 18px;

    }

    .fhg-gallery-hero h1{

        font-size:32px;

    }

    .fhg-gallery-lede{

        font-size:15px;

    }

    .fhg-gallery-art{

        width:220px;

        height:200px;

    }

    .hero-guava{

        width:165px;

    }

}
