:root {
    --primary: #166534;
    --primary-dark: #14532d;
    --secondary: #22c55e;
    --accent: #fbbf24;

    --background: #f8fafc;
    --white: #ffffff;

    --text: #1f2937;
    --text-muted: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html{
    width:100%;
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    width:100%;
    max-width:100%;
    margin:0;
    padding:0;
    overflow-x:hidden;

    font-family:"Work Sans",sans-serif;
    background:var(--background);
    color:var(--text);
    line-height:1.6;
}

h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

html{
    scroll-behavior: smooth;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 30px;
    background: #ffffff;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 9999;

    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 28px;
    font-weight: bold;
    color: #1b5e20;
}

.logo img {
    height: 60px;
    width: auto;

    border-radius: 8px;

    transition: height .3s ease;
}


/* MENU NAVBAR */

.navbar nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar nav a {
    position: relative;

    text-decoration: none;
    color: var(--text);

    font-weight: 600;

    padding: 8px 0;

    transition: color .3s ease;
}


/* GARIS BAWAH */

.navbar nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 3px;

    background: var(--primary);

    border-radius: 10px;

    transition: width .3s ease;
}


/* HOVER */

.navbar nav a:hover {
    color: var(--primary);
}

.navbar nav a:hover::after {
    width: 100%;
}


/* LINK AKTIF */

.navbar nav a.active {
    color: var(--primary);
}

.navbar nav a.active::after {
    width: 100%;
}


/* =========================================================
   TOMBOL WHATSAPP DESKTOP
========================================================= */

.btn-navbar {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 24px;

    background: var(--primary);
    color: #ffffff;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;
}

.btn-navbar:hover {
    background: var(--primary-dark);
    color: #ffffff;
}


/* TOMBOL WHATSAPP DI MENU MOBILE */

.btn-navbar-mobile {
    display: none;
}


/* =========================================================
   HERO SECTION — VERSI BERSIH (FINAL)
   ---------------------------------------------------------*/

.hero {
     position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    height: auto;
   padding: 65px 1% 25px;
    overflow: hidden;
    color: #ffffff;

    background:
        radial-gradient(circle at 88% 20%, rgba(74, 222, 128, .35), transparent 42%),
        radial-gradient(circle at 75% 70%, rgba(34, 197, 94, .30), transparent 45%),
        radial-gradient(circle at 10% 85%, rgba(22, 163, 74, .25), transparent 40%),
        radial-gradient(circle at 15% 15%, rgba(134, 239, 172, .18), transparent 35%),
        radial-gradient(circle, rgba(255,255,255,.09) 1.5px, transparent 1.5px),
        linear-gradient(120deg, #053a20 0%, #064e2a 35%, #0a6b34 65%, #16a34a 100%);

    background-size: auto, auto, auto, auto, 22px 22px, auto;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;

    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 3px 3px;
    pointer-events: none;
    z-index: 1;
}

/* =====================================================
   CONTAINER — 2 KOLOM: TEKS (kiri) & MOCKUP (kanan)
===================================================== */

.hero-container {
    position: relative;
    z-index: 2;
    width: min(1500px, 90%);
    margin: 0 auto;
    padding: 100px 0 40px;  
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;
    gap: 40px;
}

/* =====================================================
   KOLOM KIRI — TEKS
===================================================== */

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 560px;
    top: -30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 17px;
    margin-bottom: 22px;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 30px;

    background: rgba(255,255,255,.04);
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.hero-badge i { color: #4ade80; }

.hero-content h1 {
    margin: 0 0 16px;
    max-width: 480px;
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content h1 span { color: #4ade80; }
.hero-content h1 strong { font-weight: 800; color: #ffffff; }

.hero-description {
    max-width: 460px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 48px;
    padding: 0 23px;

    border-radius: 30px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all .3s ease;
}

.btn-primary {
    background: #22c55e;
    color: #064e2a;
    box-shadow: 0 8px 20px rgba(34,197,94,.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(34,197,94,.35);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    color: #ffffff;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.08);
}

.hero-trust {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;

    width: max-content;
    max-width: none;

    margin-top: 28px;
}

.hero-trust div {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hero-trust strong {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.hero-trust span {
    font-size: 13px;
    color: rgba(255,255,255,.7);
}

/* =====================================================
   KOLOM KANAN — MOCKUP
===================================================== */

.hero-visual {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: -60px;
}

.main-mockup {
    position: relative;
    z-index: 5;
    width: clamp(380px, 43vw, 680px);
    animation: floating 5s ease-in-out infinite;
    left: -20px;
}

.main-mockup img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,.35));
    transition: transform .3s ease;
}

.main-mockup:hover img {
    transform: scale(1.03);
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-15px); }
}

/* =========================================================
   RESPONSIVE — TABLET BESAR (≤1100px)
========================================================= */
@media (max-width: 1100px) {
    .hero-container {
        width: 92%;
        grid-template-columns: 48% 52%;
    }
}

/* =========================================================
   RESPONSIVE — TABLET (≤900px): mulai stack 1 kolom
========================================================= */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 100px 0 50px;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 650px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: auto;
        height: clamp(320px, 60vw, 480px);
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤600px)
========================================================= */
@media (max-width: 600px) {
    .hero {
        min-height: auto;
        padding: 90px 0 40px;
    }

    .hero-container {
        width: 92%;
        padding: 0;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-trust {
        justify-content: center;
        gap: 8px 20px;
    }

    .hero-visual {
        height: auto;
        width: 100%;
        max-width: 320px;
        margin: 10px auto 0;
    }

    .main-mockup {
        width: 100%;
        animation: none; /* animasi dimatikan di HP biar hemat performa */
    }
}

/*==================== PORTFOLIO ====================*/

@keyframes floatCircle {


    0% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-25px)
            scale(1.08);
    }

    100% {
        transform:
            translateY(0)
            scale(1);
    }

}

.portfolio-section {
    padding-top: 120px;
}


.portfolio-section .section-header {
    margin: 0 auto 30px;
}

/* PORTOFOLIO PRODUK */

.section-header h2 {
    font-size: 52px;
    color: #106f49;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
}

.portfolio-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 20px;
}

