/* =========================================================
       GLOBAL
       ========================================================= */

    :root {
        --green-dark: #123b28;
        --green: #19733d;
        --green-light: #3c9b59;
        --green-soft: #eaf6ed;
        --lime: #a7d86d;
        --cream: #fbfaf3;
        --white: #ffffff;
        --text: #203126;
        --muted: #6a786e;
        --gold: #d7a83f;
        --border: rgba(20, 70, 40, .10);
        --shadow: 0 20px 60px rgba(20, 60, 35, .12);
        --radius: 24px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "DM Sans", sans-serif;
        color: var(--text);
        background: var(--white);
        line-height: 1.7;
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    button {
        font-family: inherit;
    }

    .container {
        width: min(1180px, calc(100% - 40px));
        margin: auto;
    }

    .section {
        padding: 100px 0;
    }

    .section-heading {
        max-width: 720px;
        margin: 0 auto 55px;
        text-align: center;
    }

    .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        border-radius: 50px;
        background: var(--green-soft);
        color: var(--green);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .section-heading h2 {
        font-family: "Manrope", sans-serif;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.12;
        letter-spacing: -1.5px;
        color: var(--green-dark);
        margin-bottom: 18px;
    }

    .section-heading p {
        color: var(--muted);
        font-size: 17px;
    }

    /* =========================================================
       TOP BAR
       ========================================================= */

    .topbar {
        background: var(--green-dark);
        color: rgba(255,255,255,.88);
        font-size: 13px;
    }

    .topbar-inner {
        min-height: 38px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .topbar-left,
    .topbar-right {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .topbar i {
        color: var(--lime);
        margin-right: 6px;
    }

    /* =========================================================
       HEADER
       ========================================================= */

    .header {
        position: absolute;
        left: 0;
        top: 38px;
        width: 100%;
        z-index: 1000;
        transition: .3s ease;
    }

    .header.scrolled {
        position: fixed;
        top: 0;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(16px);
        box-shadow: 0 10px 40px rgba(0,0,0,.08);
    }

    .nav {
        height: 88px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--white);
        flex-shrink: 0;
    }

    .header.scrolled .logo {
        color: var(--green-dark);
    }

    .logo-mark {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, #a7d86d, #3b9655);
        color: white;
        font-size: 22px;
        box-shadow: 0 8px 25px rgba(0,0,0,.15);
    }

    .logo-text strong {
        display: block;
        font-family: "Manrope", sans-serif;
        font-size: 18px;
        line-height: 1.1;
        font-weight: 800;
    }

    .logo-text small {
        font-size: 10px;
        letter-spacing: 1.3px;
        text-transform: uppercase;
        opacity: .78;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 27px;
        list-style: none;
    }

    .nav-links a {
        position: relative;
        color: rgba(255,255,255,.94);
        font-size: 14px;
        font-weight: 700;
        transition: .25s;
    }

    .header.scrolled .nav-links a {
        color: var(--green-dark);
    }

    .nav-links a:hover {
        color: var(--lime);
    }

    .header.scrolled .nav-links a:hover {
        color: var(--green);
    }
.nav-links li a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-links li a i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nav-links li a:hover i {
    transform: translateY(-2px);
}

.nav-links .nav-cta {
    gap: 8px;
}

.nav-links .nav-cta i {
    font-size: 13px;
}
    .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 18px;
        border-radius: 50px;
        background: var(--lime);
        color: var(--green-dark) !important;
        font-weight: 800 !important;
    }

    .mobile-toggle {
        display: none;
        border: 0;
        background: transparent;
        color: white;
        font-size: 25px;
        cursor: pointer;
    }

    .header.scrolled .mobile-toggle {
        color: var(--green-dark);
    }

    /* =========================================================
       HERO
       ========================================================= */

    .hero {
        min-height: 790px;
        position: relative;
        overflow: hidden;
        background: #153d28;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity .8s ease;
    }

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.04);
        transition: transform 7s ease;
    }

    .hero-slide.active .hero-bg {
        transform: scale(1);
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(
                90deg,
                rgba(7,35,20,.88) 0%,
                rgba(7,35,20,.70) 42%,
                rgba(7,35,20,.20) 100%
            );
    }

    .hero-content {
        position: relative;
        z-index: 5;
        min-height: 790px;
        display: flex;
        align-items: center;
    }

    .hero-copy {
        max-width: 710px;
        padding-top: 70px;
        color: white;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 9px 15px;
        border: 1px solid rgba(255,255,255,.22);
        background: rgba(255,255,255,.09);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 23px;
    }

    .hero-eyebrow i {
        color: var(--lime);
    }

    .hero-copy h1 {
        font-family: "Manrope", sans-serif;
        font-size: clamp(48px, 6.5vw, 82px);
        line-height: .99;
        letter-spacing: -4px;
        margin-bottom: 27px;
        font-weight: 800;
    }

    .hero-copy h1 span {
        color: var(--lime);
    }

    .hero-copy p {
        max-width: 610px;
        font-size: 18px;
        color: rgba(255,255,255,.86);
        margin-bottom: 34px;
    }

    .hero-buttons {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 13px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 52px;
        padding: 0 23px;
        border-radius: 50px;
        border: 1px solid transparent;
        font-weight: 800;
        font-size: 14px;
        transition: .3s ease;
        cursor: pointer;
    }

    .btn-primary {
        background: var(--lime);
        color: var(--green-dark);
        box-shadow: 0 10px 30px rgba(0,0,0,.18);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,.25);
    }

    .btn-outline {
        color: white;
        border-color: rgba(255,255,255,.35);
        background: rgba(255,255,255,.08);
        backdrop-filter: blur(10px);
    }

    .btn-outline:hover {
        background: white;
        color: var(--green-dark);
    }

    /* Hero controls */

    .hero-controls {
        position: absolute;
        z-index: 20;
        bottom: 45px;
        left: 50%;
        transform: translateX(-50%);
        width: min(1180px, calc(100% - 40px));
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hero-dots {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hero-dot {
        width: 32px;
        height: 4px;
        border-radius: 20px;
        border: 0;
        background: rgba(255,255,255,.35);
        cursor: pointer;
        transition: .3s;
    }

    .hero-dot.active {
        width: 65px;
        background: var(--lime);
    }

    .hero-arrows {
        display: flex;
        gap: 8px;
    }

    .hero-arrow {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.3);
        background: rgba(255,255,255,.1);
        color: white;
        cursor: pointer;
        transition: .25s;
    }

    .hero-arrow:hover {
        background: var(--lime);
        color: var(--green-dark);
    }

    .hero-scroll {
        position: absolute;
        z-index: 10;
        right: 28px;
        bottom: 140px;
        color: rgba(255,255,255,.65);
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        writing-mode: vertical-rl;
    }

    /* =========================================================
       INTRO STRIP
       ========================================================= */

    .intro-strip {
        position: relative;
        z-index: 20;
        margin-top: -55px;
    }

    .intro-grid {
        background: white;
        border-radius: 25px;
        box-shadow: var(--shadow);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: hidden;
    }

    .intro-item {
        padding: 28px;
        display: flex;
        align-items: center;
        gap: 16px;
        border-right: 1px solid var(--border);
    }

    .intro-item:last-child {
        border-right: 0;
    }

    .intro-icon {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        border-radius: 17px;
        display: grid;
        place-items: center;
        background: var(--green-soft);
        color: var(--green);
        font-size: 21px;
    }

    .intro-item strong {
        display: block;
        font-size: 15px;
        margin-bottom: 2px;
    }

    .intro-item span {
        color: var(--muted);
        font-size: 13px;
    }

    /* =========================================================
       ABOUT
       ========================================================= */

    .about {
        background: var(--cream);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-images {
        position: relative;
        min-height: 550px;
    }

    .about-main {
        position: absolute;
        left: 0;
        top: 0;
        width: 78%;
        height: 480px;
        object-fit: cover;
        border-radius: 28px;
        box-shadow: var(--shadow);
    }

    .about-small {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 43%;
        height: 230px;
        object-fit: cover;
        border: 9px solid var(--cream);
        border-radius: 25px;
        box-shadow: var(--shadow);
    }

    .about-badge {
        position: absolute;
        left: -20px;
        bottom: 60px;
        width: 125px;
        height: 125px;
        border-radius: 50%;
        background: var(--green);
        color: white;
        display: grid;
        place-items: center;
        text-align: center;
        padding: 15px;
        border: 7px solid var(--cream);
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }

    .about-badge i {
        font-size: 23px;
        color: var(--lime);
    }

    .about-badge span {
        font-size: 10px;
        line-height: 1.25;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .about-copy .section-tag {
        margin-bottom: 18px;
    }

    .about-copy h2 {
        font-family: "Manrope", sans-serif;
        font-size: clamp(35px, 4vw, 53px);
        line-height: 1.1;
        letter-spacing: -2px;
        color: var(--green-dark);
        margin-bottom: 20px;
    }

    .about-copy h2 span {
        color: var(--green);
    }

    .about-copy > p {
        color: var(--muted);
        margin-bottom: 25px;
        font-size: 16px;
    }

    .check-list {
        list-style: none;
        display: grid;
        gap: 13px;
        margin-bottom: 30px;
    }

    .check-list li {
        display: flex;
        gap: 11px;
        align-items: center;
        font-weight: 700;
        font-size: 14px;
    }

    .check-list i {
        color: var(--green);
        background: var(--green-soft);
        width: 27px;
        height: 27px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 11px;
    }

    /* =========================================================
       PRODUCTS
       ========================================================= */

    .products {
        background: white;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 23px;
    }

    .product-card {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        background: white;
        transition: .35s ease;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
        border-color: transparent;
    }

    .product-image {
        height: 260px;
        overflow: hidden;
        position: relative;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s ease;
    }

    .product-card:hover .product-image img {
        transform: scale(1.06);
    }

    .product-tag {
        position: absolute;
        left: 17px;
        top: 17px;
        padding: 7px 12px;
        background: white;
        color: var(--green);
        border-radius: 50px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .product-content {
        padding: 25px;
    }

    .product-icon {
        width: 45px;
        height: 45px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: var(--green-soft);
        color: var(--green);
        margin-bottom: 15px;
    }

    .product-content h3 {
        font-family: "Manrope", sans-serif;
        color: var(--green-dark);
        font-size: 22px;
        margin-bottom: 8px;
    }

    .product-content p {
        color: var(--muted);
        font-size: 14px;
        margin-bottom: 16px;
    }

    .text-link {
        color: var(--green);
        font-size: 13px;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .text-link i {
        transition: .25s;
    }

    .text-link:hover i {
        transform: translateX(5px);
    }

    /* =========================================================
       NURSERY FEATURE
       ========================================================= */

    .nursery {
        background: var(--green-dark);
        color: white;
        overflow: hidden;
    }

    .nursery-grid {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 75px;
        align-items: center;
    }

    .nursery .section-tag {
        background: rgba(167,216,109,.12);
        color: var(--lime);
    }

    .nursery h2 {
        font-family: "Manrope", sans-serif;
        font-size: clamp(36px, 4vw, 56px);
        line-height: 1.08;
        letter-spacing: -2px;
        margin-bottom: 20px;
    }

    .nursery h2 span {
        color: var(--lime);
    }

    .nursery p {
        color: rgba(255,255,255,.70);
        margin-bottom: 28px;
    }

    .nursery-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
        margin-bottom: 30px;
    }

    .nursery-point {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 700;
    }

    .nursery-point i {
        color: var(--lime);
    }

    .nursery-image {
        height: 510px;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
    }

    .nursery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .nursery-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
    }

    .nursery-floating {
        position: absolute;
        z-index: 2;
        right: 25px;
        bottom: 25px;
        background: white;
        color: var(--text);
        padding: 17px 20px;
        border-radius: 17px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,.2);
    }

    .nursery-floating i {
        color: var(--green);
        font-size: 23px;
    }

    .nursery-floating strong {
        display: block;
        font-size: 14px;
    }

    .nursery-floating span {
        color: var(--muted);
        font-size: 11px;
    }

    /* =========================================================
       VERMICOMPOST
       ========================================================= */

    .vermicompost {
        background: var(--cream);
    }

    .vermi-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px;
        align-items: center;
    }

    .vermi-image {
        height: 510px;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
    }

    .vermi-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .vermi-label {
        position: absolute;
        left: 25px;
        bottom: 25px;
        background: white;
        border-radius: 18px;
        padding: 16px 20px;
        box-shadow: 0 12px 35px rgba(0,0,0,.15);
    }

    .vermi-label strong {
        display: block;
        color: var(--green-dark);
    }

    .vermi-label span {
        font-size: 12px;
        color: var(--muted);
    }

    .vermi-copy h2 {
        font-family: "Manrope", sans-serif;
        font-size: clamp(36px, 4vw, 54px);
        line-height: 1.08;
        letter-spacing: -2px;
        color: var(--green-dark);
        margin-bottom: 20px;
    }

    .vermi-copy h2 span {
        color: var(--green);
    }

    .vermi-copy > p {
        color: var(--muted);
        margin-bottom: 27px;
    }

    .benefits {
        display: grid;
        gap: 13px;
        margin-bottom: 30px;
    }

    .benefit {
        display: flex;
        gap: 13px;
        align-items: flex-start;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--green-soft);
        color: var(--green);
    }

    .benefit strong {
        display: block;
        font-size: 14px;
        margin-bottom: 1px;
    }

    .benefit span {
        color: var(--muted);
        font-size: 12px;
    }

    /* =========================================================
       SERVICES
       ========================================================= */

    .services {
        background: white;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .service-card {
        padding: 30px;
        border-radius: 22px;
        border: 1px solid var(--border);
        transition: .3s ease;
        background: white;
    }

    .service-card:hover {
        background: var(--green-dark);
        color: white;
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .service-number {
        font-family: "Manrope", sans-serif;
        font-size: 12px;
        color: var(--green);
        font-weight: 800;
        margin-bottom: 25px;
    }

    .service-card:hover .service-number {
        color: var(--lime);
    }

    .service-icon {
        width: 53px;
        height: 53px;
        border-radius: 17px;
        display: grid;
        place-items: center;
        background: var(--green-soft);
        color: var(--green);
        font-size: 21px;
        margin-bottom: 22px;
    }

    .service-card:hover .service-icon {
        background: rgba(167,216,109,.12);
        color: var(--lime);
    }

    .service-card h3 {
        font-family: "Manrope", sans-serif;
        font-size: 19px;
        margin-bottom: 8px;
    }

    .service-card p {
        color: var(--muted);
        font-size: 13px;
    }

    .service-card:hover p {
        color: rgba(255,255,255,.67);
    }

    /* =========================================================
       FARM CTA
       ========================================================= */

    .farm-cta {
        padding: 35px 0 100px;
    }

    .cta-box {
        min-height: 400px;
        border-radius: 32px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        padding: 70px;
        color: white;
        background:
            linear-gradient(90deg, rgba(9,46,26,.91), rgba(9,46,26,.40)),
            url("images/cta-farm.jpg") center/cover;
    }

    .cta-content {
        max-width: 650px;
    }

    .cta-content h2 {
        font-family: "Manrope", sans-serif;
        font-size: clamp(34px, 4vw, 52px);
        line-height: 1.1;
        letter-spacing: -2px;
        margin-bottom: 15px;
    }

    .cta-content p {
        color: rgba(255,255,255,.78);
        margin-bottom: 25px;
    }

    /* =========================================================
       CONTACT
       ========================================================= */

    .contact {
        background: var(--cream);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 70px;
        align-items: start;
    }

    .contact-copy h2 {
        font-family: "Manrope", sans-serif;
        font-size: 46px;
        line-height: 1.08;
        letter-spacing: -2px;
        color: var(--green-dark);
        margin-bottom: 17px;
    }

    .contact-copy > p {
        color: var(--muted);
        margin-bottom: 30px;
    }

    .contact-items {
        display: grid;
        gap: 15px;
    }

    .contact-item {
        display: flex;
        gap: 13px;
        align-items: center;
    }

    .contact-item-icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        background: var(--green-soft);
        color: var(--green);
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }

    .contact-item strong {
        display: block;
        font-size: 13px;
    }

    .contact-item span {
        display: block;
        font-size: 12px;
        color: var(--muted);
    }

    .contact-card {
        background: white;
        padding: 35px;
        border-radius: 27px;
        box-shadow: var(--shadow);
    }

    .contact-card h3 {
        font-family: "Manrope", sans-serif;
        color: var(--green-dark);
        font-size: 24px;
        margin-bottom: 20px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group.full {
        grid-column: 1 / -1;
    }

    .form-group label {
        display: block;
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .form-control {
        width: 100%;
        min-height: 48px;
        border: 1px solid #dfe7e1;
        border-radius: 12px;
        padding: 0 14px;
        outline: none;
        font-family: inherit;
        font-size: 13px;
        background: #fbfcfb;
        transition: .2s;
    }

    textarea.form-control {
        padding: 13px 14px;
        min-height: 110px;
        resize: vertical;
    }

    .form-control:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 4px rgba(25,115,61,.08);
        background: white;
    }

    /* =========================================================
       FOOTER
       ========================================================= */

    footer {
        background: #0c2b1c;
        color: rgba(255,255,255,.70);
        padding-top: 70px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 50px;
        padding-bottom: 55px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 11px;
        color: white;
        margin-bottom: 18px;
    }

    .footer-brand p {
        font-size: 13px;
        max-width: 310px;
        line-height: 1.8;
    }

    .footer-column h4 {
        color: white;
        font-size: 14px;
        margin-bottom: 19px;
    }

    .footer-column ul {
        list-style: none;
        display: grid;
        gap: 9px;
    }

    .footer-column li,
    .footer-column a {
        font-size: 12px;
        color: rgba(255,255,255,.60);
        transition: .2s;
    }

    .footer-column a:hover {
        color: var(--lime);
    }

    .socials {
        display: flex;
        gap: 8px;
        margin-top: 20px;
    }

    .social {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.12);
        color: white;
        font-size: 13px;
        transition: .25s;
    }

    .social:hover {
        background: var(--lime);
        color: var(--green-dark);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,.08);
        min-height: 65px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        font-size: 11px;
    }

    /* =========================================================
       FLOATING BUTTONS
       ========================================================= */

    .floating-actions {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 900;
        display: grid;
        gap: 9px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: white;
        box-shadow: 0 10px 30px rgba(0,0,0,.18);
        transition: .25s;
        font-size: 20px;
    }

    .float-btn:hover {
        transform: scale(1.08);
    }

    .float-whatsapp {
        background: #25d366;
    }

    .float-call {
        background: var(--green);
    }

    /* =========================================================
       RESPONSIVE
       ========================================================= */

    @media (max-width: 1050px) {

        .nav-links {
            gap: 16px;
        }

        .about-grid,
        .nursery-grid,
        .vermi-grid,
        .contact-grid {
            gap: 45px;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }

    }

    @media (max-width: 850px) {

        .topbar {
            display: none;
        }

        .header {
            top: 0;
        }

        .nav {
            height: 76px;
        }

        .nav-links {
            position: fixed;
            top: 76px;
            left: 15px;
            right: 15px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,.15);
            padding: 18px;
            display: none;
            flex-direction: column;
            align-items: stretch;
            gap: 2px;
        }

        .nav-links.open {
            display: flex;
        }

        .nav-links a,
        .header.scrolled .nav-links a {
            display: block;
            color: var(--green-dark);
            padding: 12px 13px;
            border-radius: 10px;
        }

        .nav-links a:hover {
            background: var(--green-soft);
        }

        .nav-cta {
            text-align: center;
            background: var(--green) !important;
            color: white !important;
            margin-top: 6px;
        }

        .mobile-toggle {
            display: block;
        }

        .hero {
            min-height: 730px;
        }

        .hero-content {
            min-height: 730px;
        }

        .hero-copy {
            padding-top: 50px;
        }

        .hero-copy h1 {
            letter-spacing: -2.5px;
        }

        .hero-scroll {
            display: none;
        }

        .intro-grid {
            grid-template-columns: 1fr;
        }

        .intro-item {
            border-right: 0;
            border-bottom: 1px solid var(--border);
        }

        .intro-item:last-child {
            border-bottom: 0;
        }

        .about-grid,
        .nursery-grid,
        .vermi-grid,
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .about-images {
            min-height: 520px;
            max-width: 650px;
        }

        .product-grid,
        .service-grid {
            grid-template-columns: 1fr 1fr;
        }

        .nursery-image,
        .vermi-image {
            height: 430px;
        }

        .cta-box {
            padding: 50px;
        }

    }

    @media (max-width: 580px) {

        .container {
            width: min(100% - 28px, 1180px);
        }

        .section {
            padding: 72px 0;
        }

        .section-heading {
            margin-bottom: 38px;
        }

        .section-heading h2 {
            letter-spacing: -1px;
        }

        .logo-mark {
            width: 43px;
            height: 43px;
            border-radius: 13px;
        }

        .logo-text strong {
            font-size: 15px;
        }

        .logo-text small {
            font-size: 8px;
        }

        .hero {
            min-height: 690px;
        }

        .hero-content {
            min-height: 690px;
        }

        .hero-overlay {
            background:
                linear-gradient(
                    90deg,
                    rgba(7,35,20,.88),
                    rgba(7,35,20,.58)
                );
        }

        .hero-copy {
            padding-top: 40px;
        }

        .hero-eyebrow {
            font-size: 10px;
            padding: 8px 12px;
        }

        .hero-copy h1 {
            font-size: clamp(42px, 13vw, 62px);
            letter-spacing: -2.5px;
            line-height: 1;
        }

        .hero-copy p {
            font-size: 15px;
            line-height: 1.65;
        }

        .hero-buttons {
            display: grid;
            grid-template-columns: 1fr;
        }

        .hero-buttons .btn {
            width: 100%;
        }

        .hero-controls {
            bottom: 27px;
        }

        .hero-arrow {
            width: 40px;
            height: 40px;
        }

        .hero-dot {
            width: 20px;
        }

        .hero-dot.active {
            width: 42px;
        }

        .intro-strip {
            margin-top: -35px;
        }

        .intro-item {
            padding: 21px;
        }

        .about-images {
            min-height: 410px;
        }

        .about-main {
            height: 350px;
            width: 82%;
        }

        .about-small {
            height: 170px;
            width: 45%;
        }

        .about-badge {
            width: 90px;
            height: 90px;
            left: -5px;
            bottom: 45px;
        }

        .about-badge i {
            font-size: 18px;
        }

        .about-badge span {
            font-size: 7px;
        }

        .product-grid,
        .service-grid {
            grid-template-columns: 1fr;
        }

        .product-image {
            height: 235px;
        }

        .nursery-points {
            grid-template-columns: 1fr;
        }

        .nursery-image,
        .vermi-image {
            height: 330px;
        }

        .cta-box {
            min-height: 400px;
            padding: 35px 25px;
            border-radius: 25px;
        }

        .contact-copy h2 {
            font-size: 38px;
        }

        .contact-card {
            padding: 24px 18px;
        }

        .form-grid {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .form-group.full {
            grid-column: auto;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer-bottom {
            flex-direction: column;
            justify-content: center;
            text-align: center;
            padding: 15px 0;
        }

        .floating-actions {
            right: 13px;
            bottom: 13px;
        }

        .float-btn {
            width: 47px;
            height: 47px;
            font-size: 18px;
        }

    }
    /* =========================
   FAQ SECTION
========================= */

.faq-section {
    padding: 90px 0;
    background: linear-gradient(
        180deg,
        #f8fcf8 0%,
        #ffffff 100%
    );
}

.faq-section .section-heading {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-section .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border-radius: 50px;
    background: #e8f7ec;
    color: #238044;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.faq-section .section-heading h2 {
    margin: 0 0 15px;
    color: #173d25;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    font-weight: 800;
}

.faq-section .section-heading h2 span {
    color: #2d8a4b;
}

.faq-section .section-heading p {
    margin: 0;
    color: #64756a;
    font-size: 16px;
    line-height: 1.8;
}

/* FAQ Wrapper */

.faq-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

/* FAQ Item */

.faq-item {
    margin-bottom: 14px;
    border: 1px solid #e1ece3;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 7px 25px rgba(31, 91, 48, 0.06);
    transition: all .3s ease;
}

.faq-item:hover {
    border-color: #b9ddc2;
    box-shadow: 0 10px 30px rgba(31, 91, 48, 0.10);
}

/* Question */

.faq-question {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    color: #183d25;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.faq-question span:first-child {
    flex: 1;
}

/* Plus Icon */

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf7ed;
    color: #268247;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transition: transform .35s ease,
                background .35s ease,
                color .35s ease;
}

/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 24px;
    color: #617067;
    font-size: 15px;
    line-height: 1.85;
}

