/* ===== PREVENT HORIZONTAL SCROLL ===== */
html,
body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    /* Gabungkan di sini */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fbf8;
    color: #1c1917;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden;
    /* Tambahkan ini */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== VARIABLES ===== */
:root {
    --brand-50: #f0f6f1;
    --brand-100: #dce8df;
    --brand-200: #b9d5be;
    --brand-300: #8fb996;
    --brand-400: #6a9e73;
    --brand-500: #3d6e42;
    --brand-600: #2d5331;
    --brand-700: #1f3d22;
    --brand-800: #152b17;
    --brand-900: #0d1a0e;
    --shopee: #ee4d2d;
    --tiktok: #010101;
    --white: #ffffff;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-custom: 0 4px 12px rgba(0, 0, 0, 0.20);
    --radius-lg: 32px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    --navbar-height: 72px;
}

/* ===== UTILITY ===== */
.hidden {
    display: none !important;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-500);
}

.section-label-light {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-200);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--stone-900);
    margin-top: 0.5rem;
}

.section-title-light {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-top: 0.5rem;
}

.section-subtitle {
    color: var(--stone-500);
    margin-top: 0.75rem;
}

.section-subtitle-light {
    color: var(--brand-100);
    margin-top: 0.75rem;
}

.section-header-light {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 56px;
}

/* ===== NAVBAR - BACKGROUND BURAM SAJA ===== */
/* State untuk background buram (tanpa efek layout) */
.navbar.scrolled-bg {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

/* State untuk background buram di section gelap */
.navbar.scrolled-bg.dark-bg {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

/* ===== NAVBAR - MODE SCROLLED LENGKAP ===== */
/* State saat scrolled (background + layout berubah) */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled.dark-bg {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: var(--navbar-height);
    overflow: visible;
}

/* State saat di-scroll - background transparan dengan blur */
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

/* ===== LOGO - Dengan transformasi JS ===== */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    z-index: 2;
    /* Posisi awal di kiri */
    transform: translateX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-logo img {
    height: 40px;
    width: auto;
    transition: filter 0.3s ease;
}

/* Saat navbar transparan (di awal), logo dengan filter */
.navbar:not(.scrolled) .navbar-logo img {
    filter: brightness(0) saturate(1);
}

/* Saat navbar scrolled, logo normal */
.navbar.scrolled .navbar-logo img {
    filter: none;
}

/* ===== DESKTOP MENU - SLIDE OUT KE KANAN ===== */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: auto;

    /* Initial state - visible */
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    position: relative;
    right: auto;
}

/* Saat scrolled, menu slide ke kanan dan menghilang */
.navbar.scrolled .navbar-menu {
    transform: translateX(120%);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.navbar-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-600);
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 10px;
    white-space: nowrap;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-500);
    transition: width 0.3s ease;
}

.navbar-link:hover {
    color: var(--stone-900);
}

.navbar-link:hover::after {
    width: 100%;
}

/* Saat navbar transparan (di awal), link berwarna gelap agar terlihat */
.navbar:not(.scrolled) .navbar-link {
    color: var(--stone-800);
}

/* Saat navbar scrolled, link normal */
.navbar.scrolled .navbar-link {
    color: var(--stone-700);
}

/* ===== HIGHLIGHT BUTTON ===== */
.navbar-link-highlight {
    background: var(--brand-600);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-link-highlight::after {
    display: none;
}

.navbar-link-highlight:hover {
    background: var(--brand-500);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 83, 49, 0.3);
}

.navbar-link-highlight i {
    margin-right: 6px;
}

/* Saat navbar transparan (di awal), highlight tetap sama */
.navbar:not(.scrolled) .navbar-link-highlight {
    background: var(--brand-600);
    color: var(--white) !important;
}

.navbar.scrolled .navbar-link-highlight {
    background: var(--brand-600);
    color: var(--white) !important;
}

/* ===== MOBILE TOGGLE ===== */
.navbar-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    font-size: 1.25rem;
    color: var(--stone-700);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    margin-left: auto;
}

.navbar-toggle:hover {
    background: var(--stone-100);
}

