/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f7faf7;
    color: #1d3326;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 90%);
    margin: auto;
}

.section {
    padding: 90px 0;
}



/* ========================================
   NAVBAR
======================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid #e1ebe3;

    backdrop-filter: blur(10px);
}

.nav-container {
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 22px;
    font-weight: 700;

    color: #14532d;
}

.logo img {
    width: 45px;
    height: 45px;

    object-fit: contain;

    border-radius: 50%;
}



/* NAV MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    position: relative;

    font-size: 14px;
    font-weight: 500;

    color: #385342;

    transition: 0.3s;
}

.nav-menu a:hover {
    color: #168044;
}

.nav-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: #168044;

    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}



/* ========================================
   HAMBURGER
======================================== */

.hamburger {
    display: none;

    border: none;
    background: transparent;

    cursor: pointer;

    width: 40px;
    height: 40px;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hamburger span {
    display: block;

    width: 25px;
    height: 3px;

    border-radius: 5px;

    background: #14532d;

    transition: 0.3s;
}



/* ========================================
   HERO
======================================== */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 20%,
            #dff4e5,
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #f8fff9,
            #edf8ef
        );

    padding: 80px 0;
}

.hero-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

.badge {
    display: inline-block;

    padding: 7px 14px;

    margin-bottom: 18px;

    border-radius: 30px;

    background: #dff4e5;

    color: #16733c;

    font-size: 13px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 64px);

    line-height: 1.15;

    color: #123b22;

    margin-bottom: 22px;
}

.hero h1 span {
    display: block;

    color: #21864a;
}

.hero-text p {
    max-width: 570px;

    color: #627267;

    margin-bottom: 30px;
}



/* BUTTON */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    border-radius: 10px;

    font-weight: 600;

    transition: 0.3s;
}

.btn-primary {
    background: #168044;
    color: white;
}

.btn-primary:hover {
    background: #0d6333;

    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid #bdd6c4;

    color: #196239;

    background: white;
}

.btn-secondary:hover {
    background: #e9f6ec;
}



/* HERO IMAGE */

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* ========================================
   SECTION TITLE
======================================== */

.section-title {
    max-width: 650px;

    margin: 0 auto 45px;

    text-align: center;
}

.section-title > span,
.section-tag {
    color: #21864a;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.section-title h2 {
    margin: 8px 0 12px;

    font-size: 36px;

    line-height: 1.2;

    color: #153a23;
}

.section-title p {
    color: #6b786f;
}



/* ========================================
   PRODUCTS
======================================== */

.products {
    background: white;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.product-card {
    overflow: hidden;

    background: white;

    border: 1px solid #e5eee7;

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(29, 76, 45, 0.06);

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(29, 76, 45, 0.12);
}

.product-image {
    position: relative;

    overflow: hidden;
}

.product-image img {
    height: 230px;

    object-fit: cover;

    transition: 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-label {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 5px 10px;

    border-radius: 20px;

    background: #168044;

    color: white;

    font-size: 11px;
    font-weight: 600;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    margin-bottom: 8px;

    color: #183b24;

    font-size: 18px;
}

.product-content p {
    min-height: 75px;

    color: #738078;

    font-size: 13px;
}

.product-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 15px;
}

.product-bottom strong {
    color: #168044;

    font-size: 16px;
}

.order-btn {
    padding: 7px 13px;

    border-radius: 7px;

    background: #e5f5e9;

    color: #14753b;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s;
}

.order-btn:hover {
    background: #168044;
    color: white;
}



/* ========================================
   ABOUT
======================================== */

.about {
    background: #f2f8f3;
}

.about-container {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.about-image img {
    height: 480px;

    object-fit: cover;

    border-radius: 25px;
}

.about-text h2 {
    margin: 10px 0 20px;

    font-size: 38px;

    line-height: 1.2;

    color: #153a23;
}

.about-text p {
    color: #68766d;

    margin-bottom: 15px;
}

.about-info {
    display: flex;

    gap: 15px;

    margin-top: 25px;
}

.about-info div {
    flex: 1;

    padding: 15px;

    background: white;

    border-radius: 12px;

    text-align: center;
}

.about-info strong {
    display: block;

    color: #168044;

    font-size: 20px;
}

.about-info span {
    color: #728077;

    font-size: 12px;
}



/* ========================================
   FEATURES
======================================== */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.feature-card {
    padding: 30px 20px;

    text-align: center;

    border: 1px solid #e3ede5;

    border-radius: 18px;

    background: white;

    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-7px);

    border-color: #b9d8c1;
}

.feature-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: auto auto 18px;

    border-radius: 50%;

    background: #e4f4e8;

    font-size: 26px;
}

