* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #26352a;
    background: #ffffff;
}


/* =========================
   NAVBAR
========================= */

header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar {
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px;
}

.logo {
    font-size: 21px;
    font-weight: bold;
    color: #2f6b3b;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #2f7d3b;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(20, 70, 35, 0.65),
            rgba(20, 70, 35, 0.65)
        ),
        url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=1600&q=80");

    background-size: cover;
    background-position: center;

    color: white;
}

.hero-content {
    width: 1200px;
    max-width: 90%;
    margin: auto;
}

.small-title {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.button {
    display: inline-block;

    background: #4f8f45;
    color: white;

    padding: 14px 25px;

    border-radius: 6px;

    text-decoration: none;
    border: none;

    cursor: pointer;
}

.button:hover {
    background: #3c7135;
}

.button-outline {
    background: transparent;
    border: 1px solid white;
}

.button-outline:hover {
    background: white;
    color: #315c36;
}


/* =========================
   SECTION
========================= */

.section {
    padding: 90px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p,
.section-label {
    color: #4f8f45;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.section-title span {
    color: #777;
}


/* =========================
   PRODUK
========================= */

.product-container {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.product-card {
    padding: 35px;

    border-radius: 12px;

    background: white;

    box-shadow:
        0 5px 25px
        rgba(0, 0, 0, 0.08);

    text-align: center;

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 23px;
    margin-bottom: 15px;
}

.product-card p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-card h4 {
    color: #3f7e3d;
    font-size: 21px;
    margin-bottom: 20px;
}

.product-card button {
    background: #4f8f45;
    color: white;

    border: none;

    padding: 12px 25px;

    border-radius: 6px;

    cursor: pointer;
}

.product-card button:hover {
    background: #356a32;
}


/* =========================
   ABOUT
========================= */

.about {
    background: #edf5eb;
    padding: 90px 20px;
}

.about-content {
    max-width: 1000px;
    margin: auto;
}

.about-text {
    max-width: 700px;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* =========================
   PEMESANAN
========================= */

.steps {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.step {
    text-align: center;
}

.step-number {
    width: 55px;
    height: 55px;

    margin: auto;
    margin-bottom: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #4f8f45;
    color: white;

    font-size: 20px;
    font-weight: bold;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: #777;
    line-height: 1.6;
}


/* =========================
   CONTACT
========================= */

.contact {
    background: #f4f7f3;
    padding: 90px 20px;
}

.contact-box {
    max-width: 600px;

    margin: auto;

    padding: 40px;

    text-align: center;

    background: white;

    border-radius: 12px;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.08);
}

.contact-box p {
    color: #777;
    margin-top: 20px;
    margin-bottom: 8px;
}

.contact-box h3 {
    margin-bottom: 20px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #24452b;
    color: white;

    text-align: center;

    padding: 30px 20px;

    line-height: 1.8;
}


/* =========================
   RESPONSIVE HP
========================= */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .product-container {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .about-text h2 {
        font-size: 30px;
    }

    
}

    /* ================= PROSES PEMBUATAN ================= */

.proses-section {
    background: #f7faf7;
}

.process-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.process-intro p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* DETAIL PROSES */

.process-detail {
    max-width: 1100px;
    margin: 0 auto 70px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 50px;
    align-items: center;
}


/* MEMBALIK POSISI FOTO DAN TEKS */

.process-detail.reverse .process-image {
    order: 2;
}

.process-detail.reverse .process-text {
    order: 1;
}


/* FOTO */

.process-image {
    width: 100%;
    height: 350px;

    overflow: hidden;
    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.process-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s;
}

.process-image img:hover {
    transform: scale(1.05);
}


/* TEKS */

.process-text {
    padding: 10px;
}

.process-number {
    display: inline-block;

    font-size: 18px;
    font-weight: bold;

    color: #4d8b3a;

    margin-bottom: 10px;
}

.process-text h3 {
    font-size: 28px;

    margin-bottom: 15px;

    color: #263d25;
}

.process-text p {
    color: #555;

    line-height: 1.8;

    margin-bottom: 12px;
}


/* PENUTUP */

.process-conclusion {
    max-width: 900px;

    margin: 20px auto 0;

    padding: 35px;

    text-align: center;

    background: white;

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.process-conclusion h3 {
    color: #3f7834;

    font-size: 24px;

    margin-bottom: 15px;
}

.process-conclusion p {
    color: #555;

    line-height: 1.8;
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .process-detail {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 50px;
    }

    .process-detail.reverse .process-image {
        order: 1;
    }

    .process-detail.reverse .process-text {
        order: 2;
    }

    .process-image {
        height: 250px;
    }

    .process-text h3 {
        font-size: 23px;
    }

    .process-intro {
        padding: 0 15px;
    }

    .process-conclusion {
        margin-left: 15px;
        margin-right: 15px;
        padding: 25px;
    }

}