.navbar:not(.scrolled) .navbar-toggle {
    color: var(--stone-800);
}

.navbar.scrolled .navbar-toggle {
    color: var(--stone-700);
    opacity: 0;
    pointer-events: none;
    transform: translateX(40px);
}

/* ===== MOBILE DROPDOWN ===== */
.navbar-dropdown {
    position: fixed;
    top: var(--navbar-height);
    right: 0;
    width: 50%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 0 0 0 20px;
    box-shadow: var(--shadow-lg);
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 1;
}

.navbar-dropdown.hidden {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.navbar-dropdown-inner {
    padding: 16px 0;
}

.navbar-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-600);
    transition: all 0.2s ease;
}

.navbar-dropdown-link i {
    width: 20px;
    color: var(--brand-400);
}

.navbar-dropdown-link:hover {
    background: var(--brand-50);
    color: var(--brand-600);
}

.navbar-dropdown-highlight {
    background: var(--brand-600);
    color: var(--white) !important;
    border-radius: 0;
    margin-top: 8px;
}

.navbar-dropdown-highlight i {
    color: var(--white);
}

.navbar-dropdown-highlight:hover {
    background: var(--brand-500);
    color: var(--white) !important;
}

/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }    
}

@media (max-width: 480px) {
    .navbar-dropdown {
        width: 50%;
        max-width: 280px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    padding-top: calc(80px + var(--navbar-height));
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5e9 0%, #f8fbf8 50%, #f8fbf8 80%, #f1f8e9 100%);
    opacity: 1;
    transform: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(139, 195, 74, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero>div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    padding-top: calc(80px + var(--navbar-height));
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5e9 0%, #f8fbf8 50%, #f8fbf8 80%, #f1f8e9 100%);
    opacity: 1;
    transform: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(139, 195, 74, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero>div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* ===== ANIMASI LEFT-HERO ===== */
.hero .hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    user-select: none;
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInLeft 1s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animasi untuk setiap elemen di dalam hero-left dengan delay berbeda */
.hero .text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #3B4D26;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: -33px;
    margin-left: 10px;
    position: relative;
    width: fit-content;

    /* Animasi individual */
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

.hero .text h1 {
    font-size: 10rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 800;
    color: #3B4D26;
    letter-spacing: -0.03em;
    line-height: 1.05;
    position: relative;
    text-shadow: 0 4px 30px rgba(59, 77, 38, 0.06);

    /* Animasi individual */
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

.hero .text h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #57534e;
    line-height: 1.4;
    max-width: 480px;
    margin-top: 8px;
    padding-left: 10px;

    /* Animasi individual */
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    animation-delay: 0.7s;
}

.hero .btn-hero {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;

    /* Animasi individual */
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

.hero .badge-hero {
    display: flex;
    gap: 92px;
    margin-top: 36px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;

    /* Animasi individual */
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    animation-delay: 0.9s;
}

/* Keyframes untuk fadeInUp */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BUTTON HERO ===== */
.hero .btn-hero .btn-primary {
    background: var(--brand-600);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero .btn-hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.hero .btn-hero .btn-primary:hover::before {
    left: 100%;
}

.hero .btn-hero .btn-primary:hover {
    background: var(--brand-500);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(45, 83, 49, 0.35);
}

.hero .btn-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #1c1917;
    padding: 14px 34px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hero .btn-hero .btn-secondary:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 77, 38, 0.2);
}

/* ===== BADGE HERO ===== */
.hero .badge-hero::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 77, 38, 0.1), transparent);
    margin-top: 15px;
}

.hero .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero .badge-hero img {
    height: 56px;
    width: auto;
    margin-top: 30px;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.98);
}

.hero .badge-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #57534e;
    text-align: center;
    line-height: 1.1;
}

/* ===== HERO KANAN ===== */
.hero .hero-right {
    flex: 1;
    position: relative;
    min-height: 600px;
    overflow: visible;
}