.badge-title {
    display: inline-block;
    background-color: #DFF7E8;
    color: #0B7A53;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    max-width: 700px;

    margin:
        10px auto 12px;

    font-size: 50px;

    color: #6b7280;

    line-height: 1.8;

    text-align: center;
}

/* KATEGORI */

.produk-tabs {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 25px;
}

.produk-tab {
    padding: 13px 34px;

    border: 1px solid #d9e5df;

    border-radius: 40px;

    background: #ffffff;

    color: #106f49;

    font-size: 20px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
}

.produk-tab:hover {
    background: #d7f6e5;

    transform:
        translateY(-3px);
}

.produk-tab.active {
    background: #106f49;

    color: white;

    border-color: #106f49;
}


/* =========================================================
   MASONRY GRID (PORTOFOLIO)
========================================================= */

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    max-width: 1300px;
    margin: 0 auto;
}

.masonry-grid .masonry-item{

    aspect-ratio:1/1;
    border-radius:18px;
    overflow:hidden;
    background:#f7faf9;
    box-shadow:0 10px 30px rgba(16,111,73,.08);
    cursor:pointer;
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    transform:translateY(50px);

    transition:
        opacity .7s ease,
        transform .7s ease,
        box-shadow .4s ease;

}
.masonry-grid .masonry-item.show{

    opacity:1;

    transform:translateY(0);

}

.masonry-grid .masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 111, 73, .18);
}

.masonry-grid .masonry-item img,
.masonry-grid .masonry-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    box-sizing: border-box;
    transition: transform .5s ease;
}

.masonry-grid .masonry-item:hover img {
    transform: scale(1.06);
}

.masonry-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    background: rgba(20, 83, 45, 0);
    opacity: 0;
    transition: .35s ease;
}

.masonry-item:hover::after {
    background: rgba(20, 83, 45, .45);
    opacity: 1;
}

.load-more-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 25px;
    text-align: center;
}

.btn-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin: 25px auto 10px;

    padding: 13px 28px;

    background: #166534;
    color: #ffffff;

    border: none;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(22, 101, 52, 0.18);

    transition: all 0.3s ease;
}

.btn-load-more {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-load-more:hover {
    background: #14532d;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(22, 101, 52, 0.25);
}

.btn-load-more:hover span {
    transform: translateY(3px);
}

.btn-load-more:active {
    transform: translateY(-1px);
}

/* =========================================================
   LIGHTBOX (popup gambar)
========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 30, 20, .92);
    backdrop-filter: blur(6px);
}

.lightbox.active {
    display: flex;
    animation: fadeUpLightbox .3s ease;
}

@keyframes fadeUpLightbox {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-img {
    max-width: 88%;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .5);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: .3s ease;
}

.lightbox-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: .3s ease;
}

.lightbox-nav:hover {
    background: var(--secondary);
}

.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }


/* =========================================================
   RESPONSIVE — MASONRY
========================================================= */

@media (max-width: 1024px) {
    .masonry-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .masonry-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

/* =========================================================
   MENGAPA MEMILIH KAMI
========================================================= */

.why-choose-us{
    width: 100%;
    padding:80px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-heading {
    text-align: center;

    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;

    background: #dcfce7;

    color: #15803d;

    padding: 8px 20px;

    border-radius: 30px;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 20px;
}

.section-title {
    font-size: 50px;

    font-weight: 700;

    color: #1f2937;

    margin-bottom: 20px;

    line-height: 1.2;
}

.section-title span {
    color: #15803d;
}

.section-subtitle {
    max-width: 760px;

    margin: auto;

    font-size: 18px;

    color: #64748b;

    line-height: 1.8;
}


/* FEATURE GRID */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

    margin-top: 60px;
}

.feature-card {
    background: #ffffff;

    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    position: relative;

    overflow: hidden;

    border:
        1px solid #e8efe8;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;
}

.feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 6px;

    background:
        linear-gradient(
            90deg,
            #1d7f44,
            #63c174
        );
}

.feature-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .15);
}

.feature-icon {
    width: 80px;

    height: 80px;

    margin:
        0 auto 25px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #1d7f44,
            #35b56a
        );

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 32px;

    box-shadow:
        0 12px 25px
        rgba(29, 127, 68, .25);
}

.feature-card h3 {
    font-size: 28px;

    font-weight: 700;

    margin-bottom: 18px;

    color: #163020;
}

.feature-card p {
    font-size: 17px;

    line-height: 1.8;

    color: #666;
}


/* ===========================
   TESTIMONIAL
=========================== */

.testimonial-wrapper{
    width:100vw;
    margin-left:calc(50% - 50vw);
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:none;
}

.testimonial-wrapper::-webkit-scrollbar{
    display:none;
}

.testimonial-track{
    display:flex;
    gap:30px;
    padding:20px 40px;
    width:max-content;
}

.testimonial-track:active{
    cursor:grabbing;
}

.testimoni-section {
    padding: 120px 5% 80px;
    background:
        linear-gradient(
            135deg,
            #f3f9f4,
            #ffffff
        );
}
.badge-title {
    display: inline-block;
    background-color: #DFF7E8;
    color: #0B7A53;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -40px;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    color: #035a2e;
    line-height: 1.2;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.section-title span {
    color: #16A34A;
}
.testimoni-text {
    color: #6c757d;      /* Abu-abu */
    font-size: 18px;
    font-weight: 400;    /* Normal (tidak bold) */
    line-height: 1.8;
    text-align: center;
    max-width: 750px;    /* Agar teks tidak terlalu lebar */
    margin: 0 auto 40px; /* Posisi di tengah */
}


#testimoni{
    scroll-margin-top:100px;
}



.why-choose-us{
    padding:80px 8%;
    background:#ECFDF5;
    text-align:center;
}

.section-header {
    text-align: center;

    max-width: 700px;

    margin:
        40px auto 70px;

    color: #6b7280;
}

.testimonial-card{
    flex:0 0 320px;
width:320px;
    height:240px;

    background:linear-gradient(
        135deg,
        #ffffff,
        #ecfdf5
    );

    border-radius:20px;
    padding:30px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

    scroll-snap-align:start;

    flex-shrink:0;

    transition:.3s;


    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;
}

