/* --- VARIABLES --- */
:root {
    --bg-main: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --neon-orange: #ff7a00;
    --bright-orange: #ff9900;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

/* --- RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-neon { color: var(--neon-orange); }
.text-white { color: var(--text-light); }
.mt-4 { margin-top: 2rem; }
.w-100 { width: 100%; }

/* --- LOADER --- */
#loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-main);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.spinner {
    width: 50px; height: 50px;
    border: 5px solid var(--bg-card);
    border-top: 5px solid var(--neon-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* --- NAVBAR --- */
#navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 122, 0, 0.1);
}
#navbar.sticky {
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(255, 122, 0, 0.15);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--neon-orange); }
.nav-links a::after {
    content: ''; position: absolute;
    width: 0%; height: 2px;
    background: var(--neon-orange);
    bottom: -5px; left: 0;
    transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger { display: none; cursor: pointer; font-size: 24px; color: var(--text-light); }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a0d00 0%, var(--bg-main) 70%);
}
.hero::before {
    content: ''; position: absolute;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(255, 122, 0, 0.05) 50%, transparent 52%);
    background-size: 20px 20px;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-style: italic;
    background: linear-gradient(to right, #ffffff, #aaaaaa);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.hero-title .quote { 
    color: var(--neon-orange); 
    background-clip: unset;
    -webkit-background-clip: unset; 
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--bright-orange);
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.stats-container {
    display: flex; justify-content: center; gap: 50px; margin-bottom: 40px;
}
.stat-box h3 {
    font-size: 3rem; color: var(--neon-orange); font-family: var(--font-heading);
    text-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    text-align: center;
}
.btn-primary {
    background: linear-gradient(45deg, var(--neon-orange), var(--bright-orange));
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.4);
}
.btn-primary:hover {
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.8);
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent;
    color: var(--neon-orange);
    border: 2px solid var(--neon-orange);
    margin-left: 15px;
}
.btn-outline:hover {
    background: var(--neon-orange);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.4);
}

/* --- SECTIONS --- */
.section { 
    padding: 120px 0 80px; 
    flex: 1; 
}
.bg-darker { background-color: var(--bg-darker); }
.section-title {
    text-align: center; font-size: 2.5rem; margin-bottom: 50px; font-family: var(--font-heading);
    animation: fadeInUp 0.8s ease;
}
.section-title span { color: var(--neon-orange); }