.hero .hero-right img:first-child {
    user-select: none;
    position: absolute;
    top: -250px;
    right: -280px;
    width: 750px;
    max-width: none;
    height: auto;
    z-index: 1;
    opacity: 0;
    filter: drop-shadow(0 20px 60px rgba(59, 77, 38, 0.05));
    transform-origin: right center;
    animation: rotateInFromRight 1.2s cubic-bezier(0.2, 0, 0.2, 1) forwards,
        rotateLeaf 12s ease-in-out infinite 1.2s;
    filter: blur(1.5px);
}

@keyframes rotateInFromRight {
    0% {
        transform: rotate(-80deg) scale(0.5);
        opacity: 0;
    }

    60% {
        transform: rotate(-10deg) scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: rotate(-15deg) scale(0.9);
        opacity: 1;
    }
}

@keyframes rotateLeaf {

    0%,
    100% {
        transform: rotate(-15deg) scale(0.9);
    }

    25% {
        transform: rotate(-10deg) scale(0.92);
    }

    50% {
        transform: rotate(-15deg) scale(0.88);
    }

    75% {
        transform: rotate(-12deg) scale(0.91);
    }
}

.hero .hero-right img:last-child {
    user-select: none;
    position: absolute;
    bottom: -30px;
    right: -250px;
    width: 850px;
    max-width: none;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.08));
    animation: slideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUp {
    0% {
        transform: translateY(200px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 0;
        padding-top: calc(60px + var(--navbar-height));
        min-height: auto;
    }

    .hero>div {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    /* Reset animasi untuk mobile - lebih smooth */
    .hero .hero-left {
        animation: slideInLeftMobile 0.8s cubic-bezier(0.2, 0, 0.2, 1) forwards;
        animation-delay: 0.3s;
    }

    @keyframes slideInLeftMobile {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero .text h2 {
        margin-left: auto;
        margin-right: auto;
        animation-delay: 0.5s;
    }

    .hero .text h1 {
        font-size: 10rem;
        animation-delay: 0.6s;
    }

    .hero .text h3 {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        border-left: none;
        padding-top: 8px;
        border-top: 2px solid rgba(59, 77, 38, 0.1);
        animation-delay: 0.7s;
        font-size: 1rem;
    }

    .hero .btn-hero {
        justify-content: center;
        animation-delay: 0.8s;
    }

    .hero .badge-hero {
        justify-content: center;
        gap: 40px;
        animation-delay: 0.9s;
    }

    .hero .hero-right {
        width: 100%;
        min-height: 380px;
    }

    .hero .hero-right img:first-child {
        width: 500px;
        top: -115px;
        right: -35px;
        transform-origin: right center;
    }

    @keyframes rotateInFromRight {
        0% {
            transform: rotate(-80deg) scale(0.5);
            opacity: 0;
        }

        60% {
            transform: rotate(-5deg) scale(1.05);
            opacity: 0.8;
        }

        100% {
            transform: rotate(-10deg) scale(0.9);
            opacity: 1;
        }
    }

    @keyframes rotateLeaf {

        0%,
        100% {
            transform: rotate(-10deg) scale(0.9);
        }

        25% {
            transform: rotate(-5deg) scale(0.92);
        }

        50% {
            transform: rotate(-13deg) scale(0.88);
        }

        75% {
            transform: rotate(-7deg) scale(0.91);
        }
    }

    .hero .hero-right img:last-child {
        width: 650px;
        right: 130px;
        bottom: -50px;
    }

    @keyframes slideUp {
        0% {
            transform: translateY(150px);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

@media (max-width: 820px) {
    .hero .text h1 {
        font-size: 10rem;
    }

    .hero .text h3 {
        font-size: 1.125rem;
    }

    .hero .btn-hero .btn-primary,
    .hero .btn-hero .btn-secondary {
        padding: 12px 28px;
        font-size: 0.8125rem;
    }

    .hero .badge-hero {
        gap: 30px;
    }

    .hero .badge-hero img {
        height: 40px;
    }

    .hero .hero-right {
        min-height: 300px;
    }

    .hero .hero-right img:last-child {
        width: 550px;
        top: 20px;
        right: 50px;
    }

    .hero .hero-right img:first-child {
        width: 360px;
        top: -100px;
        right: -50px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0;
        padding-top: calc(40px + var(--navbar-height));
    }

    .hero>div {
        padding: 0 16px;
        gap: 30px;
    }

    /* Animasi lebih cepat untuk mobile */
    .hero .hero-left {
        animation-duration: 0.6s;
        animation-delay: 0.2s;
    }

    .hero .text h2 {
        font-size: 1.5rem;
        margin-bottom: -20px;
        animation-delay: 0.3s;
    }

    .hero .text h1 {
        font-size: 6rem;
        animation-delay: 0.4s;
    }

    .hero .text h3 {
        font-size: 0.9rem;
        margin-top: 4px;
        animation-delay: 0.5s;
    }

    .hero .btn-hero {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
        animation-delay: 0.6s;
    }

    .hero .btn-hero .btn-primary,
    .hero .btn-hero .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.875rem;
        justify-content: center;
    }

    .hero .badge-hero {
        gap: 20px;
        margin-top: 24px;
        animation-delay: 0.7s;
    }

    .hero .badge-hero img {
        height: 34px;
    }

    .hero .hero-right {
        min-height: 240px;
    }

    .hero .hero-right img:first-child {
        width: 280px;
        top: -65px;
        right: -55px;
    }

    .hero .hero-right img:last-child {
        width: 440px;
        right: 15px;
        bottom: -10px;
    }

    @keyframes rotateInFromRight {
        0% {
            transform: rotate(-80deg) scale(0.4);
            opacity: 0;
        }

        60% {
            transform: rotate(-5deg) scale(1.05);
            opacity: 0.8;
        }

        100% {
            transform: rotate(-10deg) scale(0.9);
            opacity: 1;
        }
    }
}

@media (max-width: 480px) {
    .hero .text h1 {
        font-size: 6rem;
    }

    .hero .text h3 {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        border-left: none;
        padding-top: 15px;
        border-top: 2px solid rgba(59, 77, 38, 0.1);
        animation-delay: 0.7s;
        font-size: 0.8rem;
    }

    /* Animasi lebih cepat untuk mobile kecil */
    .hero .hero-left {
        animation-duration: 0.5s;
        animation-delay: 0.1s;
    }

    .hero .text h2 {
        font-size: 1.5rem;
        margin-bottom: -10px;
        animation-delay: 0.2s;
    }

    .hero .text h1 {
        animation-delay: 0.3s;
    }

    .hero .text h3 {
        animation-delay: 0.4s;
    }

    .hero .btn-hero {
        animation-delay: 0.5s;
    }

    .hero .badge-hero {
        animation-delay: 0.6s;
    }

    .hero .hero-right {
        min-height: 200px;
    }

    .hero .hero-right img:first-child {
        width: 230px;
        top: -40px;
        right: -50px;
    }

    .hero .hero-right img:last-child {
        width: 360px;
        right: 5px;
        bottom: -5px;
    }

    .hero .badge-hero {
        gap: 14px;
    }

    .hero .badge-hero img {
        height: 28px;
    }

    .hero .btn-hero .btn-primary,
    .hero .btn-hero .btn-secondary {
        font-size: 0.8125rem;
        padding: 12px 16px;
    }
}

/* ===== TENTANG ===== */
.section-tentang {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
}

.tentang-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

@media (min-width: 768px) {
    .tentang-wrapper {
        flex-direction: row;
    }
}

.tentang-content {
    flex: 1;
}

.tentang-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-top: 8px;
    line-height: 1.2;
}

.tentang-desc {
    color: var(--brand-100);
    margin-top: 16px;
    line-height: 1.7;
}

.tentang-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .tentang-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tentang-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.tentang-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.tentang-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tentang-icon i {
    color: var(--brand-200);
    font-size: 1rem;
}

.tentang-item-title {
    font-weight: 700;
    color: var(--white);
    font-size: 0.875rem;
}

.tentang-item-desc {
    color: var(--brand-100);
    font-size: 0.75rem;
}

.tentang-image-wrapper {
    flex: 1;
    position: relative;
}

.tentang-image-bg {
    position: absolute;
    inset: -24px;
    background: linear-gradient(135deg, rgba(61, 110, 66, 0.08), rgba(61, 110, 66, 0.03));
    border-radius: 24px;
    z-index: -1;
    transform: rotate(-3deg);
}

.tentang-image {
    width: 100%;
    height: 475px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

/* ===== PRODUK ===== */
.section-produk {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 56px;
}

.produk-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .produk-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .produk-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.produk-card {
    background: #f8fbf8;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid var(--stone-100);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    cursor: pointer;
}

.produk-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-custom);
}

.badge-new {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(61, 110, 66, 0.3);
}

.badge-best {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f59e0b;
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.produk-image {
    width: 100%;
    height: 176px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.produk-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--stone-900);
}

.produk-desc {
    font-size: 0.875rem;
    color: var(--stone-500);
    margin-top: 4px;
}

.produk-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--stone-100);
}

.produk-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-600);
}