#testimoni{
    scroll-margin-top:100px;

}

.testimonial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            #16a34a,
            #22c55e,
            #4ade80
        );
}

.testimonial-card:hover {
    transform:
        translateY(-10px)
        scale(1.03);

    box-shadow:
        0 25px 45px
        rgba(16, 111, 73, .18);
}

.testimonial-card h3 {
    margin-top: 15px;
}

.testimonial-card span {
    color: #22c55e;
}

.rating {
    color: #ffd700;

    margin-top: 15px;

    font-size: 18px;
}

/* ===========================
   APA KATA KLIEN
=========================== */

.chat-title{
    text-align: center;
    margin-bottom: 50px;
}

.chat-title .badge-title{
    display: inline-block;
    padding: 12px 30px;
    background: #DFF7E8;
    color: #0B7A53;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 80px;
}

.chat-title h2{
    margin-top: 20px;
    font-size: 50px;
    font-weight: 700;
    color: #035A2E;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.chat-title p{
    margin-top: 15px;
    font-size: 18px;
    color: #6B7280;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.chat-klien-section{
    padding-top: 0;
    margin-top: 0;
}
.chat-slider{

    display:flex;
    align-items:center;
    gap:20px;
    scroll-snap-type:x mandatory;

    scroll-behavior:smooth;

    -webkit-overflow-scrolling:touch;

    scrollbar-width:none;

    cursor:grab;
}

.chat-slider{

    cursor:grab;

    user-select:none;

}

.chat-slider.dragging{

    cursor:grabbing;

    scroll-behavior:auto;
}

.chat-wrapper{
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    width:100%;
    scrollbar-width:none;
}

.chat-wrapper::-webkit-scrollbar{
    display:none;
}


.chat-track{
    display:flex;
    gap:25px;
    padding:10px;
}


.chat-card{
    flex:0 0 320px;

    border-radius:20px;

    overflow:hidden;   /* WAJIB */

    background:#fff;
}

.chat-animate{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .8s ease, transform .8s ease;
}

.chat-animate.show{
    opacity:1;
    transform:translateY(0);
}

.chat-card img{

    width:100%;
    display:block;

}

.chat-btn{

    width:48px;
    height:48px;

    border:none;

    border-radius:50%;

    background:#166534;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.chat-btn:hover{

    background:#14532d;

}

@media(max-width:768px){

.chat-card{

    flex:0 0 90%;

}

.chat-btn{

    display:none;

}

}


/*=========================
      PRICE LIST
==========================*/

.price-title{
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.price-title .badge-title{
    display: inline-block;
    padding: 12px 30px;
    background: #DFF7E8;
    color: #0B7A53;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 80px;
}

.price-title h2{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 700;
    color: #035A2E;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.price-title h2 span{
    color: #16A34A;
}

.price-title p{
    font-size: 18px;
    color: #6B7280;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-section{
    padding:50px 5% 20px;
    background:#f9fcfa;

}

.price-wrapper{

    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:60px;

}

.price-card{

    display: flex;

    flex-direction: column;

    width: 350px;

    min-height: 600px;


    background:#fff;

    border-radius:25px;

    padding:35px 30px;

    border:2px solid #d8f0df;

    text-align:center;

    position:relative;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.price-card:hover{

    transform:translateY(-10px);

}

.price-card.featured{
    height:650px;
    background:#166534;
    color:#fff;
    transform:scale(1.05);
}

.price-header{

    background:#1f8d46;

    color:#fff;

    padding:15px;

    border-radius:15px;

    margin-bottom:25px;

}

.price-header h3{

    margin:0;

    font-size:24px;

}

.price-value{

    font-size:56px;

    font-weight:700;

    color:#166534;

    margin-bottom:25px;

}

.price-card.featured .price-value{

    color:#fff;

}

.price-value span{

    font-size:24px;

}

.price-card ul{

    list-style:none;

    padding:0;

    margin:0 0 35px;

    text-align:left;

}

.price-card li{

    margin:12px 0;

    font-size:15px;

}

.price-btn{

    margin-top: auto;

    display:block;

    padding:14px;

    border-radius:50px;

    background:#166534;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.price-btn:hover{

    background:#14532d;

}

.price-card.featured .price-btn{

    background:#fff;

    color:#166534;

}

.best{

    position:absolute;

    top:-15px;

    right:20px;

    background:#FFC107;

    color:#000;

    padding:8px 14px;

    font-size:15px;

    border-radius:30px;

    font-weight:700;

}


/* ========================================
   RESPONSIVE TABLET
======================================== */

@media (max-width: 900px) {

    .layanan-header h2 {

        font-size: 38px;

    }


    .layanan-grid {
           grid-template-columns: repeat(2, 1fr);
    }


    .layanan-card {

        grid-column:
            span 1;

    }


    .layanan-card:nth-child(4),
    .layanan-card:nth-child(5) {

        grid-column:
            auto;

    }

}


/* ========================================
   RESPONSIVE HP
======================================== */

.kontak{
    padding: 80px 8%;
    background:
    linear-gradient(135deg)
   #ECFDF5;
}

@media (max-width: 600px) {

    .layanan-section {


        padding:
            70px 5%;

    }


    .layanan-header {

        margin-bottom:
            40px;

    }


    .layanan-header h2 {

        font-size:
            32px;

    }


    .layanan-header p {

        font-size:
            15px;

    }


    .layanan-grid {

        grid-template-columns:
            1fr;

    }


    .layanan-card,
    .layanan-card:nth-child(4),
    .layanan-card:nth-child(5) {

        grid-column:
            auto;

    }


    .layanan-image {

        height:
            200px;

    }


    .layanan-action {

        flex-direction:
            column;

        align-items:
            stretch;

    }


    .btn-layanan,
    .btn-contoh {

        justify-content:
            center;

    }


    .layanan-note {

        align-items:
            flex-start;

        text-align:
            left;

    }

}


/* =========================================================
   KONTAK
========================================================= */

.kontak {
    padding: 50px 8%;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8faf8
        );
}


.contact-container {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;

    max-width: 1200px;

    margin: 0 auto;
}


/* CONTACT INFO */

.contact-info {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contact-card {
    display: flex;

    align-items: center;

    gap: 25px;

    background: #ffffff;

    padding: 25px 30px;

    border-radius: 20px;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, .08);

    transition: .3s;
}

.contact-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 20px 45px
        rgba(16, 111, 73, .15);
}