/* Active FAQ */

.faq-item.active {
    border-color: #b9ddc2;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #2d8a4b;
    color: #ffffff;
}

.faq-item.active .faq-question {
    color: #237742;
}

/* Bottom CTA */

.faq-bottom {
    max-width: 950px;
    margin: 45px auto 0;
    padding: 28px 32px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #edf9ef,
        #f8fcf8
    );
    border: 1px solid #d8ebdc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.faq-bottom h3 {
    margin: 0 0 6px;
    color: #183d25;
    font-size: 21px;
}

.faq-bottom p {
    margin: 0;
    color: #65736a;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Button */

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 50px;
    background: #2d8a4b;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(45, 138, 75, .20);
    transition: all .3s ease;
}

.faq-contact-btn:hover {
    background: #216d3a;
    transform: translateY(-2px);
}

.faq-contact-btn span {
    font-size: 18px;
    transition: transform .3s ease;
}

.faq-contact-btn:hover span {
    transform: translateX(4px);
}

/* Mobile */

@media (max-width: 768px) {

    .faq-section {
        padding: 65px 0;
    }

    .faq-section .section-heading {
        margin-bottom: 35px;
    }

    .faq-section .section-heading h2 {
        font-size: 30px;
    }

    .faq-section .section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 15px;
        gap: 12px;
    }

    .faq-icon {
        width: 31px;
        height: 31px;
        min-width: 31px;
        font-size: 21px;
    }

    .faq-answer p {
        padding: 0 16px 20px;
        font-size: 14px;
        line-height: 1.75;
    }

    .faq-bottom {
        margin-top: 30px;
        padding: 22px 18px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .faq-bottom h3 {
        font-size: 19px;
    }

    .faq-bottom p {
        font-size: 13px;
    }

    .faq-contact-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {

    .faq-section {
        padding: 55px 0;
    }

    .faq-section .section-heading h2 {
        font-size: 27px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-item {
        border-radius: 13px;
    }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
    position: relative;
    padding: 95px 0;
    background: #ffffff;
    overflow: hidden;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(45, 138, 75, 0.045);
    pointer-events: none;
}

.testimonial-section::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -180px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(105, 170, 92, 0.045);
    pointer-events: none;
}


/* Heading */

.testimonial-heading {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.testimonial-heading .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border-radius: 50px;
    background: #eaf7ed;
    color: #268247;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.testimonial-heading h2 {
    margin: 0 0 15px;
    color: #183d25;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    font-weight: 800;
}

.testimonial-heading h2 span {
    color: #2d8a4b;
}

.testimonial-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #68776d;
    font-size: 16px;
    line-height: 1.8;
}