.produk-unit {
    font-size: 0.875rem;
    color: var(--stone-400);
    margin-left: 4px;
}

.produk-actions {
    display: flex;
    gap: 6px;
}

.btn-shopee,
.btn-tiktok {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 100%;
    overflow: hidden;
}

.btn-shopee:hover,
.btn-tiktok:hover {
    transform: translateY(-2px);
}

.btn-shopee:hover {
    box-shadow: 0 6px 14px rgba(238, 77, 45, 0.3);
}

.btn-tiktok:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.btn-shopee img,
.btn-tiktok img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== TESTIMONI SECTION BARU ===== */
.section-testimoni-new {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
    overflow: hidden;
}

.testimoni-new-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 56px;
}

.testimoni-new-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-200);
}

.testimoni-new-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-top: 0.5rem;
}

.testimoni-new-subtitle {
    color: var(--brand-100);
    margin-top: 0.75rem;
}

.testimoni-new-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .testimoni-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimoni-new-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimoni-new-card {
    user-select: none;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* ANIMASI - Initial state */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ANIMASI - Saat muncul */
.testimoni-new-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimoni-new-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Delay untuk setiap card (berurutan) */
.testimoni-new-card:nth-child(1) {
    transition-delay: 0.1s;
}

.testimoni-new-card:nth-child(2) {
    transition-delay: 0.2s;
}

.testimoni-new-card:nth-child(3) {
    transition-delay: 0.3s;
}

.testimoni-new-card:nth-child(4) {
    transition-delay: 0.4s;
}

.testimoni-new-card:nth-child(5) {
    transition-delay: 0.5s;
}

.testimoni-new-card:nth-child(6) {
    transition-delay: 0.6s;
}

.testimoni-new-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.testimoni-new-text {
    color: var(--brand-50);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 16px;
    min-height: 72px;
}

.testimoni-new-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimoni-new-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.12);
    color: var(--brand-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimoni-new-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.875rem;
}

