/* ==========================================================
   LUXSKIN GLUTA - CUSTOM STYLESHEET (style.css)
   ========================================================== */
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #2D3748;
    background-color: #f8fafc;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 50%, #f3e8ff 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- NAVBAR TRANSPARAN KE PUTIH SAAT SCROLL --- */
.navbar-custom {
    background-color: transparent !important;
    transition: all 0.3s ease-in-out;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Kondisi saat navbar di-scroll (menjadi putih) */
.navbar-custom.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Warna teks link navbar default (saat transparan / di atas background warna) */
.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
    color: #1e293b !important; 
    font-weight: 500;
}

/* Warna teks link navbar saat di-scroll (tetap terbaca jelas) */
.navbar-custom.scrolled .nav-link,
.navbar-custom.scrolled .navbar-brand {
    color: #1e293b !important;
}

/* Khusus untuk tampilan Mobile (ketika menu hamburger dibuka) */
@media (max-width: 992px) {
    .navbar-custom .navbar-collapse {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
}

/* --- TOMBOL LEMBUT DAN RAPI --- */
.btn-custom {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    color: white;
    padding: 10px 26px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-custom:hover {
    opacity: 0.95;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-custom:active {
    transform: translateY(0);
}

/* --- KARTU & KOTAK FITUR --- */
.feature-box {
    padding: 35px 30px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(147, 51, 234, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.08);
    border-color: rgba(147, 51, 234, 0.15);
}

.badge-sub {
    background-color: #ede9fe;
    color: #7c3aed;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 30px;
}

.card-custom {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.card-custom:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}
/* --- HERO SECTION FULL LEBAR (SISA 100PX KIRI-KANAN) DENGAN BAWAH MELENGKUNG --- */
.hero-section {
    position: relative;
    /* Gradasi Pink ke Biru yang Lembut */
    background: linear-gradient(135deg, #fce7f3 0%, #fae8ff 40%, #e0e7ff 100%) !important; 
    
    /* Sisa jarak 100px di sisi kiri dan kanan (bisa menyesuaikan di layar kecil menggunakan clamp) */
    
    /* Memberi jarak atas agar tidak tertutup navbar */
    
    /* Membuat bagian bawahnya melengkung halus */
    border-bottom-right-radius: 360px;
    
    padding-top: 50px;
    padding-bottom: 80px;
}

/* Responsif untuk layar HP/Tablet agar margin 100px tidak merusak tampilan */
@media (max-width: 992px) {
    .hero-section {
        border-bottom-right-radius: 30px;
		margin:0;
    }
}
/* Efek Lengkungan Putih di Bagian Bawah Header */
/* --- PENGATURAN NAVBAR --- */
#mainNavbar {
    background-color: transparent !important;
    transition: all 0.3s ease-in-out;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Saat halaman di-scroll (menjadi putih & ada bayangan tipis) */
#mainNavbar.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Penyesuaian khusus untuk tampilan mobile (saat menu hamburger dibuka) */
@media (max-width: 992px) {
    #mainNavbar.scrolled .navbar-collapse {
        background-color: #ffffff;
        padding: 15px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        margin-top: 10px;
    }
}
/* Styling Tombol Keranjang di Navbar */
.navbar .btn-outline-dark {
    border-color: #cbd5e1;
    color: #334155;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
}

.navbar .btn-outline-dark:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

/* Saat navbar berubah putih (scrolled), pastikan border tombol menyesuaikan */
#mainNavbar.scrolled .btn-outline-dark {
    border-color: #cbd5e1;
}
/* --- STYLING BEFORE AFTER SLIDER (VERTIKAL / MEMANJANG KE BAWAH) --- */
.slider-card-wrapper {
    position: relative;
    margin-top: 30px;
}

.instruction-box {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 24px;
    box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    z-index: 20;
    white-space: nowrap;
}

.img-comp-container {
    position: relative;
    user-select: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    height: 460px;
    overflow: hidden;
    border-radius: 16px;
}

.img-comp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-comp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.img-comp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
}

/* Responsif untuk Tampilan HP */
@media (max-width: 992px) {
    .hero-section {
        border-bottom-right-radius: 120px;
        padding-top: 30px;
        padding-bottom: 40px;
    }
    
    .img-comp-container {
        height: 400px; /* Tinggi di HP */
        max-width: 320px; /* Lebar maksimal dikunci agar proporsional di layar kecil */
    }

    /* Mengunci ukuran wrapper dalam khusus HP agar rasionya persis sama */
    .inner-img-wrapper {
        width: 320px !important;
        height: 400px !important;
    }
}
/* --- STYLING MODUL PROMO & PESAN SEKARANG --- */
.promo-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.btn-order-glow {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    padding: 14px 20px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-order-glow:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

/* Kotak Hitung Mundur Waktu */
.countdown-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 6px 12px;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 1px;
}
/* --- STYLING NOTIFIKASI PEMBELIAN REAL-TIME --- */
.toast-notification {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    z-index: 9999;
    max-width: 300px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.5s ease, fadeOut 0.5s ease 4.5s;
    transition: all 0.3s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* --- STYLING SECTION "SKINCARE SAJA KADANG TIDAK CUKUP" --- */
.problem-section {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Badge merah melayang di atas judul */
.badge-problem {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Kotak item masalah (Card list) */
/* Efek interaktif modul masalah kulit */
.problem-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 22px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.problem-card-item:hover {
    border-color: #93c5fd;
    transform: translateY(-2px);
}

/* Kondisi saat modul aktif/dipilih */
.problem-card-item.active-problem {
    border: 2px solid #3b82f6;
    background: linear-gradient(to right, #eff6ff, #ffffff);
    box-shadow: 0 10px 20px -3px rgba(59, 130, 246, 0.1);
}

/* Gambar utama di kanan dengan efek transisi */
.problem-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    max-width: 480px;
    margin: 0 auto;
}

.problem-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease-in-out;
}
/* --- STYLING SECTION "SOLUSI DARI DALAM" (GRADASI PINK-BIRU) --- */
.solution-section {
    position: relative;
    background: linear-gradient(135deg, #fce7f3 0%, #fae8ff 30%, #bfdbfe 70%, #93c5fd 100%) !important;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-left: 80px;
    margin-right: 80px;
    border-radius: 30px;
}

/* Kotak Fitur Kecil di Kanan */
.solution-feature-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.solution-feature-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -3px rgba(59, 130, 246, 0.1);
}

.solution-feature-item.active-solution {
    border: 2px solid #3b82f6;
    background: #ffffff;
}

/* Kartu Badge Sertifikasi di Bawah */
.cert-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
}

/* Responsif untuk Tampilan HP */
@media (max-width: 992px) {
    .solution-section {
        margin-left: 15px;
        margin-right: 15px;
        border-radius: 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* --- STYLING SECTION TESTIMONI HORIZONTAL SCROLL --- */
.testimonial-section {
    background-color: #f8fafc;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Container Scroll Menyamping */
.testimonial-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

/* Menyembunyikan scrollbar agar bersih tapi tetap bisa digeser */
.testimonial-scroll-container::-webkit-scrollbar {
    height: 8px;
}
.testimonial-scroll-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}
.testimonial-scroll-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.testimonial-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Kartu Testimoni */
.testimonial-card-item {
    flex: 0 0 280px; /* Lebar tetap untuk desktop */
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.testimonial-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}

.testimonial-img:hover {
    opacity: 0.95;
}

/* Modal Lightbox untuk Zoom Gambar */
.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-modal img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsif khusus HP: Menampilkan tepat 2 kartu dalam satu layar (lebar layar dibagi 2 dikurangi gap) */
@media (max-width: 768px) {
    .testimonial-card-item {
        flex: 0 0 calc(50% - 10px); /* 50% lebar layar untuk 2 kartu */
    }
}
/* --- STYLING SECTION "KAMU WAJIB TAHU" (CEK PRODUK PALSU) --- */
.warning-section {
    background-color: #f8fafc;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Container Box Besar Berwarna Putih */
.warning-wrapper-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

/* Badge Biru Peringatan di atas judul */
.badge-warning-top {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    padding: 6px 20px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Badge Merah Kecil (Pastikan keaslian produk) */
.badge-verify-sub {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 50px;
    padding: 5px 16px;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Kotak Item Ciri-Ciri Keaslian (Grid 3 Kolom) */
.original-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.original-feature-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.05);
}

/* Kotak Hijau Spesial untuk BPOM di Grid Terakhir */
.bpom-verify-card {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .warning-wrapper-box {
        padding: 20px 15px;
    }
}
/* --- STYLING SECTION "MENGAPA SUPLEMEN LEBIH EFEKTIF" --- */
.effectiveness-section {
    background-color: #f8fafc;
    padding-bottom: 80px;
}

/* Box Putih Besar Pembungkus */
.effectiveness-wrapper-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

/* Item Poin Keunggulan Kiri */
.eff-point-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.eff-point-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Styling Progress Bar Perbandingan Efektivitas */
.comparison-bar-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.progress {
    height: 10px;
    border-radius: 10px;
    background-color: #e2e8f0;
}

.progress-bar {
    border-radius: 10px;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .effectiveness-wrapper-box {
        padding: 20px 15px;
    }
}
/* --- STYLING SECTION "PILIH PAKET LUXSKIN GLUTA" --- */
.product-section {
    background-color: #f8fafc;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Badge Kecil di atas Judul */
.badge-product-top {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    padding: 5px 16px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
}

/* Kartu Paket Produk */
.product-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
}

/* Kartu Khusus Paling Populer (Border Biru) */
.product-card-item.popular-card {
    border: 2px solid #3b82f6;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1);
}

/* Label Paling Populer di atas kartu */
.badge-popular-floating {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Gambar Botol Paket */
.product-img-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #f1f5f9;
}

.product-img-box img {
    max-height: 160px;
    object-fit: cover;
}

/* Badge Keunggulan di Bawah */
.product-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .product-card-item {
        padding: 20px;
    }
}
/* --- LATAR BELAKANG GRADASI PINK-BIRU UNTUK SECTION --- */
.bg-gradient-pink-blue {
    /* Gradasi dari pink lembut ke biru soft yang estetik dan modern */
    background: linear-gradient(135deg, #fdf2f8 0%, #fae8ff 35%, #e0f2fe 70%, #bae6fd 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Tambahan efek dekoratif opsional agar gradasi terlihat lebih hidup dan berdimensi */
.bg-gradient-pink-blue::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(244, 114, 182, 0.1);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.bg-gradient-pink-blue::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(56, 189, 248, 0.15);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

/* Memastikan konten di dalam section tetap berada di atas efek dekoratif */
.bg-gradient-pink-blue > .container {
    position: relative;
    z-index: 1;
}
/* --- STYLING SECTION "METODE PEMBAYARAN & GARANSI" (SECURE & PROFESIONAL) --- */
.payment-guarantee-section {
    background: linear-gradient(180deg, #f8fafc 0%, #fdf2f8 50%, #f8fafc 100%);
    padding-top: 90px;
    padding-bottom: 90px;
}

/* Badge Metode Pembayaran Modern & Manis */
.payment-badge-item {
    background: #ffffff;
    border: 1px solid #fbcfe8; /* Sentuhan border pink lembut */
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.08);
    transition: all 0.3s ease;
}

.payment-badge-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.15);
}

/* Box Putih Besar Pembungkus Garansi dengan Sentuhan Profesional */
.guarantee-wrapper-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Aksen Garis Gradasi di Atas Box */
.guarantee-wrapper-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ec4899, #3b82f6);
}

/* Sub Box Risiko Nol di Kanan (Tampil Manis & Elegan) */
.risk-free-box {
    background: linear-gradient(135deg, #fdf2f8 0%, #f0fdf4 100%);
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.05);
}

/* Poin Checklist Garansi */
.guarantee-checklist {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    margin-bottom: 14px;
}

/* Tombol Utama yang Lebih Menonjol & Secure */
.btn-secure-order {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-secure-order:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Badge Kepercayaan Kecil di Bawah Tombol */
.bottom-trust-badge {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-size: 12px;
    color: #475569;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.bottom-trust-badge:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

/* Responsif HP */
@media (max-width: 768px) {
    .guarantee-wrapper-box {
        padding: 25px 20px;
    }
}

/* --- STYLING SECTION FAQ (PERTANYAAN YANG SERING DITANYAKAN) --- */
.faq-section {
    background-color: #f8fafc;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Badge Kecil di atas Judul FAQ */
.badge-faq-top {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
}

/* Styling Bootstrap Accordion agar lebih manis & modern */
.faq-section .accordion-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-section .accordion-button {
    background-color: #ffffff;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
    padding: 20px;
    box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #2563eb;
    border-bottom: 1px solid #f1f5f9;
}

.faq-section .accordion-body {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    padding: 20px;
    background-color: #ffffff;
}

/* Lebar Kontainer FAQ agar tidak terlalu melebar */
.faq-container-width {
    max-width: 800px;
    margin: 0 auto;
}

.cta-contact {
    position: relative;
    overflow: hidden;

    padding: 72px 20px;

    background: linear-gradient(
        135deg,
        #6d28d9 0%,
        #8b3fe8 45%,
        #d946a8 100%
    );

    color: #ffffff;
}

/* efek cahaya lembut */

.cta-contact::before {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(255,255,255,.08);

    border-radius: 50%;

    top: -180px;
    left: -100px;
}

.cta-contact::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    background: rgba(255,255,255,.06);

    border-radius: 50%;

    bottom: -180px;
    right: -80px;
}


/* CONTENT */

.cta-contact-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
    margin: auto;

    text-align: center;
}


/* BADGE */

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 14px;

    border-radius: 50px;

        background: linear-gradient(135deg, #4f46e5, #9333ea);
    border: 1px solid rgba(255,255,255,.12);

    color: #ffffff;

    font-size: 10px;
    font-weight: 600;

    margin-bottom: 14px;
}

.cta-badge i {
    font-size: 10px;
}


/* TITLE */

.cta-contact h2 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 25px;
    font-weight: 700;

    letter-spacing: -.3px;
}


/* DESCRIPTION */

.cta-contact p {
    margin: 0 auto 25px;

    color: rgba(255,255,255,.9);

    font-size: 11px;
    line-height: 1.6;
}


/* WHATSAPP BUTTON */

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 22px;

    background: #2ed477;
    color: #ffffff;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(0,0,0,.12);

    transition: all .25s ease;
}

.cta-whatsapp i {
    font-size: 14px;
}

.cta-whatsapp:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}


/* MOBILE */

@media (max-width: 576px) {

    .cta-contact {
        padding: 60px 20px;
    }

    .cta-contact h2 {
        font-size: 22px;
    }

    .cta-contact p {
        font-size: 11px;
    }

    .cta-whatsapp {
        padding: 11px 18px;
        font-size: 10px;
    }

}
/* =====================================================
   FOOTER — PURPLE THEME
===================================================== */

.main-footer {
    background: #180b2e;
    color: #fff;
    padding: 42px 20px 22px;
}


/* FOOTER CONTENT */

.footer-content {
    max-width: 950px;
    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1.4fr;

    gap: 80px;
}


/* BRAND */

.footer-brand h3 {
    margin: 0 0 12px;

    font-size: 18px;
    font-weight: 700;

    color: #fff;
}

.footer-brand h3 span {
    color: #9b5cff;
}

.footer-brand p {
    max-width: 300px;

    margin: 0;

    color: #a99bbd;

    font-size: 12px;

    line-height: 1.7;
}


/* SOCIAL */

.footer-social {
    display: flex;
    gap: 9px;

    margin-top: 16px;
}

.footer-social a {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #291542;

    color: #ddd3eb;

    font-size: 12px;

    text-decoration: none;

    transition: .2s;
}

.footer-social a:hover {
    background: #7c3aed;
    color: #fff;
}


/* HEADINGS */

.footer-links h4,
.footer-contact h4 {
    margin: 0 0 14px;

    color: #fff;

    font-size: 15px;

    font-weight: 700;
}


/* QUICK LINKS */

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a {
    color: #a99bbd;

    font-size: 11px;

    text-decoration: none;

    margin-bottom: 9px;

    transition: .2s;
}

.footer-links a:hover {
    color: #b477ff;
}


/* CONTACT */

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact > a,
.footer-location {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #a99bbd;

    font-size: 11px;

    text-decoration: none;

    margin-bottom: 11px;
}

.footer-contact i {
    color: #9b5cff;
    font-size: 11px;
}


/* CERTIFICATION */

.footer-certifications {
    display: flex;
    gap: 9px;

    margin-top: 3px;
}

.footer-certifications span {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 55px;
    height: 38px;

    padding: 4px;

    background: #24113d;

    border-radius: 4px;

    text-align: center;
}

.footer-certifications b {
    color: #a970ff;
    font-size: 8px;
}

.footer-certifications small {
    color: #806c99;
    font-size: 7px;
}


/* LOGIN ADMIN */

.footer-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-top: 13px;

    padding: 7px 12px;

    border: 1px solid #3b2755;

    border-radius: 5px;

    color: #a99bbd !important;

    font-size: 9px !important;
}

