/* ===============================
   GLOBAL
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    transition: all 0.2s linear;
}

body {
    background: #f8fff6;
    overflow-x: hidden;
}

/* ===============================
   HEADER
================================ */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: 0.3s ease-in-out;
    padding: 20px 0;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 15px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: #2e7d32;
    text-decoration: none;
}

/* ===============================
   NAV MENU
================================ */
.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #2e7d32;
}

.btn-nav {
    background: #2e7d32;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-nav:hover {
    background: #1b5e20;
}

/* ===============================
   HAMBURGER
================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2e7d32;
    transition: 0.4s;
    border-radius: 5px;
}

/* ANIMATION */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}

/* ===============================
   MOBILE
================================ */
@media(max-width: 992px) {

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 20px rgba(0,0,0,0.08);
        padding-top: 80px;
        transition: 0.4s;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }

    .hamburger {
        display: flex;
    }
}


/* ===============================
   HERO SECTION
================================ */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f1fff4, #e8f5e9);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #1b5e20;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #2e7d32;
}

.hero-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: #2e7d32;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #1b5e20;
}

.btn-secondary {
    border: 2px solid #2e7d32;
    color: #2e7d32;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #2e7d32;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats h3 {
    color: #2e7d32;
    font-size: 22px;
}

.hero-stats span {
    font-size: 14px;
    color: #555;
}

/* IMAGE */
.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width: 992px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content p {
        margin: auto;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}


/* ===============================
   WHY SECTION
================================ */
.why {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 34px;
    color: #1b5e20;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: auto;
    color: #666;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.why-card {
    background: #f8fff6;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 15px;
    color: #2e7d32;
}

.why-card p {
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   ABOUT SECTION
================================ */
.about {
    padding: 100px 0;
    background: #f1fff4;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* BADGE */
.about-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: #2e7d32;
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-badge h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.about-badge span {
    font-size: 13px;
}

/* CONTENT */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 34px;
    color: #1b5e20;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 25px;
}

/* FEATURES */
.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.feature-item span {
    color: #2e7d32;
    font-weight: bold;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-item {
        justify-content: center;
    }
}


/* ===============================
   PRODUCTS SECTION
================================ */
.products {
    padding: 100px 0;
    background: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.product-card {
    background: #f8fff6;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.product-card h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 20px;
}

/* BADGE */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff9800;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   TESTIMONIAL
================================ */
.testimonial {
    padding: 100px 0;
    background: #f1fff4;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-card h4 {
    color: #2e7d32;
}

.testimonial-card span {
    font-size: 13px;
    color: #777;
}

@media(max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   CTA SECTION
================================ */
.cta {
    padding: 80px 0;
    background: #2e7d32;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 25px;
}

.cta .btn-primary {
    background: #fff;
    color: #2e7d32;
}

.cta .btn-primary:hover {
    background: #f1f1f1;
}


/* ===============================
   WHATSAPP FLOAT
================================ */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 24px;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}










/* ===============================
   FOOTER
================================ */
.footer {
    background: #1b5e20;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3, .footer h4 {
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
}

@media(max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* ===============================
   BENEFITS SECTION
================================ */
.benefits {
    padding: 100px 0;
    background: #ffffff;
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    font-size: 34px;
    color: #1b5e20;
    margin-bottom: 20px;
}

.benefits-content p {
    margin-bottom: 30px;
    color: #555;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-item span {
    font-size: 28px;
}

.benefit-item h4 {
    color: #2e7d32;
    margin-bottom: 5px;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

@media(max-width: 992px) {
    .benefits-container {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item {
        justify-content: center;
        text-align: left;
    }
}


/* ===============================
   CONTACT SECTION
================================ */
.contact {
    padding: 100px 0;
    background: #f1fff4;
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

@media(max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
}


/* ===============================
   BUY POPUP
================================ */
.buy-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 2000;
}

.buy-popup.active {
    opacity: 1;
    visibility: visible;
}

.buy-popup-content {
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: 0.3s ease;
}

.buy-popup.active .buy-popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.popup-subtitle {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

.popup-price {
    font-size: 32px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 20px;
}

.popup-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.popup-features li {
    margin-bottom: 10px;
    font-size: 14px;
}

.popup-buy-btn {
    display: inline-block;
    width: 100%;
}
