/* --- Global & Theme --- */
:root {
    --cyan: #00BCD4; --magenta: #E91E63; --yellow: #FFD600;
    --black-pure: #090a0f; --dark-surface: #12141c; --dark-card: #1b1e29;
    --white: #ffffff; --text-muted: #8e95a5;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; cursor: none; /* Sembunyikan kursor asli */ }
body { font-family: var(--font-main); color: var(--white); background: var(--black-pure); overflow-x: hidden; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 100px 0; position: relative; z-index: 5; }
.bg-card-dark { background: var(--dark-surface); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Custom Cursor --- */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-dot { width: 8px; height: 8px; background-color: var(--cyan); }
.cursor-outline {
    width: 40px; height: 40px; border: 2px solid var(--magenta);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* --- Loader & Blobs --- */
#loader { position: fixed; inset: 0; background: var(--black-pure); z-index: 10000; display: flex; justify-content: center; align-items: center; transition: 0.5s; }
.spinner { width: 50px; height: 50px; border: 4px solid #222; border-top-color: var(--cyan); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.dynamic-bg-elements { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; animation: move 20s infinite alternate; }
.blob-cyan { width: 500px; height: 500px; background: var(--cyan); top: -10%; left: -10%; }
.blob-magenta { width: 600px; height: 600px; background: var(--magenta); bottom: -10%; right: -10%; animation-delay: -5s; }
@keyframes move { 100% { transform: translateY(100px) scale(1.2); } }

/* --- Header & Logo --- */
header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 20px 0; transition: var(--transition); }
header.scrolled { background: rgba(9, 10, 15, 0.8); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 30px; }
.nav-links a:hover { color: var(--cyan); }

/* --- Buttons --- */
.btn { padding: 12px 30px; border-radius: 50px; font-weight: 600; display: inline-block; transition: var(--transition); border: none; }
.btn-primary { background: linear-gradient(90deg, var(--cyan), var(--magenta)); color: #fff; }
.btn-primary:hover { box-shadow: 0 5px 20px rgba(0, 188, 212, 0.4); transform: translateY(-3px); }
.btn-secondary { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }

/* --- Hero Section (2 Columns) --- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.badge-cmyk { display: inline-block; padding: 5px 15px; border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero .highlight { background: linear-gradient(90deg, var(--cyan), var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; }

/* Interactive 3D Cover Image */
.hero-image-wrapper { perspective: 1000px; display: flex; justify-content: center; }
.tilt-box {
    width: 100%; max-width: 500px; border-radius: 20px;
    transform-style: preserve-3d; transition: transform 0.1s ease-out;
    box-shadow: 0 30px 60px rgba(0, 188, 212, 0.15);
}
.cover-img { width: 100%; border-radius: 20px; display: block; object-fit: cover; border: 2px solid rgba(255,255,255,0.1); }

/* --- Tentang Kami --- */
.tentang-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 0 30px rgba(233, 30, 99, 0.2); }
.about-img { width: 100%; height: auto; display: block; filter: brightness(0.9); transition: 0.5s; }
.about-image-wrapper:hover .about-img { transform: scale(1.05); filter: brightness(1); }
.cmyk-bar { display: flex; height: 10px; width: 100%; position: absolute; bottom: 0; }
.bar-c { background: var(--cyan); flex:1; } .bar-m { background: var(--magenta); flex:1; }
.bar-y { background: var(--yellow); flex:1; } .bar-k { background: #000; flex:1; }
.section-title { font-size: 2.5rem; margin-bottom: 20px; }
.section-title span { color: var(--magenta); }
.tentang-text p { color: var(--text-muted); margin-bottom: 20px; }
.fitur-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.icon-check { color: var(--cyan); }

/* --- Layanan Grid --- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.layanan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--dark-card); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); transition: 0.4s; }
.card:hover { transform: translateY(-10px); }
.card-icon-wrap { width: 60px; height: 60px; border-radius: 15px; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; }
.svg-icon { width: 30px; height: 30px; color: #fff; }
.card-cyan:hover { border-color: var(--cyan); box-shadow: 0 0 20px rgba(0, 188, 212, 0.2); }
.card-cyan .card-icon-wrap { background: rgba(0, 188, 212, 0.2); color: var(--cyan); }

/* --- Produk Grid --- */
.produk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.produk-card { background: var(--dark-surface); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: 0.4s; }
.produk-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.2); }
.produk-img img { width: 100%; height: 220px; object-fit: cover; transition: 0.5s; }
.produk-card:hover .produk-img img { transform: scale(1.1); }
.produk-info { padding: 20px; }
.produk-info h4 { margin-bottom: 10px; font-size: 1.1rem; }
.produk-info p { color: var(--text-muted); font-size: 0.9rem; }

/* --- Scroll Animations (Staggered) --- */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --- Floating WA --- */
.wa-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; justify-content: center; align-items: center; z-index: 100; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 15px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

/* Responsive */
@media (max-width: 768px) {
    .hero-container, .tentang-container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.8rem; }
    .hero-buttons { justify-content: center; }
    .nav-links, .nav-btn { display: none; }
    .cursor-dot, .cursor-outline { display: none; /* Matikan custom cursor di HP */ }
}
/* --- Timeline / Alur Pemesanan --- */
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; width: 2px; height: 100%; background: rgba(255,255,255,0.1); left: 24px; top: 0; }
.timeline-item { position: relative; padding-left: 70px; margin-bottom: 40px; }
.timeline-dot { position: absolute; left: 16px; top: 0; width: 18px; height: 18px; border-radius: 50%; box-shadow: 0 0 10px rgba(255,255,255,0.2); }
.cyan-bg { background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }
.magenta-bg { background: var(--magenta); box-shadow: 0 0 15px var(--magenta); }
.yellow-bg { background: var(--yellow); box-shadow: 0 0 15px var(--yellow); }
.dark-bg { background: var(--white); box-shadow: 0 0 15px var(--white); }
.timeline-item h4 { font-size: 1.3rem; margin-bottom: 8px; font-weight: 600; }
.timeline-item p { color: var(--text-muted); font-size: 0.95rem; }