.contact-icon {
    width: 55px;

    height: 55px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: #e8f5e9;

    color: #166534;

    font-size: 25px;

    flex-shrink: 0;
}

.contact-card h3 {
    margin:
        0 0 8px;

    color: #106f49;

    font-size: 18px;
}

.contact-card p {
    margin: 0;

    color: #555;
}


/* CONTACT FORM */

.contact-form {
    background: white;

    padding: 40px;

    border-radius: 25px;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, .08);
}

.contact-form h2 {
    color: #106f49;

    margin-bottom: 10px;
}

.contact-form p {
    color: #666;

    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 15px 18px;

    margin-bottom: 15px;

    border:
        1px solid #ddd;

    border-radius: 12px;

    outline: none;

    font-size: 15px;
}

.contact-form textarea {
    height: 120px;

    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #22c55e;
}

.contact-form button {
    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 12px;

    background: #1b5e20;

    color: white;

    font-size: 16px;

    cursor: pointer;

    transition: .3s;
}

.contact-form button:hover {
    background: #14532d;
}


/* =========================================================
   TOMBOL WHATSAPP
========================================================= */

.btn-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    background:
        linear-gradient(
            135deg,
            #22c55e,
            #16a34a
        );

    color: white;

    padding: 12px 24px;

    border-radius: 50px;

    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 8px 20px
        rgba(34, 197, 94, .35);

    transition: .3s ease;

    position: relative;

    overflow: hidden;
}

.btn-whatsapp:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(34, 197, 94, .5);

    color: white;
}

.btn-whatsapp i {
    font-size: 20px;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   PRICING / PILIH PAKET
========================================================= */

.pricing-section {
    padding: 50px 8%;
    background: linear-gradient(
        180deg,
        #f7faf9,
        #ffffff
    );
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}


/* HEADER */

.pricing-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 20px;

    border-radius: 30px;

    background: #dcfce7;
    color: #166534;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 20px;
}

.pricing-header h2 {
    font-size: 46px;
    color: #14532d;
    margin-bottom: 15px;
}

.pricing-header p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}


/* TAB */

.service-tabs {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 20px;

    border: 1px solid #d9e5df;

    border-radius: 30px;

    background: #ffffff;

    color: #166534;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.tab-btn:hover {
    background: #dcfce7;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #166534;
    color: #ffffff;
    border-color: #166534;
    box-shadow: 0 8px 20px rgba(22, 101, 52, .2);
}


/* MAIN CARD */

.pricing-main-card {
    background: #ffffff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .08);

    border: 1px solid #edf3ef;
}


/* GRID */

.pricing-grid {
    display: grid;

    grid-template-columns:
        260px 1fr;

    gap: 30px;

    padding: 35px;
}


/* INFO LAYANAN */

.service-info-col {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #f1f8f3;

    border-radius: 20px;

    padding: 25px;
}

.service-title-wrap {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.service-icon-box {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #166534;

    color: #ffffff;

    font-size: 20px;
}

.service-title-wrap h3 {
    color: #14532d;

    font-size: 22px;
}

.service-desc {
    color: #64748b;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 25px;
}


/* FEATURE */

.feature-list {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.feature-list li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #374151;

    font-size: 14px;
}

.check-icon {
    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dcfce7;

    color: #15803d;

    font-size: 11px;

    flex-shrink: 0;
}


/* GARANSI */

.guarantee-box {
    display: flex;

    gap: 12px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #d9e5df;
}

.guarantee-icon {
    color: #166534;

    font-size: 22px;
}

.guarantee-box h4 {
    color: #14532d;

    font-size: 14px;

    margin-bottom: 4px;
}

.guarantee-box p {
    color: #64748b;

    font-size: 12px;

    line-height: 1.5;
}


/* PAKET */

.packages-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    align-items: stretch;
}

.package-card {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    position: relative;

    padding: 25px;

    border-radius: 18px;

    border: 1px solid #e5e7eb;

    background: #ffffff;

    transition: .3s ease;
}

.package-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .08);
}


/* POPULER */

.popular-card {
    background: #166534;

    color: #ffffff;

    border-color: #166534;

    box-shadow:
        0 15px 35px rgba(22, 101, 52, .25);
}

.popular-card:hover {
    box-shadow:
        0 20px 45px rgba(22, 101, 52, .3);
}

.popular-badge {
    position: absolute;

    top: -12px;

    left: 50%;

    transform: translateX(-50%);

    white-space: nowrap;

    padding: 6px 14px;

    background: #fbbf24;

    color: #78350f;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 700;
}


/* HEADER PAKET */

.package-card-header {
    text-align: center;
}

.pkg-top-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: #dcfce7;

    color: #166534;

    font-size: 18px;
}

.package-card h4 {
    color: #14532d;

    font-size: 19px;

    margin-bottom: 12px;
}

.popular-card h4 {
    color: #ffffff;
}


/* HARGA */

.pkg-price {
    display: flex;

    align-items: baseline;

    justify-content: center;

    gap: 4px;

    color: #166534;

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 10px;
}

.currency {
    font-size: 14px;

    font-weight: 600;
}

.highlight-price {
    color: #ffffff;
}

.pkg-desc {
    min-height: 55px;

    color: #64748b;

    font-size: 12px;

    line-height: 1.6;
}

.popular-card .pkg-desc {
    color: #dcfce7;
}


/* GARIS */

.pkg-divider {
    border: none;

    border-top: 1px solid #e5e7eb;

    margin: 20px 0;
}

.dark-divider {
    border-color: rgba(255,255,255,.25);
}


/* FITUR PAKET */

.pkg-features {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 11px;
}

.pkg-features li {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #4b5563;

    font-size: 12px;

    line-height: 1.5;
}

