:root {
    --primary: #10b981;
    --accent: #34d399;
    --bg-dark: #020617;
    --glass: rgba(255, 255, 255, 0.05);
    --text-light: #f0fdf4;
    --primary-glow: rgba(16, 185, 129, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top left, #064e3b, transparent 40%),
                      radial-gradient(circle at bottom right, #022c22, transparent 40%);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: linear-gradient(45deg, #020617, #064e3b, #020617);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}
html, body {
    height: 100%;
    margin: 0;
}
.content-wrapper {
    flex: 1 0 auto; 
}

header {
    background: rgba(2, 6, 23, 0.85);
    position: relative; width: 100%; top: 0; z-index: 1000;
    border-bottom: 2px solid var(--primary);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
    top: 0;             
    z-index: 1000;
}
.announcement-bar {
    position: fixed;    
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;       
    background: #064e3b; 
    z-index: 2000;     
    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    max-width: 1200px; margin: 0 auto; padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%;
}
.logo-text { font-weight: 800; font-size: 1.5rem; letter-spacing: 2px; transition: 0.3s; }
.logo-text:hover { transform: scale(1.05); text-shadow: 0 0 15px var(--primary); }

.logo-container { display: flex; align-items: center; gap: 12px; }
.main-logo {
    height: 100px; 
    width: auto;  
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--primary-glow)); 
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.1) rotate(-5deg); 
}

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: #94a3b8; font-weight: 500; transition: 0.3s; cursor: pointer;position: relative; padding: 5px 0}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-nav { background: var(--primary); color: white !important; padding: 8px 18px; border-radius: 6px; }
.mobile-only { display: none; }
.desktop-only { display: block; }
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 3000; 
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 5px;
    transition: 0.3s;
}
.container { padding: 20px; margin-top: 40px;}

.page { display: none; animation: fadeIn 0.4s ease-out; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Hero */
.hero { display: flex; align-items: center; gap: 40px; min-height: 60vh; }
.hero-text h1 { font-size: 4.5rem;line-height: 1.1;margin: 20px;font-weight: 900;}
.hero-text h1 span { color: var(--primary); text-shadow: 0 0 20px rgba(16, 185, 129, 0.4); }
.hero-image img { width: 100%; border-radius: 20px; border: 1px solid var(--primary); animation: float 6s ease-in-out infinite; box-shadow: 0 0 30px var(--primary-glow);}
.hero-premium {
    position: relative;
    padding: 100px 5%;
    background: #05161a;
    overflow: hidden;
}
.hero-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 2;
    position: relative;
}

.hero-text span { 
    color: var(--primary); 
    background: linear-gradient(to right, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.countdown {
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #34d399;
    background: rgba(0,0,0,0.3);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
}
.countdown-timer { font-family: 'Courier New', monospace; font-weight: bold; color: white; font-size: 1.1rem; }
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}
/* Value Cards */
.value-section {
    padding: 80px 5%;
    background: rgba(255, 255, 255, 0.02);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    text-align: center;
}

.value-card i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 136, 0.05);
    border-color: #00ff88;
}

/* Featured Grid */
/* Container Utama */
.featured-preview { 
    padding: 60px 5%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* Grid System */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Container Gambar di dalam Kartu */
.card-img-container {
    width: 100%;
    height: 200px; /* Tinggi kotak gambar */
    background: #fff; /* Latar putih agar gambar terlihat jelas */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 10px; /* Ruang agar gambar tidak nempel ke pinggir */
}

/* Gambar itu sendiri */
.card-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* KUNCI: Gambar tidak akan terpotong, tapi mengecil agar muat */
    transition: transform 0.3s ease;
}

/* Efek Hover */
.product-card:hover .card-img-container img {
    transform: scale(1.08); /* Gambar sedikit membesar saat disentuh */
}

/* Teks Info Produk */
.product-card h4 {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: center;
}

.product-card .price {
    color: #00ff88;
    font-weight: 800;
    text-align: center;
}
/* Social Proof */
.social-proof {
    padding: 80px 5%;
    background: linear-gradient(to bottom, transparent, #001a14);
}

.proof-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 50px;
}

