/* ============================================================
   ROOT VARIABLES - Dark Luxury Black & Gold
   ============================================================ */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --gold: #D4AF37;
    --gold-light: #F5E6B8;
    --gold-dark: #B8962F;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #777777;
    --glass-border: rgba(212, 175, 55, 0.15);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    --radius: 20px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9998;
    pointer-events: none;
}

#scrollProgress span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 0 10px 10px 0;
    transition: width 0.1s linear;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9997;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.nav-brand i {
    color: var(--gold);
    margin-right: 8px;
}

.nav-menu{
    display:flex;
    gap:20px;
    align-items:center;
    margin-left:auto;
    transform: translateX(-135px);
}

.nav-menu a {
    font-weight:600;
    font-size:18px;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Tablet & HP */
@media (max-width: 1024px){
    .nav-container{
        transform: none;
    }
}

/* ============================================================
   CURSOR GLOW
   ============================================================ */
#cursorGlow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9996;
    transform: translate(-50%, -50%);
    transition: left 0.15s ease-out, top 0.15s ease-out;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0 40px;
}

/* --- BACKGROUND GAMBAR --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    will-change: transform;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.75) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(5, 5, 5, 0.3);
}

#bokehContainer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* --- GLASS FRAME CARD --- */
.hero-glass-card {
    position: relative;
    z-index: 3;
    max-width: 950px;
    margin: 0 auto;
    padding: 50px 48px;
    border-radius: 28px;
    
    /* Glassmorphism Core */
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    
    /* Border Emas Glow */
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 60px rgba(212, 175, 55, 0.04);
    
    transition: var(--transition);
}

/* --- Efek Glow di tepi Glass Frame (animasi border) --- */
.hero-glass-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, 
        transparent 30%, 
        rgba(212, 175, 55, 0.2) 50%, 
        rgba(212, 175, 55, 0.5) 70%, 
        transparent 90%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderGlow 6s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.02); }
}

/* --- Efek Shimmer / Cahaya bergerak di dalam glass --- */
.hero-glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.02) 45%,
        rgba(212, 175, 55, 0.03) 50%,
        rgba(255, 255, 255, 0.02) 55%,
        transparent 60%
    );
    animation: shimmer 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

/* --- KONTEN DI DALAM GLASS --- */
.hero-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 6px 22px;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    backdrop-filter: blur(4px);
    margin-bottom: 1.5rem;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
}

.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.0rem, 2.0vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-split {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 3.4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.split-gold {
    color: var(--gold);
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
}

.split-white {
    color: var(--text-primary);
}

.hero-desc {
    max-width: 750px;
    margin: 0 auto 1.8rem;
}

.hero-desc p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.hero-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.scroll-indicator {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* --- RESPONSIF GLASS FRAME --- */
@media (max-width: 768px) {
    .hero-glass-card {
        padding: 30px 20px;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .hero-split {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }
    
    .hero-headline {
        font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-glass-card {
        padding: 24px 14px;
        border-radius: 16px;
    }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: 4px 16px;
    }
}

.scroll-indicator {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ============================================================
   GLASS CARD BASE
   ============================================================ */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.7);
    border-color: rgba(212, 175, 55, 0.25);
}

/* ============================================================
   TENTANG SECTION - CHECKLIST PREMIUM
   ============================================================ */
.tentang {
    padding: 60px 0 40px;
    background: var(--bg-secondary);
}

.tentang-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tentang-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.tentang-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.tentang-card h3 span {
    color: var(--gold);
}

/* === LIST WRAPPER === */
.tentang-list-wrapper {
    text-align: left;
    max-width: 750px;
    margin: 0 auto;
}

.tentang-list-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tentang-list-title i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* === CHECKLIST === */
.tentang-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tentang-checklist li {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    transition: var(--transition);
}

.tentang-checklist li:last-child {
    border-bottom: none;
}

.tentang-checklist li:hover {
    color: var(--text-primary);
    transform: translateX(6px);
}

.tentang-checklist li i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE TENTANG
   ============================================================ */
@media (max-width: 576px) {
    .tentang-card {
        padding: 25px 16px;
    }

    .tentang-checklist li {
        font-size: 0.9rem;
        padding: 8px 0;
        gap: 10px;
    }

    .tentang-list-title {
        font-size: 1.1rem;
    }
}

/* ============================================================
   IMAGE SECTION
   ============================================================ */
.image-section {
    padding: 40px 0;
    background: var(--bg-primary);
}

.image-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.image-wrapper:hover {
    transform: scale(1.01);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   VISI & MISI
   ============================================================ */
.visi-misi {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    text-align: center;
}

.vm-card .vm-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.vm-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
}

.vm-card ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    width: 100%;
    max-width: 450px;
}

.vm-card ul li {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    padding: 6px 0;
    font-weight: 500;
    line-height: 1.6;
}

.vm-card ul li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================================
   LAYANAN
   ============================================================ */
.layanan {
    padding: 60px 0;
    background: var(--bg-primary);
}

.layanan-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.layanan-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    text-align: left;
}

.layanan-item {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition);
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
}

.layanan-item i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.layanan-item:hover {
    background: rgba(212, 175, 55, 0.04);
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.layanan-cta {
    margin-top: 2rem;
}

.layanan-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.video-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* ============================================================
   KEUNGGULAN
   ============================================================ */
.keunggulan {
    padding: 70px 0;
    background: var(--bg-primary);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    color: var(--gold);
    margin-bottom: 2.5rem;
}

.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
}

.keunggulan-card {
    text-align: center;
    padding: 30px 20px;
}

.keunggulan-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.keunggulan-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.keunggulan-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    background: var(--bg-secondary);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.6);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-note {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
}

/* ===== CTA BUTTON ===== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #050505 !important; /* teks hitam pekat */
    padding: 18px 48px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
    font-family: 'Montserrat', sans-serif;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e6c84a, #c5a032);
}

.btn-cta i {
    color: #050505; /* ikon juga hitam */
    margin-right: 10px;
}



/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.footer-info i {
    color: var(--gold);
    width: 24px;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin: 20px 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 10px;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9995;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    color: #fff;
}

.floating-wa.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9995;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

/* ============================================================
   RIPPLE EFFECT
   ============================================================ */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .hero-split {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }

    .glass-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 1.5rem;
        transition: 0.4s;
        border-left: 1px solid var(--glass-border);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }

    .hero-headline {
        font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .layanan-grid {
        grid-template-columns: 1fr 1fr;
    }

    .keunggulan-grid {
        grid-template-columns: 1fr 1fr;
    }

    .floating-wa {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        left: 20px;
        font-size: 1rem;
    }

    #cursorGlow {
        display: none;
    }
}

@media (max-width: 576px) {
    .layanan-grid {
        grid-template-columns: 1fr;
    }

    .keunggulan-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 4px 16px;
    }

    .hero-note {
        font-size: 0.8rem;
    }

    .tentang-card p {
        font-size: 0.95rem;
    }

    .vm-card h3 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .btn-cta {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .glass-card {
        padding: 25px 16px;
    }
}