.pkg-features li span {
    color: #16a34a;

    flex-shrink: 0;
}

.dark-features li {
    color: #f0fdf4;
}

.dark-features li span {
    color: #bbf7d0;
}


/* TOMBOL */

.pkg-btn {
    width: 100%;

    margin-top: 25px;

    padding: 12px;

    border-radius: 10px;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.outline-btn {
    background: #ffffff;

    color: #166534;

    border: 1px solid #166534;
}

.outline-btn:hover {
    background: #166534;

    color: #ffffff;
}

.solid-btn {
    background: #ffffff;

    color: #166534;

    border: none;
}

.solid-btn:hover {
    background: #dcfce7;
}


/* FOOTER CARD */

.pricing-card-footer {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

    padding: 25px 35px;

    background: #f8fafc;

    border-top: 1px solid #edf3ef;
}

.footer-info-item {
    display: flex;

    align-items: center;

    gap: 15px;
}

.footer-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: #dcfce7;

    color: #166534;
}

.footer-info-item h5 {
    color: #14532d;

    font-size: 14px;

    margin-bottom: 4px;
}

.footer-info-item p {
    color: #64748b;

    font-size: 12px;
}

.space-between {
    justify-content: space-between;
}

.footer-info-left {
    display: flex;

    align-items: center;

    gap: 15px;
}

.consult-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 10px;

    background: #166534;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    transition: .3s ease;
}

.consult-btn:hover {
    background: #14532d;

    transform: translateY(-2px);
}


/* CATATAN */

.pricing-footer-note {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 25px;

    color: #64748b;

    font-size: 13px;

    text-align: center;
}

.pricing-footer-note i {
    color: #166534;
}
/*==================================================
        HAMBURGER MENU
==================================================*/

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    z-index:1001;
}

.menu-toggle span{

    width:30px;
    height:3px;

    background:#166534;

    border-radius:20px;

    transition:.3s;

}

@media(max-width:768px){
    .navbar{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-direction:row;
        padding:14px 15px;
        gap: 8px;
    }

    .menu-toggle{
        display:flex;
    }

    .logo {
        font-size: 18px;
        gap: 6px;
    }

    .logo img {
        height: 26px;
    }

    .btn-navbar {
        padding: 10px 22px;
        font-size: 13px;
        white-space: nowrap;
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .masonry-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}
    .service-info-col {
        padding: 25px;
    }



@media (max-width: 900px) {

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-footer {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .pricing-section {
        padding: 70px 5%;
    }

    .pricing-header h2 {
        font-size: 32px;
    }

    .service-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .pricing-grid {
        padding: 20px;
    }

    .pricing-card-footer {
        padding: 20px;
    }

    .space-between {
        flex-direction: column;
        align-items: flex-start;
    }

    .consult-btn {
        width: 100%;
    }

}

#pesanError {
    background-color: #fee2e2;
    border-left: 3px solid #dc2626;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 8px;
}

.proses-kerja {
    margin-top: 3rem;
}

.proses-label {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.proses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.proses-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.proses-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e6f4ea;
    color: #16793f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin: 0 auto 8px;
}

.proses-card p {
    font-size: 15px;
    margin: 0;
    color: #374151;
}

/* =========================================================
   FIX HERO MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;

        min-height: auto;

        padding: 80px 20px 40px;

        text-align: left;

        gap: 30px;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-image {
        width: 100%;
        max-width: 320px;
        min-width: 0;

        height: auto;
    }

    .floating-logo {
        width: 100%;
        max-width: 320px;
    }

    .statistik {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        width: 100%;
    }
}

/* ===== FIX HERO MOBILE — biar tidak kepotong ===== */
@media (max-width: 768px) {
    .hero {
        height: auto !important;
        min-height: 100vh;
        overflow: visible !important;
        padding: 90px 20px 40px !important;
    }
}

@media (max-height: 700px) {
    .portfolio-section {
        padding-top: 15px;
    }

    .portfolio-badge {
        margin-bottom: 6px;
    }

    .section-header h2 {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .subtitle {
        margin: 6px auto 12px;
        font-size: 14px;
    }

    .produk-tabs {
        margin-bottom: 12px;
    }

    .produk-tab {
        padding: 12px 26px;
        font-size: 16px;
    }

    .masonry-grid {
        gap: 12px;
    }

    .masonry-grid .masonry-item img,
    .masonry-grid .masonry-item video {
        padding: 6px;
    }
}

/* =========================
   PORTOFOLIO HEADER
========================= */

.portfolio-section .portfolio-badge {
    padding: 5px 20px;
    margin-bottom: 10px;
}

.portfolio-section .portfolio-badge .badge-title {
    font-size: 16px;
    letter-spacing: 2px;
}

.portfolio-section .section-header h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.portfolio-section .section-header .subtitle {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.8;
}

/* =========================
   INTERAKTIF PORTOFOLIO
========================= */

.masonry-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Card naik dan membesar sedikit */
.masonry-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Gambar */
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Zoom gambar */
.masonry-item:hover img {
    transform: scale(1.08);
}


/* =========================
   OVERLAY HOVER
========================= */

.masonry-item::after {
    content: "🔍";
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(22, 101, 52, 0.65);
    color: white;

    font-size: 18px;
    font-weight: 700;

    opacity: 0;
    transform: scale(0.9);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    pointer-events: none;
}

.masonry-item:hover::after {
    opacity: 1;
    transform: scale(1);
}


/* =========================
   ANIMASI SAAT ITEM MUNCUL
========================= */




/* =========================
   TOMBOL MUAT LEBIH BANYAK
========================= */

#loadMoreBtn {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

#loadMoreBtn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(22, 101, 52, 0.25);
}

#loadMoreBtn:active {
    transform: translateY(0) scale(0.96);
}

/* ANIMASI ITEM PORTOFOLIO SAAT SCROLL */

.masonry-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.masonry-item.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
  .hero-visual {
    position: relative;
    width: 100%;
    overflow: visible;
    height: clamp(360px, 48vw, 540px);
    transform: translateY(-50px);
}

  .main-mockup,
  .portfolio-card {
    position: static;      
    width: 100% !important;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none !important;
    animation: none;
  }

  .main-mockup {
    grid-column: 1 / -1;   
    order: -1;             
  }
}

 