.stat-item h2 {
    font-size: 3rem;
    color: #00ff88;
}
/* Produk */
.shop-controls { margin-bottom: 50px; text-align: center; }
.search-box input {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    color: white; padding: 15px 50px; border-radius: 50px;
    width: 100%; max-width: 600px; transition: 0.3s;
}
.search-box input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 20px var(--primary-glow);
}

.shop-controls {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px 5px 5px 15px; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 20px auto;
}

.search-box input {
    flex: 1; 
    background: transparent;
    padding: 12px 10px; 
    margin-bottom: 0;
    font-size: 1rem;
    color: white;
    width: 100%; 
}
.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.product-card {
    background: var(--glass); border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px; padding: 20px; text-align: center; transition: 0.3s;
}
.product-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.product-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; }
.product-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.product-card .price { color: var(--primary); font-size: 1.2rem; font-weight: bold; }
.btn-primary {
    background: var(--primary); color: white; border: none; padding: 15px 30px;
    border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.btn-primary:hover { background: var(--accent); transform: scale(1.05); }

input, textarea { width: 100%; padding: 12px; margin-bottom: 15px; background: rgba(255,255,255,0.05); border: 1px solid var(--primary); color: white; border-radius: 5px; }



.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cat-btn {
    background: var(--glass);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.cat-btn.active, .cat-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.badge {
    background: var(--primary-dark);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}


/* Tentang Kami Layout */
.about-header { text-align: center; margin-bottom: 50px; }
.factory-img { width: 100%; height: 350px; object-fit: cover; border-radius: 15px; margin-top: 20px; border: 1px solid var(--primary); }

.subtitle { color: var(--primary); font-weight: 500; letter-spacing: 1px; }

.vismis-container {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.vismis-card {
    flex: 1;
    min-width: 300px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    gap: 20px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.vismis-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--primary);
}

.vismis-card:hover {
    transform: translateY(-10px);
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.vismis-icon {
    font-size: 2.5rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary));
}
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--primary-glow);
}
.vismis-content h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--text-light); }
.vismis-content ul { list-style: none; }
.vismis-content ul li { margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.vismis-content ul li i { color: var(--primary); margin-top: 5px; }
/* Factory Section */
.factory-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 50px !important;
}

.factory-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    border: 1px solid var(--glass-border);
}

.stat-item strong { color: var(--primary); font-size: 1.2rem; }

.factory-img-container img {
    width: 100%;
    border-radius: 20px;
    transition: 0.5s;
    border: 2px solid var(--glass-border);
}

.factory-showcase:hover .factory-img-container img {
    transform: scale(1.05);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .factory-showcase { grid-template-columns: 1fr; }
}
/* Kontak Layout */
.contact-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.contact-info p { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.contact-info i { color: var(--primary); font-size: 1.2rem; }

/* Footer */
footer {
    margin-top: 100px;
    flex-shrink: 0;
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    width: 100%;
    padding: 50px 20px; 
    border-top: 1px solid var(--glass-border); 
    background: rgba(0,0,0,0.3); 
}
.footer-premium {
    position: relative;
    background: #05161a;
    padding: 100px 7% 30px; 
    border-top: 1px solid rgba(0, 255, 136, 0.05);
    margin-top: 150px;
    overflow: hidden;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
}

.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Kolom Branding */
/* Container logo di footer */
.footer-logo-container {
    margin-bottom: 20px; /* Jarak ke tulisan di bawahnya */
    display: flex;
    align-items: center;
}

/* Pengaturan ukuran logo footer */
.footer-logo-img {
    height: 100px; /* Atur tinggi sesuai selera */
    width: auto;  /* Biar lebarnya menyesuaikan (tidak gepeng) */
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.3)); /* Efek cahaya tipis */
}

/* Jika layar HP, logonya bisa dikecilkan sedikit */
@media (max-width: 768px) {
    .footer-logo-img {
        height: 40px;
    }
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88;
    animation: blink 1.5s infinite;
}

