:root {
    --gold: #FFC107; 
    --gold-dark: #e0a800;
    --black: #111111;
    --dark-grey: #1a1a1a;
    --text-body: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --shopee-orange: #ee4d2d;
    --whatsapp-green: #25d366;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hard: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--black); font-weight: 700; }
.text-highlight { color: var(--gold-dark); }
.text-yellow { color: var(--gold); }
.text-white { color: var(--white); }
.text-dark { color: var(--black); }
.text-muted { color: var(--text-muted); font-size: 0.9rem; }
.section-title { font-size: 2.5rem; margin-bottom: 0.5rem; line-height: 1.2; }
.section-sub { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; letter-spacing: 3px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; display: block; margin-bottom: 10px; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }
.bg-light { background-color: var(--off-white); }
.bg-dark { background-color: var(--black); color: var(--white); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-2 { margin-top: 0.8rem; }
.mb-5 { margin-bottom: 3rem; }
.w-100 { width: 100%; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-weight: 600; 
    text-decoration: none; transition: var(--transition); cursor: pointer;
    font-size: 1rem; border: 2px solid transparent;
}
.btn-primary { background-color: var(--gold); color: var(--black); }
.btn-primary:hover { background-color: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 193, 7, 0.4); }

.btn-orange { background-color: var(--shopee-orange); color: var(--white); }
.btn-orange:hover { background-color: #d73211; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(238, 77, 45, 0.4); }

.btn-gold { background: linear-gradient(45deg, var(--gold), #ffdb6e); color: var(--black); border: none; }
.btn-gold:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 193, 7, 0.6); }

.btn-outline { 
    border: 2px solid var(--white); 
    color: var(--white); 
    background: rgba(255,255,255,0.1); 
    backdrop-filter: blur(5px);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* --- NAVBAR (Desktop Default) --- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 15px 0; z-index: 1000; transition: var(--transition); background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); }
.navbar.scrolled { background: var(--white); padding: 10px 0; box-shadow: var(--shadow-soft); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); text-decoration: none; line-height: 1; display: flex; flex-direction: column; }
.logo span { color: var(--gold); }
.logo small { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 2px; opacity: 0.9; }
.navbar.scrolled .logo { color: var(--black); }
.nav-menu { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-link { color: var(--white); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: var(--transition); }
.nav-link:hover { color: var(--gold); }
.navbar.scrolled .nav-link { color: var(--text-body); }
.btn-shopee { background: var(--shopee-orange); color: var(--white); padding: 8px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 5px; }
.btn-shopee:hover { background: #d73211; }
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background-color: var(--white); margin: 5px auto; transition: 0.3s; }
.navbar.scrolled .bar { background-color: var(--black); }

/* --- HERO SECTION --- */
.hero { 
    height: 100vh; 
    min-height: 700px; 
    background: url('https://ik.imagekit.io/z8trjkh8f/heromjg.jpg?updatedAt=1768215152210') no-repeat center center/cover; 
    position: relative; 
    display: flex; 
    align-items: center; 
    margin-top: 0; 
    padding-top: 0;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%); }
.hero-content { 
    position: relative; 
    z-index: 2; 
    color: var(--white); 
    max-width: 800px; 
    padding-top: 80px; 
}
.hero-eyebrow { font-family: 'Montserrat', sans-serif; color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 15px; font-weight: 700; }
.hero-title { 
    font-size: 3.6rem; 
    line-height: 1.1; 
    margin-bottom: 25px; 
    color: var(--white); 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}