.testimoni-new-role {
    font-size: 0.75rem;
    color: var(--brand-200);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .testimoni-new-text {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .section-testimoni-new {
        padding: 56px 0;
    }

    .testimoni-new-title {
        font-size: 1.75rem;
    }

    .testimoni-new-card {
        padding: 20px;
    }

    .testimoni-new-text {
        font-size: 0.875rem;
    }
}

/* ===== VIDEO & ARTIKEL GABUNGAN ===== */
.section-video-artikel {
    padding: 80px 0;
    background: var(--white);
}

/* Header di atas - rata tengah */
.video-artikel-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 48px;
}

.video-artikel-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--stone-900);
    margin-top: 0.5rem;
}

/* Container untuk video dan artikel - menggunakan flexbox agar tinggi sama */
.video-artikel-container {
    display: flex;
    gap: 48px;
    align-items: stretch;
}

/* VIDEO SIDE - Mengisi tinggi yang tersedia */
.video-side {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    min-height: 300px;
}

.video-iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    object-fit: cover;
}

/* ===== ARTIKEL SIDE - Ukuran lebih besar & proporsional ===== */
.artikel-side {
    flex: 0 0 38%;
    /* Sedikit lebih lebar untuk kenyamanan membaca */
    display: flex;
    flex-direction: column;
}