/* List Style */
.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00ff88;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}
.footer-col ul li a:hover { color: #00ff88; padding-left: 5px; }

/* Contact & Social Grid */
.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #888;
    font-size: 0.9rem;
}
.contact-item i { color: #00ff88; margin-top: 3px; }
.contact-item a { color: #888; text-decoration: none; transition: 0.3s; }
.contact-item a:hover { color: white; }

.social-grid { display: flex; gap: 12px; margin-top: 10px; }
.social-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.social-box:hover {
    background: #00ff88;
    color: #05161a;
    transform: translateY(-5px);
    border-color: #00ff88;
}

.footer-copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.85rem;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .footer-main { grid-template-columns: 1fr; }
}
/* Download Icon */
.download-main-icon { font-size: 5rem; color: var(--primary); margin-bottom: 20px; filter: drop-shadow(0 0 10px var(--primary)); }
/* Styling Halaman Download */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px !important;
    text-align: center; 
    border-bottom: 4px solid var(--primary); 
}

.apk-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.apk-icon.admin {
    color: #34d399; 
    font-size: 3rem; color: var(--primary); margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.apk-ver {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 5px 0 15px;
}

.apk-features {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 25px;
    padding: 0 20px;
}

.apk-features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.apk-features li i {
    color: var(--primary);
    margin-right: 10px;
}

.download-card .btn-primary {
    width: 100%;
    text-align: center;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Product Grid & Search */

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
header {
    top: 35px; /* Menyesuaikan posisi navbar agar tidak menutupi announcement bar */
}

@media (max-width: 768px) {
    header { top: 60px; } /* Untuk mobile yang bar-nya mungkin 2 baris */
}
/* RESPONSIVE: Layar HP */
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
    
    .menu-toggle { display: flex; } /* Munculkan hamburger */

    .nav-links {
        position: fixed;
        left: 0;
        top: -110vh;
        width: 100%;
        height: 100vh;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in-out;
        z-index: 2000;
        gap: 30px;
    }

    /* Munculkan Menu saat Active */
    .nav-links.active {
        top: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: white;
    }

    /* Styling tombol download di dalam hamburger */
    .btn-download-mobile {
        background: var(--primary);
        padding: 10px 40px !important;
        border-radius: 50px;
        color: white !important;
        font-weight: bold;
    }
}

select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid var(--primary);       
    border-radius: 8px;
    color: white;                           
    font-size: 1rem;
    cursor: pointer;
    outline: none;
}

/* Agar saat diklik, pilihan di dalamnya warnanya hitam (supaya terbaca) */
select option {
    background-color: #020617;
    color: white;
}

select:focus {
    box-shadow: 0 0 10px var(--primary); 
}
#searchButton {
    background: #00ff88;
    color: #05161a;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#searchButton:hover {
    background: #00db77;
    transform: scale(1.05);
}
#searchButton:hover {
    background: #00db77;
    transform: scale(1.05); 
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

/* Ikon di dalam tombol */
#searchButton i {
    font-size: 0.9rem;
}

/* Container Tombol WA */
.wa-float-simple {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px; /* Ukuran icon WA */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

/* Efek saat kursor di atas tombol */
.wa-float-simple:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsif Mobile (Cuma ikon di layar kecil) */
@media (max-width: 768px) {
    .wa-float {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}


@media (max-width: 768px) {
    
    /* 1. Container Utama Section Home */
    .hero-inner {
        flex-direction: column-reverse; 
        text-align: center;
        padding: 40px 10px;
        gap: 30px;
    }

    /* 2. Judul Besar (H1) */
    .hero-text h1 {
        font-size: 2.5rem !important; 
        line-height: 1.2;
    }

    /* 3. Paragraf Deskripsi */
    .hero-text p {
        font-size: 1rem;
        margin: 0 auto 25px;
        max-width: 100%;
    }

    /* 4. Area Tombol & Timer (CTA) */
    .hero-cta {
        flex-direction: column; 
        gap: 20px;
        align-items: center;
    }

    /* Tombol Mulai Sekarang */
    .btn-main {
        width: 100%; 
        max-width: 300px;
    }
    .hero-image-box {
        width: 100%;
        text-align: center;
    }

    .main-img {
        width: 85%; 
        max-width: 320px;
        margin-bottom: 10px;
    }
    .value-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    .proof-stats {
        flex-direction: column; 
        gap: 30px;
        padding: 30px 10px;
    }

    .counter {
        font-size: 2.5rem; 
    }
}

.contact-info p a {
    color: inherit; 
    text-decoration: none; 
    transition: 0.3s;
}
.contact-info p a:hover {
    color: #00ff88; 
    padding-left: 5px; 
}


.contact-info p i {
    width: 25px; 
    color: #00ff88;
}
/* CONTAINER DETAIL */
.detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 15px;
}

.back-nav {
    margin-bottom: 15px;
}

.btn-back {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-back:hover {
    background: #00ff88;
    color: #000;
}

/* LAYOUT KONTEN */
.detail-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 25px;
    align-items: flex-start;
}

/* MEDIA / GAMBAR */
.detail-media {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.main-img-container {
    background: #000;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    overflow: hidden;
    margin-bottom: 15px;
}

#detailImg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 400px;
}

.thumbnail-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* INFO PRODUK */
.detail-info {
    flex: 1.2;
    min-width: 300px;
}

.badge-cat {
    background: #00ff88;
    color: #000;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

#detailJudul {
    color: #fff;
    margin: 15px 0 5px 0;
    font-size: 2rem;
    line-height: 1.2;
}

#detailHarga {
    color: #00ff88;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.desc-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.desc-section h4 {
    color: #00ff88;
    margin-bottom: 10px;
}