/* Grid */

.testimonial-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* Card */

.testimonial-card {
    position: relative;
    padding: 27px;
    border: 1px solid #e2ece4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(31, 91, 48, 0.055);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    border-color: #bfdec7;
    box-shadow: 0 18px 42px rgba(31, 91, 48, 0.11);
}


/* Top */

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}


/* Avatar */

.testimonial-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #2d8a4b,
        #69aa5c
    );
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 0 7px 18px rgba(45, 138, 75, .18);
}


/* User */

.testimonial-user {
    min-width: 0;
    flex: 1;
}

.testimonial-user h3 {
    margin: 0 0 3px;
    color: #1d3e28;
    font-size: 16px;
    font-weight: 750;
}

.testimonial-user span {
    color: #78857d;
    font-size: 12px;
}


/* Quote */

.testimonial-quote {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f0f8f2;
    color: #65a174;
    font-size: 14px;
}


/* Stars */

.testimonial-stars {
    margin-bottom: 13px;
    color: #e7a929;
    font-size: 15px;
    letter-spacing: 2px;
}


/* Text */

.testimonial-text {
    margin: 0;
    color: #65736a;
    font-size: 14px;
    line-height: 1.85;
}


/* Footer */

.testimonial-footer {
    margin-top: 21px;
    padding-top: 16px;
    border-top: 1px solid #edf2ee;
}

