    :root {
            --primary-purple: #7845dc;
            --secondary-pink: #7845dc;
            --dark-purple: #1E1B4B;
            --darker-purple: #151235;
            --light-purple: #F3E8FF;
            --white: #FFFFFF;
            --gray-light: #E5E7EB;
            --transition: all 0.3s ease;
        }
*, html, a, button {
            text-decoration: none;
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }

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

        html, body {
            overflow-x: hidden;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #F9F9FF;
            color: var(--dark-purple);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- NAVBAR --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 0.95rem 5%;
            box-shadow: 0 4px 20px rgba(108, 99, 255, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-purple);
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links li a {
            color: var(--dark-purple);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-purple);
            transition: var(--transition);
        }

        .nav-links li a:hover { color: var(--primary-purple); }
        .nav-links li a:hover::after { width: 100%; }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: var(--primary-purple);
            border-radius: 5px;
            transition: var(--transition);
        }

        /* --- HERO BANNER --- */
.hero-banner {
            position: relative;
            width: 60%;
            max-width: 1200px;
            margin: 8rem auto 3rem auto;
            aspect-ratio: 17 / 8;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
            background-color: #eee;
        }

        .hero-banner img {
            border-radius: 15px;
            width: 100%;
            height: 100%;
            display: block;
        }

        /* --- LAYANAN SECTION --- */
        .content {
            padding: 2rem 5%;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content h1 {
            margin-bottom: 1rem;
            font-size: 2rem;
            color: var(--dark-purple);
        }

        .services-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 2rem;
        }

        .layanan {
            max-width: 280px; 
            min-width: 150px;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            border: 1.5px solid var(--dark-purple);
            display: flex;
            flex-direction: column;
            flex-grow: 0; 
            flex-shrink: 0;
        }

        .layanan:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(120, 86, 255, 0.3);
        }

        .layanan-img-box {
            background-color: var(--white);
            padding: 30px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 180px;
        }

        .layanan img {
            max-width: 150px;
            max-height: 150px;
        }
        
        .layanan-info {
            background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
            padding: 15px 10px;
            height: 55px;
            width: 100%;
            display: flex;
            flex-direction: column;
             justify-content: center;  /* center atas bawah */
             align-items: center;      /* center kiri kanan */
        }

        .layanan h2 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.4;
        }
        
        .btn-cta {
            background-color: var(--primary-purple);
            color: var(--white);
            padding: 12px 40px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
            box-shadow: 0 5px 15px rgba(120, 86, 255, 0.4);
            border: none;
            cursor: pointer;
        }

        .btn-cta:hover {
            background-color: var(--dark-purple);
            transform: translateY(-2px);
        }
        
        svg {
          margin-bottom: -2%;
        }

        /* --- DARK SECTION STYLE --- */
        .dark-section {
            background: var(--dark-purple);
            color: var(--white);
            padding: 4rem 5%;
            position: relative;
        }

        .dark-section h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .dark-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary-pink);
            border-radius: 2px;
        }

        /* --- CARA ORDER SECTION --- */
        .order-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            max-width: 250px;
            flex: 1;
            min-width: 200px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .step-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--secondary-pink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1rem;
            color: var(--white);
            box-shadow: 0 5px 15px #9575CD;
        }

        .step-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--white);
        }

        .step-card p {
            font-size: 0.95rem;
            color: var(--light-purple);
            opacity: 0.9;
        }

        /* --- TENTANG KAMI SECTION --- */
        .about-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(120, 69, 220, 0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }

        .about-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary-pink);
        }

        .about-text p {
            margin-bottom: 1.2rem;
            color: var(--light-purple);
            opacity: 0.95;
        }

        .about-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            min-width: 80px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-pink);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--light-purple);
            opacity: 0.9;
        }

        /* --- FOOTER / COPYRIGHT --- */
        .footer {
            background: var(--darker-purple);
            color: var(--white);
            padding: 2.5rem 5% 1.5rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--light-purple);
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--secondary-pink);
        }

        .copyright {
            color: var(--light-purple);
            opacity: 0.8;
            font-size: 0.9rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition);
            font-size: 1.1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background: var(--primary-purple);
            transform: translateY(-3px);
            border-color: var(--primary-purple);
        }

/* PRELOADER */
#preloader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
}

/* From Uiverse.io by dovatgabriel */
.three-body {
 --uib-size: 35px;
 --uib-speed: 0.8s;
 --uib-color: #5D3FD3;
 position: relative;
 display: inline-block;
 height: var(--uib-size);
 width: var(--uib-size);
 animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
}

.three-body__dot {
 position: absolute;
 height: 100%;
 width: 30%;
}

.three-body__dot:after {
 content: '';
 position: absolute;
 height: 0%;
 width: 100%;
 padding-bottom: 100%;
 background-color: var(--uib-color);
 border-radius: 50%;
}

/* ===== PROMO POPUP - SIMPLE ===== */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 36, 36, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: -1; /* Changed from 9999 to -1 when hidden */
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
}

.promo-popup.active { 
    display: flex; 
    z-index: 9999;
    pointer-events: auto;
}

.promo-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.promo-box {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 350px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.promo-close {
    position: absolute;
    top: 10px; right: 12px;
    width: 28px; height: 28px;
    border: none;
    background: #F3E8FF;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #5B21B6;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s;
}
.promo-close:hover { background: #E9D5FF; }

/* SVG Icon */
.promo-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
    border-radius: 16px;
    color: #7C3AED;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}
.promo-icon svg {
    width: 32px;
    height: 32px;
}

/* Text */
.promo-box h3 {
    font-size: 1.3rem;
    color: #5B21B6;
    margin: 0 0 8px 0;
    font-weight: 600;
}
.promo-text {
    font-size: 1rem;
    color: #1F2937;
    margin: 0 0 6px 0;
    font-weight: 500;
}
.promo-sub {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0 0 20px 0;
}

/* Button */
.btn-promo {
    display: inline-block;
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
    color: white;
    padding: 12px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* Responsive */
@media (max-width: 480px) {
    .promo-box {
        padding: 28px 20px;
        max-width: 320px;
    }
    .promo-icon {
        width: 48px;
        height: 48px;
    }
    .promo-icon svg {
        width: 28px;
        height: 28px;
    }
}