#detailDeskripsi {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    white-space: pre-line;
}

/* TOMBOL WA */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 25px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .detail-content {
        flex-direction: column;
        padding: 15px;
    }
    
    .detail-media, .detail-info {
        max-width: 100%;
        min-width: 100%;
    }
}
/* --- HERO SLIDER FULL SCREEN --- */


.slide {
    display: none; /* Sembunyikan slide yg tidak aktif */
    width: 100%;
    height: 100%;
    animation: fadeEffect 1s; /* Efek transisi */
    background-size: cover;
    background-position: center;
}

.slide.active {
    display: flex; /* Tampilkan slide aktif */
    align-items: center;
    justify-content: center;
}

/* Container dalam slide */
.slide .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.slide .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Kolom Teks (Kiri) */
.col-text {
    flex: 1;
    color: white;
    z-index: 2;
}

.col-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: black;
}

.col-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: green;
}

.btn-hero {
    padding: 15px 40px;
    background: #00ff88;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
    display: inline-block;
}

.btn-hero:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Kolom Gambar (Kanan) */
.col-img {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.col-img img {
    max-width: 100%;
    max-height: 500px; /* Batasi tinggi gambar biar tidak raksasa */
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    animation: floatImg 4s ease-in-out infinite; /* Efek melayang */
}

/* --- TOMBOL NEXT / PREV --- */
.prev-btn, .next-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0,0,0,0.2);
    border: none;
    z-index: 10;
}

.next-btn {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

/* --- DOTS NAVIGATION --- */
.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #00ff88;
}

/* --- RESPONSIVE (MOBILE) --- */
@media (max-width: 960px) {
    .slide .row {
        flex-direction: column-reverse; /* Gambar di atas, Teks di bawah */
        text-align: center;
        justify-content: center;
    }

    .col-text h1 {
        font-size: 2rem;
        margin-top: 20px;
    }

    .col-img img {
        max-height: 250px; /* Kecilkan gambar di HP */
    }
}

/* --- ANIMASI --- */
@keyframes fadeEffect {
    from {opacity: 0.4} 
    to {opacity: 1}
}

@keyframes floatImg {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.col-img {
    width: 100%;
    height: 100%;
    /* 'cover' membuat gambar memenuhi area tanpa gepeng, 
       tapi mungkin ada bagian pinggir yang terpotong sedikit */
    object-fit: cover; 
    
    /* 'center' memastikan bagian tengah gambar selalu terlihat */
    object-position: center; 
    
    display: block;
}

/* Jika teks di atas gambar tertutup, tambahkan overlay gelap sedikit */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Memberi efek gelap transparan */
    z-index: 1;
}

/* Pastikan konten teks slider ada di depan overlay */
.slide-content {
    position: relative;
    z-index: 2;
}
/* Pastikan container utama adalah patokan posisi */