.hero-subtitle { font-size: 1.2rem; margin-bottom: 40px; opacity: 1; max-width: 600px; font-weight: 400; color: #f0f0f0; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }
.trust-indicators { display: flex; gap: 25px; font-size: 0.9rem; font-weight: 600; color: #fff; }
.trust-indicators i { color: var(--gold); margin-right: 8px; }

/* --- PARTNERS SECTION --- */
.partners-section { padding: 60px 0; border-bottom: 1px solid #eee; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.partner-card { background: var(--white); border: 1px solid #eee; padding: 30px 20px; text-align: center; border-radius: 8px; transition: var(--transition); cursor: default; }
.partner-card:hover { border-color: var(--gold); box-shadow: var(--shadow-soft); transform: translateY(-5px); }
.partner-icon { font-size: 2rem; color: #ccc; margin-bottom: 15px; transition: var(--transition); }
.partner-card:hover .partner-icon { color: var(--gold); }
.partner-card h4 { font-size: 1rem; margin-bottom: 5px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.partner-card p { font-size: 0.8rem; color: var(--text-muted); }

/* --- ABOUT SECTION --- */
.row { display: flex; flex-wrap: wrap; gap: 60px; }
.col-image, .col-text { flex: 1; min-width: 300px; }
.col-image { position: relative; }
.img-tall { min-height: 500px; object-fit: cover; width: 100%; border-radius: 15px; }

.float-badge {
    position: absolute; bottom: 40px; right: -40px;
    background: var(--gold); width: 150px; height: 150px;
    border-radius: 50%; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); text-align: center; line-height: 1.2; padding: 10px; z-index: 2;
}
.float-badge span { font-size: 0.8rem; color: var(--black); display: block; margin-bottom: 5px; }
.float-badge strong { font-size: 1rem; font-weight: 800; color: var(--black); display: block; line-height: 1.1; }

.about-desc p { margin-bottom: 15px; color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.feature-list { list-style: none; margin-top: 25px; }
.feature-list li { margin-bottom: 12px; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 12px; }
.feature-list i { color: var(--gold); background: var(--black); min-width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }

/* --- PRODUCTS SECTION --- */
.header-flex { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }

.product-card { 
    background: var(--white); color: var(--text-body); border-radius: 12px; 
    overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
    transition: var(--transition); display: flex; flex-direction: column; 
}
.product-card:hover { transform: translateY(-5px); }

.product-img { height: 220px; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover img { transform: scale(1.1); }

.badge { position: absolute; top: 15px; left: 15px; background: var(--black); color: var(--white); padding: 5px 12px; font-size: 0.75rem; font-weight: 700; border-radius: 4px; text-transform: uppercase; }
.badge.yellow { background: var(--gold); color: var(--black); }

.product-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 1.2rem; margin-bottom: 5px; }
.product-info .desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; flex-grow: 1; }

.price-list { background-color: #f8f9fa; border-radius: 8px; padding: 10px; margin-bottom: 15px; border: 1px solid #eee; }
.price-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 4px 0; color: var(--text-body); border-bottom: 1px dashed #ddd; }
.price-row:last-child { border-bottom: none; }
.price-row span { color: var(--text-muted); }
.price-row strong { color: var(--black); font-weight: 700; }

.btn-card-full {
    display: block; width: 100%; text-align: center;
    background-color: var(--gold); color: var(--black);
    padding: 12px; border-radius: 50px; font-weight: 700;
    text-decoration: none; transition: var(--transition);
    margin-top: auto; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-card-full:hover {
    background-color: var(--black); color: var(--white);
    transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* --- TESTIMONIALS --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testi-card { background: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: var(--shadow-soft); position: relative; border-left: 5px solid var(--gold); }
.stars { color: var(--gold); margin-bottom: 15px; font-size: 1.1rem; }
.testi-card p { font-style: italic; color: #555; margin-bottom: 20px; }
.user-info strong { display: block; color: var(--black); }
.user-info span { font-size: 0.85rem; color: var(--text-muted); }

/* --- FAQ SECTION --- */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border-bottom: 1px solid #ddd; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-size: 1.1rem; font-weight: 600; color: var(--black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Montserrat', sans-serif; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 20px; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active i { transform: rotate(45deg); transition: var(--transition); color: var(--gold); }

/* --- CTA & FOOTER --- */
.cta-section { background: var(--black); padding: 100px 20px; position: relative; overflow: hidden; }
.cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(255, 193, 7, 0.1) 0%, rgba(0,0,0,0) 70%); pointer-events: none; }
.cta-content { position: relative; z-index: 2; color: var(--white); max-width: 700px; }
.cta-content h2 { font-size: 2.8rem; margin-bottom: 20px; color: var(--gold); }
.cta-content p { font-size: 1.1rem; margin-bottom: 40px; color: #ccc; }
.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); } }

.footer { background: #0a0a0a; color: #888; padding-top: 80px; border-top: 5px solid var(--gold); font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); margin-bottom: 20px; font-weight: 700; }
.footer-logo span { color: var(--gold); }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--gold); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer a { color: #888; text-decoration: none; transition: 0.3s; }
.footer a:hover { color: var(--gold); padding-left: 5px; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; }
.contact-list i { color: var(--gold); margin-top: 4px; }
.social-icons { margin-top: 20px; display: flex; gap: 15px; }
.social-icons a { width: 40px; height: 40px; background: #222; display: flex; justify-content: center; align-items: center; border-radius: 50%; color: var(--white); transition: 0.3s; }
.social-icons a:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); padding: 0; }
.map-container { border-radius: 8px; overflow: hidden; margin-bottom: 15px; border: 1px solid #333; }
.btn-map-link { display: inline-block; font-size: 0.85rem; color: var(--white); border-bottom: 1px dashed var(--gold); padding-bottom: 2px; }
.footer-bottom { border-top: 1px solid #222; padding: 25px 0; text-align: center; font-size: 0.85rem; }

/* --- ANIMATIONS --- */
.fade-in-up { animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; opacity: 0; transform: translateY(40px); }
.fade-in-left { animation: fadeInLeft 1s forwards; opacity: 0; transform: translateX(-40px); }
.fade-in-right { animation: fadeInRight 1s forwards; opacity: 0; transform: translateX(40px); }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { to { opacity: 1; transform: translateX(0); } }

/* ==========================================================================
   MOBILE RESPONSIVE FIXES (REVISI FINAL - TAMPILAN PROFESIONAL)
   ========================================================================== */
@media (max-width: 768px) {
    
    /* 1. GLOBAL LAYOUT & SPACING FIX */
    .container { 
        padding: 0 30px; /* Memberi jarak aman kiri-kanan agar teks tidak nabrak layar */
        width: 100%; 
    }
    .section-padding { 
        padding: 60px 0; /* Jarak vertikal antar section yang lebih proporsional */
    }
    
    /* Reset Font Size Dasar agar tidak kegedean */
    html { font-size: 14px; } 
    p { 
        font-size: 1rem; 
        line-height: 1.7; 
        color: var(--text-muted); 
        margin-bottom: 20px; /* Jarak antar paragraf lebih lega */
    }

    /* 2. NAVBAR (Sidebar Mode) */
    .menu-toggle { display: block; z-index: 2000; }
    .nav-menu { 
        position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
        background: var(--white); flex-direction: column; 
        padding: 80px 30px; box-shadow: -10px 0 30px rgba(0,0,0,0.1); 
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); 
        align-items: flex-start; z-index: 1500;
        justify-content: flex-start;
    }
    .nav-menu.active { right: 0; }
    .nav-link { 
        color: var(--black); font-size: 1.1rem; display: block; 
        width: 100%; padding: 15px 0; border-bottom: 1px solid #f0f0f0; 
    }
    .navbar.scrolled .bar, .nav-menu.active ~ .menu-toggle .bar { background-color: var(--black); }

    /* 3. HERO SECTION (Perbaikan Hirarki & Tombol) */
    .hero { 
        min-height: auto; height: auto; 
        padding: 140px 0 80px 0; /* Padding atas pas untuk navbar, bawah lega */
        text-align: center; display: block; 
    }
    .hero-content { margin: 0 auto; width: 100%; }
    
    .hero-eyebrow { 
        font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 15px; 
        display: inline-block; background: rgba(0,0,0,0.3); 
        padding: 5px 15px; border-radius: 20px; /* Biar lebih pop-up di background gelap */
    }
    
    .hero-title { 
        font-size: 2.1rem; /* Ukuran diturunkan agar elegan */
        line-height: 1.3; 
        margin-bottom: 20px; 
        padding: 0 10px; /* Mencegah teks terlalu mepet pinggir */
    }
    
    .hero-subtitle { 
        font-size: 1rem; margin-bottom: 35px; line-height: 1.6; 
        padding: 0 10px; opacity: 0.9;
    }

    /* Fix Tombol Hero: Tidak Full Width, tapi proporsional */
    .hero-buttons { 
        display: flex; flex-direction: column; align-items: center; 
        gap: 15px; width: 100%; 
    }
    .btn { 
        width: auto; /* Jangan full width */
        min-width: 200px; /* Lebar minimal agar terlihat rapi */
        padding: 12px 30px; 
        font-size: 0.95rem;
    }
    
    .trust-indicators { 
        justify-content: center; flex-direction: row; flex-wrap: wrap; 
        gap: 15px; margin-top: 30px; font-size: 0.8rem; 
    }

    /* 4. ABOUT SECTION (Fix Gambar & Stempel) */
    .row { gap: 30px; }
    .col-image { order: -1; margin-bottom: 10px; position: relative; }
    
    .img-tall { 
        height: 300px; /* Tinggi gambar dibatasi */
        object-fit: cover; 
        border-radius: 20px; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    /* Badge Stempel: Ditaruh di pojok kanan bawah DALAM gambar */
    .float-badge { 
        width: 100px; height: 100px; 
        right: 15px; bottom: -15px; /* Sedikit offset keluar artistik */
        padding: 8px;
        background: var(--gold);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .float-badge strong { font-size: 0.75rem; line-height: 1.2; }
    .float-badge span { font-size: 0.65rem; margin-bottom: 2px; }

    .section-title { font-size: 1.75rem; margin-bottom: 20px; }
    .about-desc { padding: 0; text-align: left; }
    .feature-list li { font-size: 0.9rem; }

    /* 5. CTA SECTION (Fix Lebar & Hirarki) */
    .cta-section { padding: 70px 0; text-align: center; }
    .cta-content h2 { 
        font-size: 2rem; /* Judul tidak teriak */
        line-height: 1.3;
        margin-bottom: 15px; 
        padding: 0 10px;
    }
    .cta-content p { 
        font-size: 1rem; margin-bottom: 30px; 
        padding: 0 15px; opacity: 0.9;
    }
    .cta-buttons .btn { width: auto; min-width: 220px; }

    /* 6. Fix Lainnya (Product, FAQ, Footer) */
    .header-flex { text-align: left; align-items: flex-start; margin-bottom: 30px; }
    .product-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .faq-question { font-size: 1rem; padding: 15px 0; }
    
    .footer-grid { text-align: center; gap: 40px; }
    .footer h4::after { left: 50%; transform: translateX(-50%); }
    .social-icons, .contact-list li { justify-content: center; }
}
/* ==========================================================================
   PATCH REVISI: WARNA & FAQ FIX
   ========================================================================== */

/* 1. PERBAIKAN WARNA (Agar lebih putih/terang di background gelap) */

/* Warna sub-judul "KATALOG PRODUK" di background gelap */
.bg-dark .section-sub {
    color: rgba(255, 255, 255, 0.8) !important; 
}

/* Warna deskripsi "Pilih varian..." di background gelap */
.bg-dark .text-muted {
    color: rgba(255, 255, 255, 0.7) !important; /* Dibuat abu-abu terang */
}

/* Warna Teks Footer (Deskripsi & Link) */
.footer {
    color: #cccccc !important; /* Abu-abu muda, hampir putih */
}
.footer p, .footer a {
    color: #cccccc !important;
}
.footer a:hover {
    color: var(--gold) !important;
}

/* 2. PERBAIKAN FAQ DI HP (Agar teks tidak nabrak tombol +) */
@media (max-width: 768px) {
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center; /* Ikon dan teks sejajar vertikal */
        gap: 20px; /* MEMBERI JARAK AMAN antara teks dan ikon */
        text-align: left; /* Teks rata kiri */
        width: 100%;
    }

    /* Memastikan ikon (+) tidak gepeng/mengecil kalau teksnya panjang */
    .faq-question i {
        flex-shrink: 0; 
        margin-left: 0; /* Reset margin */
    }
}
/* ==========================================================================
   PATCH: HEADER PRODUK RATA TENGAH
   ========================================================================== */
.header-flex {
    justify-content: center !important; /* Memusatkan secara horizontal (Flex) */
    text-align: center !important;      /* Memusatkan teks */
    align-items: center !important;     /* Memusatkan item vertikal */
    flex-direction: column !important;  /* Menumpuk judul & deskripsi */
    width: 100%;
}

.header-flex div {
    width: 100%;
    max-width: 800px; /* Membatasi lebar agar teks tidak terlalu panjang di PC */
    margin: 0 auto;
}

/* Memastikan warna deskripsi tetap terang (sesuai request sebelumnya) */
.header-flex p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 10px;
}
/* ==========================================================================
   PATCH: HERO LIGHTER & PARTNER ICONS POP-UP
   ========================================================================== */

/* 1. Membuat Gradasi Hero Lebih Terang */
.hero-overlay {
    /* Sebelumnya 0.9 (sangat gelap), diubah ke 0.7 dan 0.4 agar lebih terang */
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%) !important;
}

/* ==========================================================================
   TOMBOL BACK TO TOP (KOTAK MINIMALIS)
   ========================================================================== */
#backToTop {
    display: none; /* Diatur oleh JS nanti */
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;       /* Ukuran kotak kecil */
    height: 45px;
    background-color: #1a1a1a; /* Hitam elegan, bukan hitam pekat */
    color: #ffffff;
    border: none;
    border-radius: 6px; /* Sudut sedikit melengkung (kotak modern) */
    cursor: pointer;
    z-index: 9999;
    
    /* Flexbox biar panah pas di tengah */
    justify-content: center;
    align-items: center;
    
    /* Transisi halus */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Efek saat mouse diarahkan (Hover) */
#backToTop:hover {
    background-color: var(--gold); /* Berubah jadi emas brand Anda */
    color: #000000;
    transform: translateY(-3px); /* Naik sedikit, tidak lebay */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Penyesuaian di HP agar tidak menutupi konten penting */
@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        opacity: 0.9;
    }
}
/* ==========================================================================
   REVISI FINAL: PARTNER ICONS (Garis Balik, Shadow Ilang)
   ========================================================================== */

/* 1. Kondisi Awal (Diam) */
.partner-card {
    border: 1px solid #eee !important; /* Garis abu-abu tipis balik lagi */
    box-shadow: none !important; /* Gak usah pake shadow aneh-aneh */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    background: #fff;
}

/* Warna ikon default langsung OREN/EMAS (Sesuai request biar gak mati) */
.partner-icon {
    color: var(--gold) !important;
    transition: transform 0.3s ease !important;
}

/* 2. Kondisi Pas Di-Hover (Gerak) */
.partner-card:hover {
    transform: translateY(-5px) !important; /* Tetap naik dikit biar interaktif */
    border-color: var(--gold) !important; /* GARISNYA JADI OREN */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important; /* Shadow abu tipis aja buat efek 3D, bukan oren */
}

/* Ikon ikut membesar dikit pas di-hover */
.partner-card:hover .partner-icon {
    transform: scale(1.1);
}
/* ==========================================================================
   REVISI HERO: BADGE VERIFIED & DESKTOP HIERARCHY
   ========================================================================== */

/* 1. BADGE KUNING "SUPPLIER TERPERCAYA" (Berlaku HP & Desktop) */
.hero-eyebrow {
    background-color: var(--gold);      /* Background Kuning */
    color: var(--black) !important;     /* Teks Hitam Tegas */
    display: inline-flex;               /* Agar ikon & teks sejajar rapi */
    align-items: center;
    gap: 10px;                          /* Jarak ikon ke teks */
    padding: 10px 24px;                 /* Padding biar bentuknya 'Pill' cantik */
    border-radius: 50px;                /* Sudut membulat total */
    font-weight: 800;                   /* Font tebal */
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 30px;                /* Jarak ke Judul Utama */
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3); /* Glowing effect halus */
    text-transform: uppercase;
    width: auto;                        /* Lebar menyesuaikan teks */
}

/* Biar di HP badge-nya ada di tengah */
@media (max-width: 768px) {
    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.75rem;
        padding: 8px 20px;
    }
}

