/* ========================================GLOBAL STYLES & RESET======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden;
        }

        /* ========================================HERO SECTION ORIGINAL STYLES======================================== */
        .hero {
            width: 100%;
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--default-color, #fff);
            padding-top: 64px;
        }

        @media (max-width: 767px) {
            .hero {
                min-height: auto;
                padding-top: 64px;
            }
        }

        .hero img {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero:before {
            content: "";
            background: color-mix(in srgb, var(--background-color, #000), transparent 50%);
            position: absolute;
            inset: 0;
            z-index: 2;
        }

        .hero .container {
            position: relative;
            z-index: 3;
        }

        .hero h2 {
            margin: 0;
            font-size: 48px;
            font-weight: 700;
        }

        .hero h2 span {
            color: var(--accent-color, #c8a84b);
        }

        .hero p {
            color: color-mix(in srgb, var(--default-color, #fff), transparent 20%);
            margin: 10px 0 0 0;
            font-size: 24px;
        }

        .hero .cta-btn {
            color: var(--default-color, #fff);
            border: 2px solid var(--accent-color, #c8a84b);
            font-weight: 400;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            padding: 8px 30px;
            border-radius: 50px;
            transition: 0.3s;
            flex-shrink: 0;
        }

        .hero .cta-btn:first-child {
            margin-right: 10px;
        }

        .hero .cta-btn:hover {
            background: color-mix(in srgb, var(--accent-color, #c8a84b), transparent 20%);
        }

        @media (max-width: 480px) {
            .hero .cta-btn {
                font-size: 12px;
            }
        }

        @media (max-width: 768px) {
            .hero h2 {
                font-size: 32px;
            }
            .hero p {
                font-size: 18px;
            }
        }

        /* ========================================
           HERO SLIDER CUSTOM STYLES
        ======================================== */
        .hero-slide-item {
            transition: opacity 0.8s ease-in-out;
        }
        
        .hero-dot-indicator {
            transition: all 0.3s ease;
            cursor: pointer;
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        
        @media (max-width: 767px) {
            .hero-dot-indicator {
                width: 6px;
                height: 6px;
            }
        }
        
        .hero-dot-indicator:hover {
            transform: scale(1.3);
            background-color: white !important;
        }
        
        #prevSlide, #nextSlide {
            transition: all 0.3s ease;
        }
        
        @media (max-width: 767px) {
            #prevSlide, #nextSlide {
                width: 36px !important;
                height: 36px !important;
            }
        }
        
        #prevSlide:hover, #nextSlide:hover {
            background-color: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.6;
            }
        }

        /* ========================================MOBILE STYLES - HIDE ARROWS, FULL WIDTH GAMBAR DI ATAS======================================== */
       /* ========================================
   MOBILE STYLES - Posisi di BAWAH (bottom)
   ======================================== */
@media (max-width: 767px) {
    #prevSlide, #nextSlide {
        display: none !important;
    }

    .mobile-slide-inner {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;  /* CHANGED: dari center ke flex-end */
        height: 100%;
        padding: 1rem 1rem 2rem 2rem;
    }

    .mobile-poster-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .mobile-poster-image {
        margin-top: 10%;
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
    }

    .mobile-text-wrapper {
        margin-bottom: 200px; /* Tambahkan margin bawah untuk memberi ruang antara konten dan tombol */
        width: 100%;
        text-align: center;
        padding: 0 0.5rem;
    }

    .mobile-text-wrapper h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }
    
    .mobile-text-wrapper p {
        font-size: 1.25rem;
        opacity: 0.85;
        margin-bottom: 1rem;
    }
    
    .mobile-badge {
        display: inline-block;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(8px);
        padding: 0.2rem 0.75rem;
        border-radius: 20px;
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

        .btn-primary {
            color: #fff;
        background: #dc2626;
        padding: 0.5rem 1.25rem;
        border-radius: 9999px;
        font-weight: 600;
        font-size: 0.8rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn-group {
        justify-content: center;
        margin-top: 0.25rem;
    }
    
    .btn-outline {
        color: #fff;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(8px);
        padding: 0.5rem 1.25rem;
        border-radius: 9999px;
        font-size: 0.8rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid rgba(255,255,255,0.25);
    }

    .desktop-feature-col {
        display: none;
    }
}
        
        /* Landscape mode mobile */
        @media (max-height: 600px) and (max-width: 767px) {
            .mobile-poster-wrapper {
                min-height: 200px;
                padding: 1rem 1rem 0.75rem 1rem;
            }

            .mobile-poster-image {
                max-height: 200px;
                max-width: 200px;
            }

            .mobile-text-wrapper {
                padding: 0.75rem 1rem 1rem 1rem;
            }

            .mobile-text-wrapper h2 {
                font-size: 1.25rem;
            }

            .mobile-text-wrapper p {
                font-size: 0.8rem;
                margin-bottom: 0.75rem;
            }

            .btn-primary,
            .btn-outline {
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
            }
        }
        
        /* Tablet & Desktop - tampilkan arrows */
        @media (min-width: 768px) {
            .mobile-poster-wrapper {
                display: none;
            }
            .desktop-feature-col {
                display: block;
            }
            #prevSlide, #nextSlide {
                display: flex !important;
            }
        }

        /* Swipe hint */
        .swipe-hint {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 35;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            padding: 6px 12px;
            border-radius: 30px;
            font-size: 11px;
            color: white;
            display: flex;
            align-items: center;
            gap: 6px;
            pointer-events: none;
            white-space: nowrap;
        }
        
        @media (max-width: 767px) {
            .swipe-hint {
                bottom: 60px;
            }
        }
        
        @media (min-width: 768px) {
            .swipe-hint {
                display: none;
            }
        }
        
        @keyframes swipeArrow {
            0%, 100% { transform: translateX(0px); opacity: 0.6; }
            50% { transform: translateX(5px); opacity: 1; }
        }
        
        .swipe-hint i:first-child {
            animation: swipeArrow 1.5s ease-in-out infinite;
        }
        .swipe-hint i:last-child {
            animation: swipeArrow 1.5s ease-in-out infinite reverse;
        }

        /* ========================================
           ADDITIONAL COMPONENT STYLES (DARI CSS YANG DIBERIKAN)
        ======================================== */
        .hero-gradient {
            background: linear-gradient(135deg, #006747 0%, #004d35 100%);
        }

        .glass-panel {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .slides-track {
            display: flex;
            transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
        }

        .slide {
            min-width: 100%;
        }

        .award-card {
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .award-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
        }

        .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            background: #d1d5db;
            padding: 0;
            transition: background 0.2s, transform 0.2s;
        }

        .dot.active {
            background: #4a7a4a;
            transform: scale(1.3);
        }

        .card-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background: #fff;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            user-select: none;
        }

        #portfolioTrack {
            touch-action: pan-y pinch-zoom;
            user-select: none;
        }

        @media (max-width: 640px) {
            .card-wrap {
                border-radius: 10px;
            }
        }

        .card-wrap:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
        }

        .thumb {
            position: relative;
            width: 100%;
            padding-top: 58%;
            overflow: hidden;
            background: #1a1a1a;
        }

        .thumb iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: none;
            pointer-events: none;
        }

        .thumb-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.28);
            transition: background 0.3s;
            z-index: 2;
        }

        .card-wrap:hover .thumb-overlay {
            background: rgba(0, 0, 0, 0.1);
        }

        .play-btn {
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s, background 0.2s;
        }

        .play-btn svg {
            margin-left: 4px;
        }

        .card-wrap:hover .play-btn {
            transform: scale(1.12);
            background: #fff;
        }

        .badge {
            position: absolute;
            bottom: 12px;
            left: 12px;
            z-index: 3;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            padding: 4px 10px;
            border-radius: 4px;
            background: #1a3d2b;
            color: #fff;
            text-transform: uppercase;
        }

        .title-underline {
            display: inline-block;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 4px;
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1.5px solid #d1d1c7;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
        }

        @media (max-width: 640px) {
            .nav-btn {
                width: 36px;
                height: 36px;
            }
            .nav-btn svg {
                width: 14px;
                height: 14px;
            }
        }

        .nav-btn:hover {
            background: #1a3d2b;
            border-color: #1a3d2b;
            color: #fff;
        }

        .nav-btn:hover svg {
            stroke: #fff;
        }

        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.2);
        }
        
        .btn-hover {
            transition: all 0.3s ease;
        }
        
        .btn-hover:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .coming-soon-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            z-index: 30;
        }

        .media-section {
            background-color: #0f4a2e;
            background-image: radial-gradient(ellipse at 80% 50%, #1a6b45 0%, #0a3320 60%);
        }
        
        .feature-icon-wrap {
            width: 40px;
            height: 40px;
            background: rgba(200, 168, 75, 0.15);
            border: 1px solid rgba(200, 168, 75, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-btn {
            transition: background 0.2s ease, transform 0.15s ease;
        }
        
        .contact-btn:hover {
            background: #b8942e;
            transform: translateY(-1px);
        }
        
        .image-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }
        
        .stat-badge {
            position: absolute;
            bottom: -1px;
            right: -1px;
            background: #c8a84b;
            border-radius: 16px 0 20px 0;
            padding: 18px 24px;
        }
        
        .title-underline::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: #c8a84b;
            border-radius: 2px;
            margin-top: 8px;
        }
        
        .card {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(26, 107, 69, 0.12);
        }
        
        .store-btn {
            transition: background 0.15s ease, transform 0.15s ease;
        }
        
        .store-btn:hover {
            background: #2a2a3e;
            transform: scale(1.02);
        }

        .feature-image {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 100%;
            min-height: 400px;
            z-index: 10;
        }

        .feature-image img {
            display: block;
            max-width: 100%;
            height: auto;
            z-index: 20;
            position: relative;
        }

        .feature-image > div {
            z-index: 1;
        }

        /* Footer Styles */
        .footer-shape::before {
            position: absolute;
            content: '';
            width: 80px;
            height: 100%;
            top: 0;
            left: -40px;
            background: var(--secondary);
            transform: skew(40deg);
        }

        .footer .btn.btn-link {
            display: block;
            margin-bottom: 5px;
            padding: 0;
            text-align: left;
            color: rgba(255, 255, 255, 0.5);
            font-weight: normal;
            text-transform: capitalize;
            transition: 0.3s;
        }

        .footer .btn.btn-link::before {
            position: relative;
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: rgba(255, 255, 255, 0.5);
            margin-right: 10px;
        }

        .footer .btn.btn-link:hover {
            color: var(--primary);
            letter-spacing: 1px;
            box-shadow: none;
        }

        .marquee-track {
            will-change: transform;
        }
        
        .marquee-wrapper::before,
        .marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }
        
        .marquee-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #f9fafb, transparent);
        }
        
        .marquee-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #f9fafb, transparent);
        }
        
        img {
            -webkit-user-drag: none;
            user-select: none;
        }

        .testimonial-card {
            transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .testimonial-card:hover {
            background: #1a6b45 !important;
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(26, 107, 69, 0.2);
        }
        
        .testimonial-card:hover .card-text { color: #fff; }
        .testimonial-card:hover .card-quote { color: rgba(255,255,255,0.15); }
        .testimonial-card:hover .card-name { color: #fff; }
        .testimonial-card:hover .card-role { color: rgba(187, 247, 208, 0.7); }
        .testimonial-card:hover .card-avatar { background: rgba(255,255,255,0.2); color: #fff; }

        .program-card:not(.program-live):hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }
        
        .program-live {
            box-shadow: 0 8px 32px rgba(26, 107, 69, 0.15);
        }

        .program-card {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }



        /* SECTION CATALOG - MOBILE HORIZONTAL SCROLL & DESKTOP GRID */

        /* Mobile: horizontal scroll */

.nf-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.01em;
}
.nf-see-all {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nf-see-all:hover { color: #ff4d57; }

/* ── Scroll wrapper ── */
.catalog-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -2rem;
    padding: 0.25rem 2rem 1rem;
    scrollbar-width: none;
}
.catalog-scroll-wrapper::-webkit-scrollbar { display: none; }

/* ── Grid / Row ── */
.catalog-grid {
    display: flex;
    gap: 6px;
    width: max-content;
}

/* ── Card ── */
.nf-card {
    position: relative;
    flex-shrink: 0;
    width: 72vw;
    max-width: 180px;
    border-radius: 6px;
    overflow: hidden;
    background: #1f1f1f;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}
.nf-card:hover {
    transform: scale(1.06);
    box-shadow: 0 14px 40px rgba(0,0,0,0.7);
    z-index: 10;
}

/* ── Thumbnail ── */
.nf-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
}
.nf-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.nf-card:hover .nf-thumb-img {
    transform: scale(1.05);
}
.nf-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    display: flex;
    align-items: flex-end;
    padding: 12px;
}
.nf-thumb-label {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}
.nf-gradient {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    pointer-events: none;
}

/* ── Hover info ── */
.nf-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 10px 12px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.nf-card:hover .nf-info {
    opacity: 1;
    transform: translateY(0);
}

/* ── Badge ── */
.nf-badge {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #e50914;
    color: #fff;
    margin-bottom: 6px;
}

/* ── Card text ── */
.nf-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 3px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.nf-card-desc {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ── Action buttons ── */
.nf-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}
.nf-btn-play {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}
.nf-btn-play:hover { background: rgba(255,255,255,0.85); }
.nf-btn-play svg { width: 12px; height: 12px; fill: #000; margin-left: 1px; }
.nf-btn-more {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.45);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}
.nf-btn-more:hover { background: rgba(255,255,255,0.22); }
.nf-btn-more svg { width: 11px; height: 11px; fill: #fff; }
.nf-maturity {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 2px 5px;
    border-radius: 2px;
}

/* ── Empty ── */
.nf-empty {
    padding: 3rem 2rem;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    min-width: 280px;
}

/* ── Desktop: grid ── */
@media (min-width: 640px) {
    .catalog-scroll-wrapper {
        overflow-x: visible;
        margin: 0;
        padding: 0;
    }
    .catalog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: auto;
        gap: 8px;
    }
    .nf-card {
        width: auto;
        max-width: none;
    }
}
@media (min-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .nf-card:hover {
        transform: scale(1.12);
    }
}