/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* NAVBAR */

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img{
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo h2{
    color: #2e7d32;
    font-size: 1.5rem;
}

.nav-links{
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a{
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: .3s;
}

.nav-links a:hover{
    color: #2e7d32;
}

/* HERO */

.hero{
    min-height: 90vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
    gap: 50px;
}

.hero-text{
    flex: 1;
}

.hero-text h1{
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1b5e20;
}

.hero-text p{
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-image{
    flex: 1;
    text-align: center;
}

.hero-image img{
    width: 100%;
    max-width: 450px;
}

/* BUTTON */

.btn{
    display: inline-block;
    background: #2e7d32;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    transition: .3s;
    font-weight: 600;
}

.btn:hover{
    background: #1b5e20;
    transform: translateY(-3px);
}

/* KEUNGGULAN */

.advantages{
    padding: 80px 8%;
    background: #f8fdf8;
    text-align: center;
}

.advantages h2{
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #1b5e20;
}

.adv-container{
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.card{
    width: 300px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card i{
    font-size: 45px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.card h3{
    margin-bottom: 10px;
}

/* PRODUK */

.product-preview{
    padding: 80px 8%;
    text-align: center;
}

.product-preview h2{
    margin-bottom: 40px;
    color: #1b5e20;
}

.product-card{
    max-width: 350px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-card img{
    width: 100%;
    margin-bottom: 20px;
}

.product-card h3{
    margin-bottom: 10px;
}

.product-card p{
    margin-bottom: 20px;
}

/* TESTIMONIAL */

.testimonials{
    padding: 80px 8%;
    background: #f8fdf8;
    text-align: center;
}

.testimonials h2{
    margin-bottom: 40px;
    color: #1b5e20;
}

.testimonial-box{
    max-width: 700px;
    margin: 20px auto;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-box h4{
    margin-top: 15px;
    color: #2e7d32;
}

/* CTA */

.cta{
    text-align: center;
    padding: 100px 8%;
}

.cta h2{
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1b5e20;
}

.cta p{
    margin-bottom: 30px;
}

/* FOOTER */

footer{
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

footer img{
    width: 70px;
    margin-bottom: 15px;
}

footer h3{
    margin-bottom: 10px;
}

.socials{
    margin: 20px 0;
}

.socials a{
    color: white;
    font-size: 24px;
    margin: 0 12px;
    transition: .3s;
}

.socials a:hover{
    opacity: .8;
}

.copyright{
    margin-top: 15px;
    font-size: 14px;
}

/* RESPONSIVE */

@media(max-width: 992px){

    .hero{
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1{
        font-size: 2.3rem;
    }

    .navbar{
        flex-direction: column;
        gap: 20px;
    }

    .nav-links{
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media(max-width: 576px){

    .hero-text h1{
        font-size: 2rem;
    }

    .advantages h2,
    .product-preview h2,
    .testimonials h2,
    .cta h2{
        font-size: 1.8rem;
    }

    .card{
        width: 100%;
    }
}
/* =========================
   PRODUCT PAGE
========================= */

.product-header{
    text-align: center;
    padding: 80px 8% 40px;
}

.product-header h1{
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.product-header p{
    max-width: 700px;
    margin: auto;
    color: #666;
}

.products{
    padding: 50px 8% 80px;
}

.product-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-item{
    width: 300px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.product-item:hover{
    transform: translateY(-8px);
}

.product-item img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-content{
    padding: 25px;
    text-align: center;
}

.product-content h3{
    margin-bottom: 15px;
    color: #1b5e20;
}

.product-content p{
    margin-bottom: 20px;
    color: #666;
}

.product-content .btn{
    display: inline-block;
}
/* =====================
   ABOUT US
===================== */

.about-header{
    padding: 80px 8%;
    text-align: center;
}

.about-header h1{
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.about-header p{
    max-width: 700px;
    margin: auto;
    color: #666;
}

.about-story{
    padding: 80px 8%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image{
    flex: 1;
}

.about-image img{
    width: 100%;
    border-radius: 20px;
}

.about-content{
    flex: 1;
}

.about-content h2{
    color: #1b5e20;
    margin-bottom: 20px;
}

.about-content p{
    margin-bottom: 15px;
}

.vision-mission{
    padding: 80px 8%;
    display: flex;
    gap: 30px;
    background: #f8fdf8;
}

.vision-box,
.mission-box{
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.vision-box h2,
.mission-box h2{
    color: #1b5e20;
    margin-bottom: 20px;
}

.mission-box ul{
    padding-left: 20px;
}

.company-values{
    padding: 80px 8%;
    text-align: center;
}

.company-values h2{
    margin-bottom: 40px;
    color: #1b5e20;
}

.value-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.value-card{
    width: 250px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.value-card h3{
    color: #1b5e20;
    margin-bottom: 10px;
}

.about-stats{
    padding: 80px 8%;
    background: #1b5e20;
    color: white;
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
}

.stat-box h2{
    font-size: 3rem;
}

.about-cta{
    padding: 100px 8%;
    text-align: center;
}

.about-cta h2{
    color: #1b5e20;
    margin-bottom: 20px;
}

.about-cta p{
    margin-bottom: 25px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .about-story{
        flex-direction: column;
    }

    .vision-mission{
        flex-direction: column;
    }

    .about-stats{
        flex-direction: column;
        gap: 30px;
    }
}
/* ======================
   TESTIMONIALS PAGE
====================== */

.testimonial-header{
    text-align: center;
    padding: 80px 8%;
}

.testimonial-header h1{
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.testimonial-header p{
    max-width: 700px;
    margin: auto;
    color: #666;
}

.testimonial-section{
    padding: 30px 8% 80px;
}

.testimonial-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card{
    width: 300px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
}

.testimonial-card:hover{
    transform: translateY(-8px);
}

.testimonial-card img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-card h3{
    margin-bottom: 10px;
    color: #1b5e20;
}

.stars{
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-card p{
    color: #666;
}

.review-stats{
    background: #1b5e20;
    color: white;
    padding: 80px 8%;
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
}

.review-box h2{
    font-size: 3rem;
}

.testimonial-cta{
    text-align: center;
    padding: 100px 8%;
}

.testimonial-cta h2{
    color: #1b5e20;
    margin-bottom: 20px;
}

.testimonial-cta p{
    margin-bottom: 30px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .review-stats{
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-card{
        width: 100%;
        max-width: 350px;
    }
}
/* ======================
   FAQ PAGE
====================== */

.faq-header{
    text-align: center;
    padding: 80px 8%;
}

.faq-header h1{
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.faq-header p{
    max-width: 700px;
    margin: auto;
    color: #666;
}

.faq-section{
    padding: 20px 8% 80px;
}

.faq-container{
    max-width: 900px;
    margin: auto;
}

.faq-item{
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    overflow: hidden;
}

.faq-item summary{
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #1b5e20;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker{
    display: none;
}

.faq-item summary::after{
    content: "+";
    position: absolute;
    right: 25px;
    font-size: 1.5rem;
}

.faq-item[open] summary::after{
    content: "-";
}

.faq-item p{
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.8;
}

.faq-cta{
    text-align: center;
    padding: 100px 8%;
    background: #f8fdf8;
}

.faq-cta h2{
    color: #1b5e20;
    margin-bottom: 20px;
}

.faq-cta p{
    margin-bottom: 30px;
}

@media(max-width:768px){

    .faq-header h1{
        font-size: 2.2rem;
    }

    .faq-item summary{
        padding-right: 50px;
    }
}
/* ======================
   CONTACT PAGE
====================== */

.contact-header{
    text-align: center;
    padding: 80px 8%;
}

.contact-header h1{
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.contact-header p{
    max-width: 700px;
    margin: auto;
    color: #666;
}

.contact-section{
    padding: 30px 8% 80px;
}

.contact-container{
    display: flex;
    gap: 40px;
}

.contact-info,
.contact-form{
    flex: 1;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.contact-info h2,
.contact-form h2{
    color: #1b5e20;
    margin-bottom: 25px;
}

.info-item{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i{
    color: #1b5e20;
    font-size: 20px;
    width: 25px;
}

.contact-info .btn{
    margin-top: 20px;
}

.contact-form form{
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea{
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

.contact-form textarea{
    resize: none;
}

.contact-form button{
    border: none;
    cursor: pointer;
}

/* MAP */

.map-section{
    padding: 0 8% 80px;
    text-align: center;
}

.map-section h2{
    margin-bottom: 25px;
    color: #1b5e20;
}

.map-box{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.map-box iframe{
    width: 100%;
    height: 450px;
    border: none;
}

/* CTA */

.contact-cta{
    text-align: center;
    padding: 100px 8%;
    background: #f8fdf8;
}

.contact-cta h2{
    color: #1b5e20;
    margin-bottom: 20px;
}

.contact-cta p{
    margin-bottom: 30px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .contact-container{
        flex-direction: column;
    }

    .contact-header h1{
        font-size: 2.2rem;
    }
}
.contact-desc{
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

.info-item{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i{
    color: #1b5e20;
    font-size: 22px;
    margin-top: 5px;
}

.info-item strong{
    display: block;
    color: #1b5e20;
    margin-bottom: 5px;
}

.info-item p{
    margin: 0;
    color: #666;
}

.contact-buttons{
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline{
    display: inline-block;
    background: #2e7d32;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    transition: .3s;
    font-weight: 600;
}

.btn-outline:hover{
    background: #1b5e20;
    color: white;
}
/* ==========================
   DETAIL PRODUCT
========================== */

.product-detail{
    padding: 80px 8%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.detail-image{
    flex: 1;
    text-align: center;
}

.detail-image img{
    width: 100%;
    max-width: 450px;
}

.detail-content{
    flex: 1;
}

.detail-content h1{
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.rating{
    color: #ffc107;
    margin-bottom: 20px;
}

.rating span{
    color: #666;
    margin-left: 10px;
}

.price{
    color: #2e7d32;
    font-size: 2rem;
    margin-bottom: 20px;
}

.description{
    margin-bottom: 30px;
    line-height: 1.8;
}

.detail-section{
    padding: 30px 8%;
}

.detail-section h2{
    color: #1b5e20;
    margin-bottom: 20px;
}

.info-box{
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.info-box ul{
    padding-left: 20px;
}

.info-box li{
    margin-bottom: 12px;
}

.detail-cta{
    text-align: center;
    padding: 100px 8%;
}

.detail-cta h2{
    color: #1b5e20;
    margin-bottom: 20px;
}

.detail-cta p{
    margin-bottom: 25px;
}

@media(max-width:768px){

    .product-detail{
        flex-direction: column;
        text-align: center;
    }

    .detail-content h1{
        font-size: 2.2rem;
    }
}
.blog-header {
    text-align: center;
    padding: 50px 20px;
}

.blog-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-image {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
}

.blog-content {
    max-width: 800px;
    margin: auto;
    padding: 30px 20px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.blog-content h2 {
    margin-top: 30px;
}

.highlight-box {
    background: #f3f7f4;
    border-left: 5px solid #2e8b57;
    padding: 15px;
    margin: 20px 0;
    border-radius: 6px;
}

.blog-content ul {
    padding-left: 20px;
}

/* Layout Utama */
.blog-container { padding: 40px 10%; }

/* Featured Section */
.featured-article {
    display: flex;
    gap: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 40px;
}
.featured-article img { width: 50%; border-radius: 10px; }

/* Grid Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.blog-item {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
}
.blog-item:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.blog-item img { width: 100%; border-radius: 8px; height: 180px; object-fit: cover; }
.read-more { font-weight: 600; color: #333; text-decoration: none; }
.partners-section {
    padding: 50px 20px;
    background-color: #fcfcfc; /

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2d5a27; /
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /
    border-radius: 20px; /
    overflow: hidden; /
}

@media (max-width: 768px) {
    .map-container { height: 400px; }
}