/* ==========================================================================
   FIX DARURAT: HERO DESKTOP (Navbar & Potongan Bawah)
   ========================================================================== */

/* 1. Reset Wadah Hero biar fleksibel (Gak kaku 100vh) */
.hero {
    height: auto !important;           /* Biarkan tinggi menyesuaikan isi */
    min-height: 100vh !important;      /* Minimal setinggi layar */
    padding-top: 120px !important;     /* TURUNIN KONTEN BIAR GAK KETUTUP NAVBAR */
    padding-bottom: 60px !important;   /* Kasih napas di bawah biar list gak kepotong */
    align-items: center !important;    /* Tetap rata tengah vertikal */
}

/* 2. Penyesuaian Konten Desktop */
@media (min-width: 769px) {
    .hero-content {
        padding-top: 40px !important; /* Tambahan turun dikit lagi khusus desktop */
        margin-bottom: 0 !important;
    }
    
    /* Kurangi sedikit margin judul biar gak terlalu makan tempat ke bawah */
    .hero-title {
        margin-bottom: 25px !important; 
    }
    
    .hero-subtitle {
        margin-bottom: 40px !important;
    }
    
    /* Pastikan Trust Indicator (List Bawah) aman */
    .trust-indicators {
        margin-top: 50px !important;
        padding-bottom: 10px; /* Safety padding */
    }
}
/* ==========================================================================
   FIX REVISI: HERO MOBILE (Biar Gak Kepanjangan)
   ========================================================================== */
@media (max-width: 768px) {
    .hero {
        /* Kita reset tinggi dan paddingnya khusus HP */
        min-height: auto !important;       /* Jangan maksa setinggi layar */
        height: auto !important;           /* Tinggi ngikutin isi konten aja */
        
        /* Kurangi jarak atas & bawah biar rapet */
        padding-top: 110px !important;     /* Cukup segini biar pas di bawah navbar HP */
        padding-bottom: 40px !important;   /* Jarak bawah dikit aja */
    }

    .hero-content {
        padding-top: 0 !important;         /* Hapus padding tambahan konten */
    }

    .hero-subtitle {
        margin-bottom: 30px !important;    /* Rapatkan jarak deskripsi ke tombol */
    }

    /* Pastikan indikator bawah (checklist) gak kejauhan */
    .trust-indicators {
        margin-top: 30px !important;
        padding-bottom: 0 !important;
    }
}