/* Style Umum Tombol Panah */
.prev, .next {
    position: absolute;
    top: 50%; /* Taruh di tengah secara vertikal */
    transform: translateY(-50%); /* Benar-benar senter di tengah */
    z-index: 10; /* Supaya tidak tertutup gambar */
    
    /* Ukuran dan Tampilan */
    background-color: rgba(0, 0, 0, 0.5); /* Background hitam transparan */
    color: white;
    padding: 20px 15px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    transition: 0.3s;
    user-select: none;
}

/* Posisi Spesifik di Ujung Kiri */
.prev-btn {
    left: 0; /* Tempel di ujung kiri */
    border-radius: 0 5px 5px 0; /* Lengkungan hanya di sisi dalam */
}

/* Posisi Spesifik di Ujung Kanan */
.next-btn {
    right: 0; /* Tempel di ujung kanan */
    border-radius: 5px 0 0 5px; /* Lengkungan hanya di sisi dalam */
}

/* Efek Hover */
.prev-btn:hover, .next-btn:hover {
    background-color: #00ff88; /* Warna hijau VoltGreen saat disentuh */
    color: #000;
}
/* Container utama di dalam slide */
.slide .container {
    height: 100%;
    display: flex;
    align-items: center; /* Teks & Gambar rata tengah vertikal */
}

.slide .row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

/* Bagian Teks (Kiri) */
.col-text {
    flex: 1; /* Ambil 1 bagian */
    padding-right: 30px;
    color: white;
}

.col-text h1 {
    font-size: 3.5rem; /* Perbesar font judul */
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Bagian Gambar (Kanan) - KITA BUAT LEBIH DOMINAN */
.col-img {
    flex: 1.8; /* Kita kasih 1.8 bagian (hampir 2x lipat dari teks) */
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-img img {
    width: 100%; /* Gambar akan melebar mengikuti flex 1.8 tadi */
    max-width: 900px; /* Batas maksimal biar gak pecah */
    height: auto;
    object-fit: contain;
    
    /* Trik biar makin Gede: Scale */
    transform: scale(1.2); /* Perbesar 20% dari ukuran asli container */
    
    /* Tambahan Shadow agar produk 'pop-out' */
    filter: drop-shadow(0 15px 50px rgba(0,0,0,0.6));
    
    /* Animasi masuk */
    animation: fadeInImg 1.2s ease-out;
}

@keyframes fadeInImg {
    from { opacity: 0; transform: scale(1) translateX(50px); }
    to { opacity: 1; transform: scale(1.2) translateX(0); }
}
/* Container Galeri Baru */
.factory-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr; /* 1 foto besar, kolom sisanya untuk foto kecil */
    gap: 10px;
    height: 350px;
}

.gallery-main img, .sub-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-subs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-item {
    height: calc(33.33% - 7px); /* Bagi 3 rata untuk foto kecil */
}

/* Efek Hover */
.gallery-main img:hover, .sub-item img:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

/* Modal Pop-up Pabrik */
.modal-factory {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}

#imgFull {
    max-width: 90%;
    max-height: 85vh;
    border: 3px solid #00ff88;
    border-radius: 15px;
    margin: auto;
    display: block;
}

/* Perbaikan untuk Mobile (Tumpuk Vertikal) */
@media (max-width: 768px) {
    .factory-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    .gallery-subs {
        flex-direction: row;
        height: 100px;
    }
}
/* Container Galeri Baru */
.factory-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    height: 350px;
    /* TAMBAHKAN INI: Agar grid tidak 'meledak' di dalam flex container */
    min-width: 0;
}

/* Container untuk setiap item foto */
.gallery-main, .gallery-subs {
    /* TAMBAHKAN 3 BARIS INI: KUNCI AGAR GAMBAR TIDAK KELEBIHAN */
    position: relative;
    overflow: hidden; /* Ini yang memotong kelebihan gambar */
    border-radius: 10px; /* Pindahkan border-radius ke containernya */
}

/* Update gaya gambarnya */
.gallery-main img, .gallery-subs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* HAPUS border-radius dari sini karena sudah dipindah ke atas */
    /* border-radius: 10px;  <-- HAPUS BARIS INI */
    cursor: pointer;
    transition: 0.5s; /* Ubah jadi agak lama biar smooth */
}