/* =========================================================
   PERBAIKAN FINAL HERO MOBILE (SEMUA MOCKUP MUNCUL LENGKAP)
========================================================= */

@media (max-width: 600px) {
    /* 1. Atur container hero utama menjadi fleksibel ke bawah */
    .hero {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: unset !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 40px 15px !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .hero-container {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        transform: none !important;
        left: unset !important;
        top: unset !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 20px !important;
    }

    .hero-content {
        position: relative !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 2. Urutan 1: Judul */
    .hero h1, 
    .hero-content h1 {
        order: 1 !important;
        position: relative !important;
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin: 0 0 12px 0 !important;
        display: block !important;
    }

    /* 3. Urutan 2: Paragraf Deskripsi */
    .hero p, 
    .hero-content p,
    .hero-description {
        order: 2 !important;
        position: relative !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin: 0 0 20px 0 !important;
        display: block !important;
    }

    /* 4. Urutan 3: Tombol Aksi */
    .hero-buttons, 
    .hero-cta,
    .hero .cta-buttons {
        order: 3 !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 260px !important;
        margin: 0 0 25px 0 !important;
    }

    .hero-buttons a, 
    .hero-cta button,
    .hero-cta a {
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        padding: 10px 15px !important;
        font-size: 14px !important;
    }

    /* 5. Area Visual Pembungkus Mockup Kanan */
    .hero-visual {
        order: 4 !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        margin-top: 10px !important;
    }

    /* 6. Paksa SEMUA Laptop Utama & Kartu Portofolio Kecil Tampil Berurutan ke Bawah */
    .main-mockup,
    .portfolio-card,
    .portfolio-one,
    .portfolio-two,
    .portfolio-three,
    .portfolio-four {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        max-width: 270px !important;
        height: auto !important;
        top: unset !important;
        left: unset !important;
        right: unset !important;
        bottom: unset !important;
        transform: none !important;
        margin: 8px auto !important;
        float: none !important;
        animation: none !important;
    }

    /* Atur agar laptop utama berada di urutan teratas dalam area visual */
    .main-mockup {
        order: 1 !important;
        max-width: 300px !important;
    }
}

/* =========================
   SCROLL ANIMATION FIX
========================= */

.animate-section{
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.animate-section.show{
    opacity: 1;
    transform: translateY(0);
}

.animate-item{
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.animate-item.show{
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   HERO INTERACTIVE PREMIUM
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* ================================
   BACKGROUND GLOW
================================ */

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: 10%;
    right: -150px;

    background: radial-gradient(
        circle,
        rgba(34, 197, 94, 0.25),
        transparent 70%
    );

    filter: blur(30px);
    pointer-events: none;
    z-index: -2;

    animation: heroOrb 8s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -200px;
    left: -100px;

    background: radial-gradient(
        circle,
        rgba(251, 191, 36, 0.12),
        transparent 70%
    );

    filter: blur(40px);
    pointer-events: none;
    z-index: -2;

    animation: heroOrb2 10s ease-in-out infinite alternate;
}

@keyframes heroOrb {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-80px, 60px) scale(1.2);
    }
}

@keyframes heroOrb2 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(100px, -60px);
    }
}


/* ================================
   HERO VISUAL
================================ */

.hero-visual {
    position: relative;
    perspective: 1400px;
    transform-style: preserve-3d;
}


/* ================================
   MOCKUP
================================ */

.main-mockup {
    position: relative;
    z-index: 10;

    transform-style: preserve-3d;

    will-change: transform;

    transition:
        transform 0.12s cubic-bezier(.2,.8,.2,1),
        filter 0.4s ease;

    filter:
        drop-shadow(
            0 35px 45px
            rgba(0, 0, 0, 0.25)
        );
}


/* Shine pada mockup */

.main-mockup::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );

    transform: skewX(-20deg);

    pointer-events: none;

    transition: left 0.8s ease;
}

.main-mockup:hover::after {
    left: 130%;
}


/* ================================
   FLOATING CARDS
================================ */

.float-card {
    transition:
        transform 0.15s ease-out,
        box-shadow 0.3s ease,
        filter 0.3s ease;

    will-change: transform;

    cursor: pointer;
}

.float-card:hover {
    filter: brightness(1.08);

    box-shadow:
        0 25px 50px
        rgba(0,0,0,0.25),
        0 0 25px
        rgba(34,197,94,0.2);

    z-index: 50;
}


/* ================================
   CARD GLOW
================================ */

.float-card::before {
    content: "";

    position: absolute;

    inset: -2px;

    border-radius: inherit;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.4),
        transparent,
        rgba(34,197,94,0.4)
    );

    opacity: 0;

    transition: opacity 0.3s ease;

    pointer-events: none;
}

.float-card:hover::before {
    opacity: 1;
}


/* ================================
   MOUSE GLOW
================================ */

.hero-mouse-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    pointer-events: none;

    background: radial-gradient(
        circle,
        rgba(74, 222, 128, 0.18),
        transparent 65%
    );

    filter: blur(10px);

    transform: translate(-50%, -50%);

    z-index: 1;

    opacity: 0;

    transition: opacity 0.4s ease;
}


/* ================================
   BUTTON INTERACTION
================================ */

.btn-primary,
.btn-secondary {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);

    box-shadow:
        0 15px 30px
        rgba(34,197,94,0.35);
}

.btn-secondary:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 25px
        rgba(0,0,0,0.15);
}


/* ================================
   BADGE
================================ */

.hero-badge {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px
        rgba(255,255,255,0.12);
}


/* ================================
   TRUST STATS
================================ */