.testimonial-footer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4f8e61;
    font-size: 11px;
    font-weight: 700;
}

.testimonial-footer i {
    font-size: 12px;
}


/* Trust Area */

.testimonial-trust {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 48px auto 0;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    border: 1px solid #e0ece2;
    border-radius: 18px;
    background: #f8fcf8;
}


/* Trust Item */

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.trust-icon {
    width: 43px;
    height: 43px;
    min-width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e6f5e9;
    color: #2d8a4b;
    font-size: 17px;
}

.trust-item strong {
    display: block;
    margin-bottom: 3px;
    color: #24442d;
    font-size: 13px;
}

.trust-item span {
    display: block;
    color: #78847c;
    font-size: 11px;
}


/* Tablet */

@media (max-width: 950px) {

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-trust {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}


/* Mobile */

@media (max-width: 650px) {

    .testimonial-section {
        padding: 65px 0;
    }

    .testimonial-heading {
        margin-bottom: 35px;
    }

    .testimonial-heading h2 {
        font-size: 30px;
    }

    .testimonial-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 22px;
        border-radius: 17px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .testimonial-trust {
        margin-top: 30px;
        padding: 20px;
        border-radius: 16px;
    }

}


/* Small Mobile */

@media (max-width: 420px) {

    .testimonial-section {
        padding: 55px 0;
    }

    .testimonial-heading h2 {
        font-size: 27px;
    }

    .testimonial-card {
        padding: 19px;
    }

    .testimonial-avatar {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .testimonial-quote {
        width: 31px;
        height: 31px;
    }

}
/* =========================================
   FLOATING SOCIAL MEDIA BAR
   ========================================= */

.floating-socials {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 7px 6px;
    border-radius: 0 14px 14px 0;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);

    border: 1px solid rgba(0, 0, 0, 0.06);
}

.floating-socials a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border-radius: 10px;
    margin: 3px 0;

    font-size: 17px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

/* Facebook */
.social-facebook {
    color: #1877f2;
}

.social-facebook:hover {
    background: #1877f2;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.30);
}

/* Instagram */
.social-instagram {
    color: #e4405f;
}

.social-instagram:hover {
    background: linear-gradient(
        135deg,
        #833ab4,
        #fd1d1d,
        #fcb045
    );
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(225, 48, 108, 0.30);
}

/* YouTube */
.social-youtube {
    color: #ff0000;
}

.social-youtube:hover {
    background: #ff0000;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.30);
}

/* WhatsApp */
.social-whatsapp {
    color: #25d366;
}

.social-whatsapp:hover {
    background: #25d366;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.30);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .floating-socials {
        left: 0;
        padding: 5px 4px;
        border-radius: 0 11px 11px 0;
    }

    .floating-socials a {
        width: 34px;
        height: 34px;
        font-size: 14px;
        border-radius: 8px;
        margin: 2px 0;
    }

}