.footer-login:hover {
    background: #291542;
    color: #fff !important;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    max-width: 950px;

    margin: 35px auto 0;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.12);

    display: flex;

    justify-content: space-between;

    color: #806c99;

    font-size: 9px;
}

.footer-bottom i {
    color: #9b5cff;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}

@media (max-width: 480px) {

    .main-footer {
        padding: 35px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-brand h3 {
        font-size: 17px;
    }

    .footer-brand p {
        font-size: 11px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 13px;
    }

    .footer-links a,
    .footer-contact > a,
    .footer-location {
        font-size: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;

        font-size: 8px;
        line-height: 1.5;
    }

}

/* Styling Utama Floating WhatsApp */
        .wa-float-container {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 9999;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Tombol Ikon Melayang (Default) */
        .wa-float-btn {
            background-color: #25d366;
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: transform 0.3s ease;
            position: relative;
        }

        .wa-float-btn:hover {
            transform: scale(1.1);
        }

        /* Tooltip Teks "Chat via WhatsApp" */
        .wa-tooltip {
            position: absolute;
            left: 70px;
            background: #111827;
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 13px;
            white-space: nowrap;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            display: none;
            align-items: center;
        }

        .wa-float-container:hover .wa-tooltip {
            display: flex;
        }

        /* Kotak Pop-up Chat */
        .wa-popup-box {
            position: absolute;
            bottom: 75px;
            left: 0;
            width: 330px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            display: none;
            flex-direction: column;
            animation: fadeIn 0.3s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Header Pop-up */
        .wa-popup-header {
            background-color: #22c55e;
            color: white;
            padding: 16px;
            position: relative;
        }

        .wa-popup-header h3 {
            margin: 0;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .wa-popup-header p {
            margin: 4px 0 0 0;
            font-size: 12px;
            opacity: 0.9;
        }

        .wa-close-btn {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(0, 0, 0, 0.15);
            border: none;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            transition: background 0.2s;
        }

        .wa-close-btn:hover {
            background: rgba(0, 0, 0, 0.3);
        }

        /* Konten / Body Pop-up */
        .wa-popup-body {
            padding: 15px;
            background: #ffffff;
        }

        .wa-popup-body label {
            font-size: 12px;
            font-weight: 600;
            color: #374151;
            display: block;
            margin-bottom: 6px;
        }

        .wa-textarea {
            width: 100%;
            height: 80px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 10px;
            font-size: 13px;
            font-family: inherit;
            resize: none;
            box-sizing: border-box;
            outline: none;
            transition: border-color 0.2s;
        }

        .wa-textarea:focus {
            border-color: #22c55e;
        }

        .wa-hint {
            font-size: 10px;
            color: #6b7280;
            margin-top: 6px;
            margin-bottom: 12px;
        }

        /* Pesan Cepat (Chips) */
        .wa-quick-messages {
            margin-bottom: 12px;
        }

        .wa-quick-title {
            font-size: 11px;
            font-weight: 600;
            color: #4b5563;
            margin-bottom: 6px;
        }

        .wa-chip-container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .wa-chip {
            background: #f3f4f6;
            border: 1px solid #e5e7eb;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 11px;
            color: #374151;
            cursor: pointer;
            transition: all 0.2s;
        }

        .wa-chip:hover {
            background: #e5e7eb;
            color: #111827;
        }

        /* Tombol Kirim ke WhatsApp */
        .wa-send-btn {
            background-color: #6b7280;
            color: white;
            border: none;
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.2s;
        }

        .wa-send-btn:hover {
            background-color: #4b5563;
        }

        /* Footer Pop-up */
        .wa-popup-footer {
            padding: 10px 15px;
            background: #f9fafb;
            border-top: 1px solid #f3f4f6;
            font-size: 10px;
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 5px;
        }
		/* Styling Tombol Back to Top */
    #backToTopBtn {
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 9999;
        background-color: #22c55e; /* Warna hijau (bisa disesuaikan, misal biru atau warna brand Anda) */
        color: white;
        border: none;
        outline: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }

    /* Efek saat tombol muncul */
    #backToTopBtn.show {
        opacity: 1;
        visibility: visible;
    }

    /* Efek hover dan animasi naik dikit */
    #backToTopBtn:hover {
        background-color: #16a34a;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
/* =====================================================
   HOT VIDEO — STORY / VIDEO CLIP
===================================================== */

.hot-video {
    position: fixed;

    right: 20px;
    bottom: 82px;

    z-index: 999;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;

    text-decoration: none;

    transition: .3s ease;
}


/* STORY RING */

.hot-video-ring {
    width: 58px;
    height: 58px;

    padding: 3px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #7c3aed,
        #a855f7,
        #ec4899
    );

    box-shadow:
        0 5px 20px rgba(124, 58, 237, .35);

    animation: videoPulse 2s infinite;
}


/* INNER CIRCLE */

.hot-video-inner {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #180b2e;

    border: 2px solid #fff;

    color: #fff;
}


/* PLAY ICON */

.hot-video-inner i {
    font-size: 17px;

    margin-left: 2px;
}


/* LABEL */

.hot-video-label {
    padding: 4px 9px;

    border-radius: 10px;

    background: #180b2e;

    color: #fff;

    font-size: 9px;
    font-weight: 700;

    line-height: 1;

    box-shadow:
        0 3px 12px rgba(0,0,0,.18);
}


/* HOVER */

.hot-video:hover {
    transform: translateY(-4px);
}

.hot-video:hover .hot-video-ring {
    box-shadow:
        0 8px 28px rgba(219, 74, 168, .5);
}


/* PULSE */

@keyframes videoPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(168, 85, 247, .35);
    }

    70% {
        box-shadow:
            0 0 0 9px rgba(168, 85, 247, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(168, 85, 247, 0);
    }

}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 20px;

    z-index: 999;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #180b2e;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    box-shadow:
        0 8px 25px rgba(24, 11, 46, .25);

    transition: all .25s ease;
}

.back-to-top:hover {
    background: #7c3aed;

    color: #fff;

    transform: translateY(-3px);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 480px) {

    .hot-video {
        right: 15px;
        bottom: 73px;
    }

    .hot-video-ring {
        width: 52px;
        height: 52px;
    }

    .hot-video-inner i {
        font-size: 15px;
    }

    .hot-video-label {
        font-size: 8px;
    }

    .back-to-top {
        right: 17px;
        bottom: 17px;

        width: 42px;
        height: 42px;
    }

}
.decor{text-decoration:none;}	