/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    max-width: 1200px;
    height: 70px;
    margin: auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    color: #1F6D46;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}


/* =========================================================
   NAVIGATION MENU
========================================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-menu a {
    position: relative;
    color: #16241C;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #1F6D46;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.nav-menu a:hover {
    color: #1F6D46;
}

.nav-menu a:hover::after {
    width: 70%;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* =========================================================
   WHATSAPP NAVBAR
========================================================= */

.nav-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 15px;
    border-radius: 7px;
    background: #E3F4E8;
    color: #1F6D46;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-whatsapp:hover {
    background: #1F6D46;
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-whatsapp i {
    font-size: 17px;
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
    display: none;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hamburger:active {
    transform: scale(0.85);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;
    padding: 100px 25px 60px;
    display: flex;
    align-items: center;
    background: #F3FAF5;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}


/* =========================================================
   HERO TEXT
========================================================= */

.hero-text {
    text-align: left;
}

.hero-label {
    margin-bottom: 18px;
    color: #1F6D46;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
}

.hero h1 {
    max-width: 700px;
    color: #222222;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
}

.hero h1 span {
    display: block;
    color: #1F6D46;
}

.hero-description {
    max-width: 600px;
    margin-top: 25px;
    color: #666666;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary {
    background: #1F6D46;
    color: #ffffff;
}

.btn-secondary {
    border: 1px solid #1F6D46;
    background: #ffffff;
    color: #1F6D46;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}


/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slide {
    width: 100%;
    display: block;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide.active {
    opacity: 1;
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cccccc;
}

.dot.active {
    background: #1F6D46;
}


/* =========================================================
   PRODUK
========================================================= */

.produk {
    padding: 100px 25px;
    background: #ffffff;
}

.produk-container {
    max-width: 1200px;
    margin: auto;
}

.produk-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.produk-label {
    margin-bottom: 15px;
    color: #1F6D46;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

.produk-heading h2 {
    margin-bottom: 18px;
    color: #222222;
    font-size: 40px;
    line-height: 1.2;
}

.produk-heading h2 span {
    display: block;
    color: #1F6D46;
}

.produk-heading > p {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   PRODUK SLIDER
========================================================= */

.produk-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.produk-slider {
    display: flex;
    flex: 1;
    min-width: 0;
    gap: 20px;
    width: 100%;
    overflow: hidden;
    scroll-behavior: auto;
}

.produk-slider .produk-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
}


/* =========================================================
   PRODUK SLIDER BUTTON
========================================================= */

.produk-slider-btn {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #1F6D46;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.produk-slider-btn:hover {
    background: #155236;
    transform: scale(1.05);
}


/* =========================================================
   PRODUK CARD
========================================================= */

.produk-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.produk-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   PRODUK IMAGE
========================================================= */

.produk-image {
    width: 100%;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
}

.produk-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produk-card:hover .produk-image img {
    transform: scale(1.05);
}


/* =========================================================
   PRODUK INFO
========================================================= */

.produk-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 22px 25px;
}

.produk-info .produk-detail {
    margin-top: auto;
}

.produk-category {
    margin-bottom: 10px;
    color: #1F6D46;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.produk-info h3 {
    margin-bottom: 10px;
    color: #222222;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.produk-info > p:not(.produk-category) {
    min-height: 68px;
    margin-bottom: 20px;
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}

.produk-info a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1F6D46;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.produk-info a:hover {
    gap: 9px;
}


/* =========================================================
   KENAPA ATOMY
========================================================= */

.kenapa {
    padding: 100px 25px;
    background: #F3FAF5;
}

.kenapa-container {
    max-width: 1200px;
    margin: auto;
}

.kenapa-heading {
    max-width: 650px;
    margin: 0 auto 45px;
    text-align: center;
}

.kenapa-label {
    margin-bottom: 10px;
    color: #1F6D46;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.kenapa-heading h2 {
    margin-bottom: 14px;
    color: #222222;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
}

.kenapa-heading h2 span {
    display: block;
    color: #1F6D46;
}

.kenapa-heading > p {
    color: #666666;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   KENAPA GRID
========================================================= */

.kenapa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* =========================================================
   KENAPA CARD
========================================================= */

.kenapa-card {
    padding: 30px 24px;
    border-radius: 12px;
    background: #ffffff;
    text-align: center;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.kenapa-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   KENAPA ICON
========================================================= */

.kenapa-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #E3F4E8;
    color: #1F6D46;
    font-size: 21px;
}


/* =========================================================
   KENAPA TEXT
========================================================= */

.kenapa-card h3 {
    margin-bottom: 10px;
    color: #222222;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
}

.kenapa-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CARA ORDER
========================================================= */

.cara-order {
    padding: 100px 25px;
    background: #ffffff;
}

.cara-order-container {
    max-width: 1200px;
    margin: auto;
}

.cara-order-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.cara-order-label {
    margin-bottom: 15px;
    color: #1F6D46;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

.cara-order-heading h2 {
    margin-bottom: 18px;
    color: #222222;
    font-size: 40px;
    line-height: 1.2;
}

.cara-order-heading h2 span {
    display: block;
    color: #1F6D46;
}

.cara-order-heading > p {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   CARA ORDER GRID
========================================================= */

.cara-order-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================================================
   CARA ORDER CARD
========================================================= */

.cara-order-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 12px;
    background: #F3FAF5;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cara-order-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   CARA ORDER ICON
========================================================= */

.cara-order-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E3F4E8;
    color: #1F6D46;
    font-size: 26px;
}


/* =========================================================
   CARA ORDER NUMBER
========================================================= */

.cara-order-number {
    margin-bottom: 8px;
    color: #1F6D46;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================================
   CARA ORDER TEXT
========================================================= */

.cara-order-card h3 {
    margin-bottom: 12px;
    color: #222222;
    font-size: 19px;
}

.cara-order-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TENTANG
========================================================= */

.tentang {
    padding: 100px 25px;
    background: #F3FAF5;
}

.tentang-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}


/* =========================================================
   TENTANG IMAGE
========================================================= */

.tentang-image {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.06);
}

.tentang-image img {
    width: 100%;
    height: 450px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tentang-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   TENTANG CONTENT
========================================================= */

.tentang-content {
    max-width: 550px;
}

.tentang-label {
    margin-bottom: 10px;
    color: #1F6D46;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tentang-content h2 {
    margin-bottom: 18px;
    color: #222222;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 600;
}

.tentang-content h2 span {
    display: block;
    color: #1F6D46;
}

.tentang-content > p {
    margin-bottom: 15px;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   TENTANG POINTS
========================================================= */

.tentang-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

.tentang-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333333;
    font-size: 14px;
}

.tentang-point i {
    color: #1F6D46;
    font-size: 18px;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    padding: 100px 25px;
    background: #FFFFFF;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-heading {
    margin-bottom: 50px;
    text-align: center;
}

.faq-label {
    margin-bottom: 15px;
    color: #1F6D46;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

.faq-heading h2 {
    margin-bottom: 20px;
    color: #222222;
    font-size: 40px;
    line-height: 1.2;
}

.faq-heading h2 span {
    display: block;
    color: #1F6D46;
}

.faq-heading > p {
    max-width: 600px;
    margin: auto;
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #DDEDE1;
    border-radius: 12px;
    background: #FFFFFF;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: #1F6D46;
    box-shadow:
        0 8px 20px rgba(76, 175, 112, 0.08);
}


/* =========================================================
   FAQ QUESTION
========================================================= */

.faq-question {
    width: 100%;
    padding: 21px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: none;
    background: transparent;
    color: #222222;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #1F6D46;
}

.faq-question i {
    color: #1F6D46;
    font-size: 14px;
    transition: transform 0.3s ease;
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 22px 21px;
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   FAQ ACTIVE
========================================================= */

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}


/* =========================================================
   KONTAK
========================================================= */

.kontak {
    padding: 100px 25px;
    background: #F3FAF5;
}

.kontak-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 80px;
}


/* =========================================================
   KONTAK CONTENT
========================================================= */

.kontak-content {
    max-width: 600px;
}

.kontak-label {
    margin-bottom: 15px;
    color: #1F6D46;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

.kontak-content h2 {
    margin-bottom: 20px;
    color: #222222;
    font-size: 40px;
    line-height: 1.2;
}

.kontak-content h2 span {
    display: block;
    color: #1F6D46;
}

.kontak-content > p {
    margin-bottom: 30px;
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   KONTAK INFO
========================================================= */

.kontak-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.kontak-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kontak-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E3F4E8;
    color: #1F6D46;
    font-size: 20px;
}

.kontak-item h3 {
    margin-bottom: 3px;
    color: #222222;
    font-size: 15px;
}

.kontak-item p {
    color: #777777;
    font-size: 13px;
}


/* =========================================================
   KONTAK CARD
========================================================= */

.kontak-card {
    padding: 45px 35px;
    border-radius: 16px;
    background: #FFFFFF;
    text-align: center;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.kontak-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.09);
}

.kontak-card-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E3F4E8;
    color: #1F6D46;
    font-size: 30px;
}

.kontak-card h3 {
    margin-bottom: 12px;
    color: #222222;
    font-size: 22px;
}

.kontak-card > p {
    margin-bottom: 25px;
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   KONTAK BUTTON
========================================================= */

.kontak-button {
    width: 100%;
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    background: #1F6D46;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.kontak-button:hover {
    background: #439D64;
    transform: translateY(-2px);
    box-shadow:
        0 8px 18px rgba(76, 175, 112, 0.25);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    border-top: 1px solid #333333;
    background: #222222;
    color: #FFFFFF;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 65px 25px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
    color: #1F6D46;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

.footer-brand p {
    max-width: 350px;
    color: #AAAAAA;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    width: fit-content;
    color: #AAAAAA;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1F6D46;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #AAAAAA;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #1F6D46;
}

.footer-contact i {
    font-size: 18px;
}

.footer-contact p {
    color: #999999;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.footer-bottom {
    padding: 20px 25px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    color: #888888;
    font-size: 12px;
}


/* =========================================================
   IMAGE SOURCE
========================================================= */

.image-source {
    position: absolute;
    right: 12px;
    bottom: 10px;
    z-index: 10;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    backdrop-filter: blur(3px);
}

.image-source a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.image-source a:hover {
    text-decoration: underline;
}


/* =========================================================
   TABLET
   769px - 1024px
========================================================= */

@media (max-width: 1024px) and (min-width: 769px) {

    .navbar {
        padding: 0 25px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* Produk slider: 2 card */
    .produk-slider .produk-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .kenapa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tentang-container {
        gap: 40px;
    }

    .tentang-content h2 {
        font-size: 34px;
    }

    .tentang-image img {
        height: 400px;
    }

    .faq {
        padding: 90px 25px;
    }

    .faq-heading h2 {
        font-size: 36px;
    }

    .kontak-container {
        gap: 40px;
    }

    .kontak-content h2 {
        font-size: 36px;
    }

    .kontak-card {
        padding: 35px 25px;
    }

    .footer-container {
        gap: 40px;
    }

    .cara-order {
        padding: 90px 25px;
    }

    .cara-order-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .cara-order-card {
        padding: 30px 18px;
    }

    .cara-order-card h3 {
        font-size: 18px;
    }
}


/* =========================================================
   MOBILE
   0px - 768px
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       NAVBAR
    ===================================================== */

    .navbar {
        height: 60px;
        padding: 0 20px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-whatsapp {
        width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 50%;
        font-size: 19px;
    }

    .nav-whatsapp span {
        display: none;
    }

    .nav-whatsapp i {
        font-size: 19px;
    }

    .hamburger {
        display: block;
    }


    /* =====================================================
       MOBILE MENU
       Smooth animation seperti source awal
    ===================================================== */

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: 0;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        overflow: hidden;
        opacity: 0;
        background: #ffffff;
        box-shadow:
            0 5px 10px rgba(0, 0, 0, 0.08);
        transform: translateY(-8px);
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            transform 0.35s ease;
    }

    .nav-menu.active {
        max-height: 500px;
        padding-top: 10px;
        padding-bottom: 10px;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateY(-8px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.10s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.20s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #eeeeee;
    }

    /* Mobile: warna berubah, tanpa underline */
    .nav-menu a:hover,
    .nav-menu a:focus,
    .nav-menu a:active {
        color: #1F6D46;
    }

    .nav-menu a::after,
    .nav-menu a:hover::after {
        display: none;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: 100vh;
        padding: 110px 20px 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
        font-size: 15px;
    }

    .hero-buttons {
        max-width: 220px;
        margin-right: auto;
        margin-left: auto;
        flex-direction: column;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
    }

    .slider-wrapper {
        width: 100%;
        max-width: 500px;
    }

    .hero-slide {
        width: 100%;
    }


    /* =====================================================
       PRODUK
       Mobile: 1 card
    ===================================================== */

    .produk {
        padding: 80px 20px;
    }

    .produk-heading {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .produk-heading h2 {
        font-size: 32px;
    }

    .produk-slider-wrapper {
        gap: 8px;
    }

    .produk-slider {
        flex: 1;
        min-width: 0;
        gap: 16px;
    }

    .produk-slider .produk-card {
        flex: 0 0 100%;
        min-width: 0;
    }

    .produk-image {
        height: 170px;
    }

    .produk-info {
        padding: 18px 15px 20px;
    }

    .produk-info h3 {
        font-size: 17px;
    }

    .produk-info > p:not(.produk-category) {
        min-height: auto;
        margin-bottom: 16px;
        font-size: 13px;
        line-height: 1.6;
    }

    .produk-slider-btn {
        width: 36px;
        height: 36px;
    }


    /* =====================================================
       KENAPA
    ===================================================== */

    .kenapa {
        padding: 80px 20px;
    }

    .kenapa-heading {
        margin-right: auto;
        margin-bottom: 30px;
        margin-left: auto;
        text-align: center;
    }

    .kenapa-heading h2 {
        font-size: 25px;
    }

    .kenapa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .kenapa-card {
        padding: 24px 14px;
        border-radius: 12px;
    }

    .kenapa-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 14px;
        border-radius: 11px;
        font-size: 19px;
    }

    .kenapa-card h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .kenapa-card p {
        font-size: 12px;
        line-height: 1.6;
    }


    /* =====================================================
       CARA ORDER
    ===================================================== */

    .cara-order {
        padding: 80px 20px;
    }

    .cara-order-heading {
        margin-right: auto;
        margin-bottom: 40px;
        margin-left: auto;
        text-align: center;
    }

    .cara-order-heading h2 {
        font-size: 32px;
    }

    .cara-order-heading > p {
        font-size: 15px;
    }

    .cara-order-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cara-order-card {
        padding: 30px 20px;
    }

    .cara-order-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .cara-order-card h3 {
        font-size: 18px;
    }

    .cara-order-card p {
        font-size: 14px;
    }


    /* =====================================================
       TENTANG
    ===================================================== */

    .tentang {
        padding: 80px 20px;
    }

    .tentang-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tentang-image {
        order: 1;
    }

    .tentang-content {
        max-width: 100%;
        order: 2;
        text-align: center;
    }

    .tentang-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .tentang-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .tentang-points {
        max-width: 320px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .tentang-image img {
        height: 280px;
    }


    /* =====================================================
       FAQ
    ===================================================== */

    .faq {
        padding: 80px 20px;
    }

    .faq-heading {
        margin-bottom: 35px;
    }

    .faq-heading h2 {
        font-size: 32px;
    }

    .faq-heading > p {
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 14px;
        line-height: 1.5;
    }

    .faq-answer p {
        padding: 0 16px 18px;
        font-size: 13px;
        line-height: 1.7;
    }


    /* =====================================================
       KONTAK
    ===================================================== */

    .kontak {
        padding: 80px 20px;
    }

    .kontak-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kontak-content {
        max-width: 100%;
        text-align: center;
    }

    .kontak-content h2 {
        font-size: 32px;
    }

    .kontak-content > p {
        font-size: 14px;
    }

    .kontak-info {
        max-width: 300px;
        margin: auto;
        text-align: left;
    }

    .kontak-card {
        padding: 35px 25px;
    }

    .kontak-card h3 {
        font-size: 20px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-container {
        padding: 50px 20px;
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-bottom {
        padding: 18px 20px;
    }
}


/* =========================================================
   SMALL TABLET
   600px - 768px
========================================================= */

@media (min-width: 600px) and (max-width: 768px) {

    .cara-order-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .cara-order-card {
        padding: 25px 12px;
    }

    .cara-order-card h3 {
        font-size: 17px;
        line-height: 1.35;
    }

    .cara-order-card p {
        font-size: 13px;
        line-height: 1.6;
    }
}