.hero-trust div {
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.hero-trust div:hover {
    transform: translateY(-6px) scale(1.03);
}


/* ================================
   REDUCED MOTION
================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

}

/* =========================================
   ENTRANCE ANIMATION
   TETAP MEMPERTAHANKAN INTERAKTIF SEBELUMNYA
========================================= */

/* Konten masuk dari bawah */
.hero-content {
    animation: heroContentEntrance 1s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: 0.2s;
}

@keyframes heroContentEntrance {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Badge muncul lebih dulu */
.hero-badge {
    animation: badgeEntrance 0.7s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: 0.35s;
}

@keyframes badgeEntrance {
    from {
        opacity: 0;
        transform: translateY(-25px) scale(0.85);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* Judul muncul dengan efek blur */
.hero-content h1 {
    animation: titleEntrance 0.9s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: 0.55s;
}

@keyframes titleEntrance {
    from {
        opacity: 0;
        transform: translateY(35px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


/* Deskripsi */
.hero-content > p {
    animation: descriptionEntrance 0.8s ease-out both;
    animation-delay: 0.8s;
}

@keyframes descriptionEntrance {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Tombol */
.hero-buttons {
    animation: buttonsEntrance 0.8s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: 1s;
}

@keyframes buttonsEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* Statistik */
.hero-trust {
    animation: trustEntrance 0.8s ease-out both;
    animation-delay: 1.2s;
}

@keyframes trustEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   MOCKUP MASUK DARI KANAN
========================================= */

.hero-visual {
    animation: visualEntrance 1.2s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: 0.3s;
}

@keyframes visualEntrance {
    from {
        opacity: 0;
        transform:
            translateX(100px)
            scale(0.8)
            rotateY(-15deg);
        filter: blur(10px);
    }

    70% {
        transform:
            translateX(-10px)
            scale(1.03)
            rotateY(3deg);
    }

    to {
        opacity: 1;
        transform:
            translateX(0)
            scale(1)
            rotateY(0);
        filter: blur(0);
    }
}


/* =========================================
   FLOAT CARD MUNCUL BERGANTIAN
========================================= */

.float-card {
    opacity: 0;
    animation: cardEntrance 0.8s cubic-bezier(.16, 1, .3, 1) forwards;
}

.float-card:nth-child(1) {
    animation-delay: 1s;
}

.float-card:nth-child(2) {
    animation-delay: 1.25s;
}

.float-card:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform:
            translateY(50px)
            scale(0.7)
            rotate(-8deg);
    }

    70% {
        transform:
            translateY(-8px)
            scale(1.05)
            rotate(2deg);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1)
            rotate(0);
    }
}

@media (max-width: 768px) {

    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        min-height: auto;
        height: auto;

        padding: 40px 20px 20px;

        overflow: hidden;
    }

    /* =========================
       URUTAN KONTEN
    ========================= */

    .hero-content {
        order: 1;

        width: 100%;
        max-width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        position: relative;
        top: 0;
        left: 0;

        text-align: center;
    }

    /* Badge */
    .hero-badge {
        order: 1;
        margin-bottom: 20px;
    }

    /* Judul */
    .hero-content h1 {
        order: 2;

        width: 100%;
        margin-bottom: 15px;

        font-size: 30px;
        line-height: 1.15;
    }

    /* Deskripsi */
    .hero-content > p {
        order: 3;

        max-width: 500px;
        margin-bottom: 20px;

        font-size: 14px;
        line-height: 1.5;
    }

    /* Tombol */
    .hero-buttons {
        order: 4;

        display: flex;
        flex-direction: column;
        align-items: center;

        width: 100%;
        gap: 10px;

        margin-bottom: 20px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Statistik */
    .hero-trust {
        order: 5;

        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
        gap: 15px;

        margin-top: 5px;
    }

    /* =========================
       MOCKUP
    ========================= */

    .hero-visual {
        order: 2;

        width: 100%;

        display: flex;
        justify-content: center;
        align-items: center;

        position: relative;

        margin-top: 25px;
        margin-left: 0;

        transform: none;
    }

    .main-mockup {
        position: relative;

        width: 90%;
        max-width: 400px;

        left: 0;
    }

}

/* =========================================
   IPAD / TABLET FIX
========================================= */

@media (min-width: 769px) and (max-width: 1024px) {

    /* =========================
       NAVBAR
    ========================= */

    .navbar,
    header {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .nav-container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 50px 20px 30px;

        box-sizing: border-box;
        overflow: hidden;
    }


    /* =========================
       CONTENT
    ========================= */

    .hero-content {
        width: 100%;
        max-width: 700px;

        margin: 0 auto;
        padding: 0;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;

        position: relative;
        left: 0;
        right: 0;
        top: 0;
    }


    /* =========================
       VISUAL
    ========================= */

    .hero-visual {
        width: 100%;
        max-width: 700px;

        margin: 40px auto 0;
        padding: 0;

        display: flex;
        justify-content: center;
        align-items: center;

        position: relative;

        left: 0;
        right: 0;
    }


    /* =========================
       MOCKUP
    ========================= */

    .main-mockup {
        display: block;

        width: 70%;
        max-width: 550px;

        margin-left: auto !important;
        margin-right: auto !important;

        position: relative;

        left: 0 !important;
        right: auto !important;
    }

}

/* =========================================
   FIX MOCKUP SEMUA UKURAN HP
========================================= */

@media (max-width: 768px) {

    .hero-visual {
        width: 100%;
        max-width: 100%;

        display: flex;
        justify-content: center;
        align-items: center;

        margin: 35px auto 0;
        padding: 0;

        position: relative;
        left: 0 !important;
        right: 0 !important;
    }

    .main-mockup {
        position: relative;

        display: block;

        width: 85%;
        max-width: 400px;

        margin-left: auto !important;
        margin-right: auto !important;

        left: 0 !important;
        right: 0 !important;
    }

}

/* =========================================
   NAVBAR IPAD / TABLET
   769px - 1024px
========================================= */

@media (min-width: 769px) and (max-width: 1024px) {

    /* Navbar utama */
    .navbar {
        width: 100%;
        max-width: 100%;
        height: 60px;

        display: flex;
        align-items: center;

        padding: 10px 20px;

        box-sizing: border-box;
        overflow: hidden;
    }

    /* Logo */
    .logo {
        flex-shrink: 0;
    }

    /* Sembunyikan menu desktop */
    #nav-menu {
        display: none !important;
    }

    /* Sembunyikan tombol Pesan Sekarang desktop */
    .btn-navbar {
        display: none !important;
    }

    /* Tampilkan hamburger */
    .menu-toggle {
        display: flex !important;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 5px;

        margin-left: auto;

        width: 35px;
        height: 35px;

        cursor: pointer;

        flex-shrink: 0;

        z-index: 1001;
    }

    .menu-toggle span {
        display: block;

        width: 24px;
        height: 3px;

        background: #166534;

        border-radius: 10px;
    }

}

/* =========================================
   HAMBURGER MENU - FINAL FIX
========================================= */

/* Default */
.menu-toggle {
    display: none;
}

/* ==============================
   TABLET & MOBILE
   0 - 1024px
============================== */

@media (max-width: 1024px) {

    /* NAVBAR */
    .navbar {
        position: relative;
        z-index: 10001;
    }

    /* HAMBURGER */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;

        width: 40px;
        height: 40px;

        margin-left: auto;

        cursor: pointer;

        position: relative;
        z-index: 10003;
    }

    .menu-toggle span {
        display: block;

        width: 24px;
        height: 3px;

        background: #166534;

        border-radius: 10px;
    }

    /* SEMBUNYIKAN TOMBOL DESKTOP */
    .btn-navbar {
        display: none !important;
    }

    /* =========================
       MENU
    ========================= */

    #nav-menu {
        display: flex !important;

        position: fixed;

        top: 60px;
        right: -280px;

        width: 250px;
        max-width: calc(100vw - 30px);

        height: auto;

        background: #ffffff;

        flex-direction: column;
        align-items: stretch;

        padding: 20px;

        gap: 5px;

        border-radius: 0 0 0 15px;

        box-shadow: 0 10px 30px rgba(0,0,0,.2);

        opacity: 0;
        visibility: hidden;

        transition:
            right .35s ease,
            opacity .25s ease,
            visibility .25s ease;

        z-index: 10002;
    }

    /* MENU AKTIF */
    #nav-menu.active {
        display: flex !important;

        right: 0;

        opacity: 1;

        visibility: visible;
    }

    /* LINK */
    #nav-menu > a {
        display: block !important;

        width: 100%;

        padding: 12px 15px;

        color: #166534;

        text-decoration: none;

        font-size: 14px;

        border-radius: 8px;

        box-sizing: border-box;
    }

    #nav-menu > a:hover {
        background: #f0fdf4;
    }

    /* TOMBOL WHATSAPP */
    #nav-menu .btn-navbar-mobile {
        display: flex !important;

        align-items: center;
        justify-content: center;

        gap: 8px;

        margin-top: 10px;

        padding: 12px 20px;

        background: #166534;

        color: white;

        border-radius: 30px;
    }

    /* =========================
       OVERLAY
    ========================= */

    .menu-overlay {
        position: fixed;

        inset: 0;

        background: rgba(0,0,0,.35);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transition: opacity .3s ease;

        z-index: 10000;
    }

    .menu-overlay.active {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;
    }

}