/* --- Testimoni --- */
.testimoni-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimoni-card { background: var(--dark-surface); padding: 35px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); position: relative; transition: var(--transition); }
.testimoni-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.stars { color: var(--yellow); font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimoni-card p { color: var(--text-muted); font-style: italic; margin-bottom: 25px; line-height: 1.7; font-size: 0.95rem; }
.client-info h5 { font-size: 1.1rem; color: var(--white); }
.client-info span { color: var(--cyan); font-size: 0.85rem; font-weight: 500; }

/* --- Expanded Footer --- */
footer { background: #040507; padding: 80px 0 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo-img { height: 45px; margin-bottom: 20px; }
.footer-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 25px; max-width: 400px; }
.footer-col h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 25px; color: var(--white); position: relative; display: inline-block; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 2px; background: var(--magenta); }

/* Footer Links & Contact */
.footer-links li, .contact-info li { margin-bottom: 15px; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--cyan); padding-left: 5px; }
.contact-info li { display: flex; align-items: flex-start; gap: 15px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }
.contact-info svg { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

/* Social Icons */
.social-links a { display: inline-flex; align-items: center; gap: 10px; color: var(--text-muted); transition: var(--transition); font-weight: 500; font-size: 0.95rem; padding: 10px 15px; background: rgba(255,255,255,0.03); border-radius: 50px; border: 1px solid rgba(255,255,255,0.05); }
.social-links a svg { width: 20px; height: 20px; color: var(--magenta); transition: var(--transition); }
.social-links a:hover { background: rgba(233, 30, 99, 0.1); color: var(--white); border-color: rgba(233, 30, 99, 0.3); }

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); font-size: 0.85rem; }

/* Responsive adjustments for new footer */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-desc { max-width: 100%; }
}