/* Sisanya sama... */
.gallery-subs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%; /* Pastikan dia menempati tinggi penuh parentnya */
}
/* ... */
/* Modal Pop-up Pabrik - Gaya Baru */
.modal-factory {
    display: none; /* Tersembunyi secara default */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* --- BAGIAN PENTING UNTUK EFEK BLUR --- */
    /* Gunakan warna hitam tapi transparan */
    background-color: rgba(0, 0, 0, 0.6); 
    /* Ini yang membuat background di belakangnya jadi buram */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Untuk support Safari */
    /* ------------------------------------- */

    align-items: center;
    justify-content: center;
    flex-direction: column; /* Agar tombol close ada di atas gambar */
}

/* Gaya untuk Gambar yang Diperbesar */
#imgFull {
    /* Agar gambar tidak kelewatan batas layar */
    max-width: 90%;  /* Maksimal 90% lebar layar */
    max-height: 85vh; /* Maksimal 85% tinggi layar */
    
    /* Agar gambar tidak gepeng/terpotong */
    object-fit: contain; 
    
    border: 2px solid #00ff88;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Tambah bayangan biar pop-up */
    
    /* Animasi saat muncul */
    animation: zoomIn 0.3s ease-out;
}

/* Gaya untuk Tombol Close (X) */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10001; /* Pastikan di atas segalanya */
    line-height: 1; /* Agar posisi vertikal pas */
}

.close-btn:hover {
    color: #00ff88; /* Warna berubah saat disentuh */
    transform: scale(1.1);
}

/* Animasi Zoom In sederhana */
@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}
/* 1. Mengatur wadah (kotak) pembungkusnya */
.hero-image-box {
    width: 100%; /* Kotak mengambil lebar penuh yang tersedia */
    /* max-width: 600px;  <-- OPTIONAL: Jika ingin membatasi lebar maksimal kotaknya */
    overflow: hidden; /* KUNCI: Memastikan apapun yang 'berlebih' akan dipotong/disembunyikan */
    position: relative; /* Praktik baik untuk container */
}

/* 2. Mengatur gambarnya */
.main-img {
    display: block; /* Menghilangkan celah putih kecil di bawah gambar */
    max-width: 100%; /* KUNCI: Gambar tidak boleh lebih lebar dari wadahnya */
    height: auto;    /* KUNCI: Tinggi menyesuaikan otomatis agar gambar tidak gepeng */
    margin: 0 auto;  /* OPTIONAL: Menengahkan gambar jika lebih kecil dari wadahnya */
}
/* 1. KUNCI AREA SLIDER (Agar tidak ada blur bocor ke luar) */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px; /* Atur tinggi tetap agar rapi */
    overflow: hidden; /* INI KUNCINYA: Memotong konten yang keluar batas */
    background: #000;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide.active {
    display: flex; /* Aktifkan flex saat slide jalan */
    align-items: center;
}

/* 2. RAPIKAN BARIS & KOLOM */
.hero-slider .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 50px;
}

.hero-slider .row {
    display: flex;
    align-items: center; /* Teks dan Gambar sejajar tengah secara vertikal */
    justify-content: space-between;
    gap: 30px;
}

/* 3. ATUR TEKS & TOMBOL (Kiri) */
.col-text {
    flex: 1;
    display: flex;
    flex-direction: column; /* Biar judul, p, dan tombol numpuk ke bawah */
    align-items: flex-start; /* Rata kiri */
    text-align: left;
}

.col-text h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
}

.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    background: #00ff88;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    margin-top: 20px; /* Memberi jarak dari paragraf ke tombol */
    transition: 0.3s;
}

/* 4. ATUR GAMBAR (Kanan) */
.col-img {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.col-img img {
    max-width: 100%;
    height: auto;
    /* Hilangkan efek blur yang aneh jika ada di img */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); 
}

/* 5. TOMBOL NAVIGASI DI UJUNG */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,255,136, 0.2);
    border: none;
    color: white;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }
.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background-color: #00ff88; /* Warna hijau Hexapower */
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 25px;
    transition: all 0.3s ease;
    border: 2px solid #00ff88;
    cursor: pointer;
}

.btn-hero:hover {
    background-color: transparent;
    color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}