/* ==============================
   DESKTOP
   > 1024px
============================== */

@media (min-width: 1025px) {

    .menu-toggle {
        display: none !important;
    }

    #nav-menu {
        display: flex !important;

        position: static;

        opacity: 1;

        visibility: visible;
    }

    .menu-overlay {
        display: none !important;
    }

}

/* =========================================
   HERO TRUST - FLOATING STATISTICS
========================================= */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    width: fit-content;
}

/* CARD STATISTIK */
.hero-trust > div {
    position: relative;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 15px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 12px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

    overflow: hidden;
}

/* Efek cahaya di dalam card */
.hero-trust > div::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.6s ease;
}

/* Hover card */
.hero-trust > div:hover {
    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.13);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

.hero-trust > div:hover::before {
    left: 130%;
}


/* =========================================
   ANGKA
========================================= */

.hero-trust strong {
    position: relative;
    z-index: 1;

    font-size: 18px;
    font-weight: 800;

    color: #ffffff;

    line-height: 1;
}


/* =========================================
   TEKS
========================================= */

.hero-trust span {
    position: relative;
    z-index: 1;

    font-size: 11px;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.72);

    white-space: nowrap;
}


/* =========================================
   TAMBAHKAN DOT HIJAU
========================================= */

.hero-trust > div::after {
    content: "";

    width: 5px;
    height: 5px;

    position: absolute;

    top: 7px;
    right: 7px;

    background: #4ade80;

    border-radius: 50%;

    box-shadow:
        0 0 8px rgba(74, 222, 128, 0.8);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .hero-trust {
        gap: 10px;
    }

    .hero-trust > div {
        padding: 10px 12px;
    }

    .hero-trust strong {
        font-size: 15px;
    }

    .hero-trust span {
        font-size: 9px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hero-trust {
        display: flex;
        justify-content: center;
        gap: 7px;

        width: 100%;

        margin-top: 22px;
    }

    .hero-trust > div {
        padding: 8px 9px;
        gap: 5px;

        border-radius: 9px;
    }

    .hero-trust strong {
        font-size: 10px;
    }

    .hero-trust span {
        font-size: 7px;
    }

    .hero-trust > div::after {
        width: 3px;
        height: 3px;

        top: 5px;
        right: 5px;
    }

}


/* =========================================
   HP KECIL
========================================= */

@media (max-width: 480px) {

    .hero-trust {
        gap: 5px;
    }

    .hero-trust > div {
        padding: 7px 7px;
    }

    .hero-trust strong {
        font-size: 9px;
    }

    .hero-trust span {
        font-size: 6px;
    }

}

.hero-trust div {
    white-space: nowrap;
}

.hero-trust div strong {
    min-width: max-content;
}
/*==================================
      SCROLL STAGGER ANIMATION
===================================*/

.animate-item{

    opacity:0;

    transform:translateY(60px);

    transition:
        opacity .8s ease,
        transform .8s ease;

    will-change:opacity,transform;

}

.animate-item.show{

    opacity:1;

    transform:translateY(0);

}
/* ==========================
   PORTFOLIO ANIMATION
========================== */

.masonry-item{
    opacity:0;
    transform:translateY(60px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.masonry-item.show{
    opacity:1;
    transform:translateY(0);

}