.artikel-side-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Jarak antar card lebih longgar */
    flex: 1;
}

.artikel-side-card {
    display: flex;
    gap: 18px;
    /* Jarak antara gambar dan teks lebih besar */
    background: var(--stone-50);
    border-radius: 16px;
    /* Lebih besar dari sebelumnya */
    padding: 16px 18px;
    /* Padding lebih besar */
    border: 1px solid var(--stone-100);
    transition: all 0.3s ease;
    align-items: flex-start;
    flex: 1;
    user-select: none;
    cursor: pointer;
}

.artikel-side-card:hover {
    display: flex;
    transform: translateX(6px);
    box-shadow: var(--shadow-custom);
}

.artikel-side-image {
    width: 100px;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.artikel-side-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.artikel-side-date {
    font-size: 0.7rem;
    /* Lebih besar */
    font-weight: 500;
    color: var(--stone-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.artikel-side-body .artikel-side-title {
    font-size: 0.95rem;
    /* Lebih besar dari sebelumnya (0.8rem) */
    font-weight: 700;
    color: var(--stone-800);
    margin-top: 4px;
    line-height: 1.4;
}

.artikel-side-desc {
    font-size: 0.8rem;
    /* Lebih besar dari sebelumnya (0.7rem) */
    color: var(--stone-500);
    margin-top: 4px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.artikel-side-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-500);
    font-weight: 600;
    font-size: 0.75rem;
    /* Lebih besar */
    margin-top: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.artikel-side-readmore:hover {
    gap: 12px;
    color: var(--stone-100);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .video-artikel-container {
        flex-direction: column;
        gap: 40px;
    }

    .artikel-side {
        flex: 1;
        width: 100%;
        max-width: 700px;
        /* Lebih lebar untuk kenyamanan */
        margin: 0 auto;
    }

    .video-wrapper {
        min-height: 250px;
        aspect-ratio: 16 / 9;
    }

    .video-iframe {
        height: 100%;
    }

    .video-artikel-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .artikel-side-card {
        flex-direction: row;
        padding: 14px 16px;
        gap: 16px;
    }

    .artikel-side-image {
        width: 90px;
        height: 70px;
    }

    .artikel-side-body .artikel-side-title {
        font-size: 0.9rem;
    }

    .artikel-side-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .section-video-artikel {
        padding: 56px 0;
    }

    .video-artikel-container {
        gap: 32px;
    }

    .video-artikel-title {
        font-size: 1.75rem;
    }

    .video-wrapper {
        min-height: 200px;
        aspect-ratio: 16 / 9;
    }

    .artikel-side-card {
        flex-direction: column;
        padding: 16px;
        align-items: stretch;
        gap: 12px;
    }

    .artikel-side-image {
        width: 100%;
        height: 140px;
    }

    .artikel-side-body .artikel-side-title {
        font-size: 1rem;
    }

    .artikel-side-desc {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }

    .artikel-side-date {
        font-size: 0.65rem;
    }

    .artikel-side-readmore {
        font-size: 0.8rem;
    }
}

/* ===== FAQ & CTA GABUNGAN ===== */
.section-faq-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
}

.faq-cta-container {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 56px;
    align-items: start;
}

/* ===== CTA SIDE (KIRI - Lebih Kecil) ===== */
.cta-side {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 36px 32px 40px;
    border-radius: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    user-select: none;
}

.cta-side::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-side::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.cta-side-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-300);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.cta-side-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.cta-side-desc {
    color: var(--brand-100);
    font-size: 0.85rem;
    margin-top: 8px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-side-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.cta-side-primary {
    background: var(--white);
    color: var(--brand-700);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.cta-side-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-side-secondary {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.cta-side-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== FAQ SIDE (KANAN - Lebih Besar) ===== */
.faq-side {
    padding-top: 4px;
}

.faq-side-header {
    margin-bottom: 24px;
}

.faq-side-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-200);
}

.faq-side-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-top: 2px;
}

.faq-side-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-side-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-side-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-side-item summary {
    list-style: none;
    outline: none;
}

.faq-side-item summary::-webkit-details-marker {
    display: none;
}

.faq-side-question {
    font-weight: 600;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    gap: 16px;
}

.faq-side-icon {
    color: var(--brand-300);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.faq-side-item[open] .faq-side-icon {
    transform: rotate(180deg);
}

.faq-side-answer {
    color: var(--brand-100);
    margin-top: 12px;
    line-height: 1.7;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE FAQ-CTA ===== */
@media (max-width: 1024px) {
    .faq-cta-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .faq-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-side {
        padding: 32px 28px 36px;
        text-align: center;
    }

    .cta-side-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-side-primary,
    .cta-side-secondary {
        flex: 1;
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .faq-side-header {
        text-align: center;
    }

    .faq-side-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-faq-cta {
        padding: 56px 0;
    }

    .cta-side {
        padding: 28px 20px 32px;
    }

    .cta-side-title {
        font-size: 1.25rem;
    }

    .cta-side-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-side-primary,
    .cta-side-secondary {
        width: 100%;
        min-width: unset;
        padding: 12px 16px;
        font-size: 0.8rem;
    }

    .faq-side-item {
        padding: 14px 16px;
    }

    .faq-side-question {
        font-size: 0.8rem;
    }

    .faq-side-answer {
        font-size: 0.8rem;
    }
}

/* ===== FOOTER MODERN ===== */
.footer-modern {
    padding: 56px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #1B1917;
}

.footer-modern-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-modern-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-modern-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-modern-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-modern-desc {
    font-size: 0.85rem;
    color: #78716c;
    line-height: 1.5;
    max-width: 260px;
    margin-top: 10px;
}

.footer-modern-links {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-modern-links a {
    font-size: 0.85rem;
    font-weight: 450;
    color: #a8a29e;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.footer-modern-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--brand-400);
    transition: width 0.25s ease;
}

.footer-modern-links a:hover {
    color: #ffffff;
}

.footer-modern-links a:hover::after {
    width: 100%;
}

.footer-modern-social {
    display: flex;
    gap: 22px;
}

.footer-modern-social a {
    color: #78716c;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.footer-modern-social a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-modern-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.8rem;
    color: #57534e;
}

.footer-modern-dot {
    color: #44403c;
}

.footer-modern-bottom .fa-heart {
    color: #f87171;
    font-size: 0.7rem;
    margin: 0 2px;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer-modern-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px 48px;
        text-align: left;
    }

    .footer-modern-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .footer-modern-links {
        justify-content: flex-start;
        gap: 20px;
    }

    .footer-modern-social {
        justify-content: flex-end;
        gap: 20px;
    }

    .footer-modern-social a {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-modern {
        padding: 40px 0 24px;
    }

    .footer-modern-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 32px;
    }

    .footer-modern-brand {
        grid-column: 1 / -1;
    }

    .footer-modern-links {
        gap: 14px;
        flex-wrap: wrap;
    }

    .footer-modern-links a {
        font-size: 0.8rem;
    }

    .footer-modern-social {
        gap: 16px;
    }

    .footer-modern-social a {
        font-size: 1.1rem;
    }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25D366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: floatWhatsApp 2.5s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes floatWhatsApp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.whatsapp-float i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ===== RESPONSIVE UMUM ===== */
@media (max-width: 640px) {

    .section-title,
    .section-title-light {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .produk-actions {
        flex-direction: column;
        gap: 4px;
    }

    .btn-shopee,
    .btn-tiktok {
        min-width: 60px;
        height: 28px;
        font-size: 0.625rem;
    }

    .tentang-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .produk-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .produk-card {
        padding: 12px;
    }

    .produk-image {
        height: 120px;
    }

    .produk-name {
        font-size: 0.875rem;
    }

    .produk-desc {
        font-size: 0.75rem;
    }

    .produk-price {
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        bottom: 16px;
        right: 16px;
    }
}

/* ===== SCROLLBAR DISABLE ===== */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    display: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