/* --- PRICELIST CARDS --- */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.card {
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 122, 0, 0.15), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}
.card:hover::before { left: 150%; }
.card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-orange);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.2);
}
.card-icon {
    font-size: 3rem; color: var(--neon-orange); margin-bottom: 20px;
}
.card h3 {
    font-size: 1.5rem; margin-bottom: 15px; color: #fff; letter-spacing: 1px;
}
.card .desc {
    font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; height: 60px;
}
.card .price {
    font-size: 1.8rem; font-weight: 800; color: var(--bright-orange); margin-bottom: 5px;
}
.card .min-order {
    font-size: 0.85rem; color: #888; margin-bottom: 25px;
}
.btn-order {
    background: transparent; border: 1px solid var(--neon-orange); color: var(--text-light); width: 100%;
}
.card:hover .btn-order { background: var(--neon-orange); color: #000; font-weight: 800; }

/* --- TESTIMONIALS (GRID / KOTAK-KOTAK RAPIH) --- */
.testimonial-slider-container {
    width: 100%;
    padding: 20px 0 50px;
}

/* Mengubah track menjadi Grid (seperti Pricelist) */
.testimonial-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.testi-card {
    background: linear-gradient(145deg, rgba(26,26,26,0.8), rgba(10,10,10,0.9));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.testi-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-orange);
    box-shadow: 0 10px 40px rgba(255, 122, 0, 0.15);
}
.testi-img {
    width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--neon-orange); 
    margin: 0 auto 20px; object-fit: cover; box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
}
.stars { color: #ffc107; margin-bottom: 15px; font-size: 1rem; }
.testi-text { font-style: italic; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.testi-author h4 { color: #fff; font-size: 1.1rem; letter-spacing: 0.5px; }
.testi-author small { color: var(--neon-orange); font-weight: 600; font-size: 0.8rem; }
/* Hide scrollbar Chrome, Safari & Opera */
.testimonial-track::-webkit-scrollbar {
    display: none; 
}
.testimonial-track:active {
    cursor: grabbing;
}

.testi-card {
    min-width: 350px;
    flex-shrink: 0; /* Mencegah card mengecil saat dijejerkan */
    background: linear-gradient(145deg, rgba(26,26,26,0.8), rgba(10,10,10,0.9));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.testi-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-orange);
    box-shadow: 0 10px 40px rgba(255, 122, 0, 0.15);
}
.testi-img {
    width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--neon-orange); 
    margin: 0 auto 20px; object-fit: cover; box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
}
.stars { color: #ffc107; margin-bottom: 15px; font-size: 1rem; }
.testi-text { font-style: italic; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.testi-author h4 { color: #fff; font-size: 1.1rem; letter-spacing: 0.5px; }
.testi-author small { color: var(--neon-orange); font-weight: 600; font-size: 0.8rem; }

/* --- KONTAK --- */
.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    animation: fadeInUp 1s ease;
}
.glass-card {
    background: rgba(26, 26, 26, 0.5); backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.contact-info h3 { font-size: 1.8rem; color: #fff; margin-bottom: 15px; }
.contact-info p { color: var(--text-muted); margin-bottom: 30px; }
.wa-big-btn {
    display: flex; align-items: center; background: linear-gradient(45deg, #25D366, #1da851); color: #fff;
    padding: 20px; border-radius: 15px; text-decoration: none; margin: 30px 0;
    transition: all 0.3s; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
.wa-big-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5); }
.wa-big-btn i { font-size: 3rem; margin-right: 20px; }
.wa-big-btn div span { display: block; font-size: 0.9rem; opacity: 0.9; }
.wa-big-btn div strong { font-size: 1.6rem; letter-spacing: 1px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 45px; height: 45px; border-radius: 50%; background: #333; color: #fff;
    text-decoration: none; transition: 0.3s; font-size: 1.2rem;
}
.social-icons a:hover { background: var(--neon-orange); transform: translateY(-3px); }

.input-group { margin-bottom: 25px; }
.input-group input, .input-group textarea {
    width: 100%; padding: 18px; background: rgba(0,0,0,0.6);
    border: 1px solid #444; border-radius: 10px; color: #fff;
    font-family: var(--font-main); transition: all 0.3s; font-size: 1rem;
}
.input-group input:focus, .input-group textarea:focus {
    outline: none; border-color: var(--neon-orange); box-shadow: 0 0 15px rgba(255,122,0,0.2);
}

/* --- FOOTER --- */
footer {
    background: #050505; border-top: 1px solid #222; padding: 50px 0 20px; text-align: center;
    margin-top: auto; 
}
.footer-logo h2 { font-family: var(--font-heading); margin-bottom: 10px; font-size: 2rem; }
.footer-logo span { color: var(--neon-orange); }
.footer-links { margin: 25px 0; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-weight: 600; }
.footer-links a:hover { color: var(--neon-orange); }
.copyright { color: #555; font-size: 0.9rem; margin-top: 30px; }

/* --- SCROLL TO TOP --- */
.scroll-top {
    position: fixed; bottom: -60px; right: 30px;
    background: var(--neon-orange); color: #fff; width: 50px; height: 50px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
    z-index: 99; opacity: 0; box-shadow: 0 5px 15px rgba(255,122,0,0.4); font-size: 1.2rem;
}
.scroll-top.show { bottom: 30px; opacity: 1; }
.scroll-top:hover { transform: translateY(-5px); }

/* --- RESPONSIVE MOBILE & TABLET --- */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 70px; right: -100%; width: 250px; height: 100vh;
        flex-direction: column; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px);
        padding: 40px 20px; transition: right 0.4s ease; border-left: 1px solid #333; gap: 20px;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; padding: 0 15px; }
    .stats-container { gap: 30px; }
    .stat-box h3 { font-size: 2.2rem; }
    
    .hero-buttons { display: flex; flex-direction: column; gap: 15px; padding: 0 20px; }
    .hero-buttons .btn { margin: 0; width: 100%; }
    
    .section { padding: 100px 0 60px; }
    .section-title { font-size: 2rem; }
    
    .grid-cards { grid-template-columns: 1fr; padding: 0 10px; }
    .testi-card { min-width: 300px; padding: 30px 20px; }
    .testimonial-slider-container::before, .testimonial-slider-container::after { width: 30px; }
    
    .glass-card { padding: 25px 20px; }
    .wa-big-btn i { font-size: 2.5rem; }
    .wa-big-btn div strong { font-size: 1.2rem; }
}

/* Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   FLOATING SOCIAL MEDIA ICONS
   ========================================= */
.floating-social {
    position: fixed;
    top: 50%;               /* Posisi vertikal di tengah layar */
    right: 15px;            /* Jarak dari sisi kanan layar */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;              /* Jarak antar tombol */
    z-index: 9999;          /* Memastikan selalu berada di lapisan teratas */
}

.floating-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;     /* Membuat bentuk bulat */
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efek saat mouse diarahkan (Hover) */
.floating-social a:hover {
    transform: scale(1.1) translateX(-5px); /* Membesar dan sedikit geser ke kiri */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* Warna Khusus Masing-masing Platform */
.float-wa {
    background-color: #25D366; 
}

.float-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-threads {
    background-color: #000000;
    border: 1px solid #333333; /* Memberikan border tipis agar terlihat di background gelap */
}

.float-fb {
    background-color: #1877F2;
}

/* Penyesuaian untuk layar HP (Responsive) */
@media (max-width: 768px) {
    .floating-social {
        right: 10px;
    }
    .floating-social a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* =========================================
   LOGO HERO RESPONSIVE
   ========================================= */
.hero-logo {
    max-width: 200px;         /* Ukuran logo, bisa disesuaikan */
    height: auto;
    margin-bottom: 20px;
    mix-blend-mode: screen;   /* Menghilangkan background hitam JPEG */
}

/* Pengaturan Khusus untuk Layar PC/Windows (Lebar di atas 768px) */
@media (min-width: 768px) {
    .hero-logo {
        margin-top: 80px;     /* Mendorong logo ke bawah agar tidak tertutup navbar */
        max-width: 280px;     /* Membuat logo sedikit lebih besar di PC */
    }
}