.feature-card h3 {
    margin-bottom: 10px;

    font-size: 17px;

    color: #193d26;
}

.feature-card p {
    color: #748077;

    font-size: 13px;
}



/* ========================================
   CTA
======================================== */

.cta {
    padding: 85px 0;

    background:
        linear-gradient(
            135deg,
            #126b38,
            #299653
        );

    color: white;

    text-align: center;
}

.cta-content {
    max-width: 700px;

    margin: auto;
}

.cta span {
    font-size: 14px;

    opacity: 0.85;
}

.cta h2 {
    margin: 8px 0;

    font-size: 40px;
}

.cta p {
    margin-bottom: 25px;

    opacity: 0.9;
}

.btn-light {
    background: white;

    color: #146b38;
}

.btn-light:hover {
    transform: translateY(-3px);

    background: #effff2;
}



/* ========================================
   CONTACT
======================================== */

.contact {
    background: white;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.contact-card {
    padding: 30px;

    text-align: center;

    border: 1px solid #e3ece5;

    border-radius: 16px;
}

.contact-icon {
    margin-bottom: 12px;

    font-size: 30px;
}

.contact-card h3 {
    color: #183c25;

    margin-bottom: 5px;
}

.contact-card p {
    color: #738078;

    font-size: 14px;
}



/* ========================================
   FOOTER
======================================== */

footer {
    padding: 30px 0;

    background: #0d2f1b;

    color: white;
}

.footer-container {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 700;
}

.footer-logo img {
    width: 40px;
    height: 40px;

    object-fit: contain;
}

footer p {
    color: #b9c9bd;

    font-size: 12px;
}

.social {
    display: flex;

    gap: 15px;
}

.social a {
    color: #d1dfd5;

    font-size: 12px;
}

.social a:hover {
    color: white;
}



/* ========================================
   RESPONSIVE TABLET
======================================== */

@media (max-width: 1000px) {

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero-container {
        gap: 40px;
    }

}



/* ========================================
   RESPONSIVE MOBILE
======================================== */

@media (max-width: 768px) {

    .nav-container {
        height: 68px;
    }


    /* HAMBURGER AKTIF */

    .hamburger {
        display: flex;
    }


    /* MENU MOBILE */

    .nav-menu {
        position: absolute;

        top: 68px;
        left: 0;

        width: 100%;

        padding: 20px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        background: white;

        border-top: 1px solid #e5eee7;

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;

        padding: 13px 5%;

        border-bottom: 1px solid #edf2ee;
    }

    .nav-menu a::after {
        display: none;
    }


    /* HAMBURGER ANIMATION */

    .hamburger.active span:nth-child(1) {
        transform:
            translateY(8px)
            rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform:
            translateY(-8px)
            rotate(-45deg);
    }


    /* HERO */

    .hero {
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        height: 380px;
    }

   
    


    /* ABOUT */

    .about-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-image img {
        height: 350px;
    }

    .about-text h2 {
        font-size: 30px;
    }


    /* PRODUCTS */

    .product-grid {
        grid-template-columns: 1fr;
    }


    /* FEATURES */

    .feature-grid {
        grid-template-columns: 1fr;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-container {
        flex-direction: column;

        text-align: center;
    }

}



/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 37px;
    }

    .section-title h2 {
        font-size: 29px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .about-info {
        flex-direction: column;
    }

}