/* ==========================================================================
           1. CSS CUSTOM PROPERTIES (VARIABLES) & THEMES
           ========================================================================== */
        :root {
            --primary: #ff0088;
            --accent: #c764e3;
            --background: #ffffff;
            --text: #1e1e1c;
            --secondary: #ff1f1f;
            --card-bg: #fff5f7; /* Pink keputihan bawaan untuk Neumorphism terang */
            --scandi-grey: #f4f4f4;
            --font-heading: 'Fredoka', sans-serif;
            --font-body: 'Quicksand', sans-serif;
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --border-radius: 20px;

            /* Variabel Bayangan Neumorphism (Mode Terang) */
            --neu-convex: 9px 9px 18px #f3dce2, -9px -9px 18px #ffffff;
            --neu-convex-hover: 12px 12px 24px #e9cbd3, -12px -12px 24px #ffffff;
            --neu-concave: inset 4px 4px 8px #f3dce2, inset -4px -4px 8px #ffffff;
            --neu-concave-deep: inset 8px 8px 16px #f3dce2, inset -8px -8px 16px #ffffff;
            --neu-mini-convex: 4px 4px 8px #f3dce2, -4px -4px 8px #ffffff;
            --neu-mini-convex-hover: 6px 6px 12px #e9cbd3, -6px -6px 12px #ffffff;
            --neu-mini-concave: inset 3px 3px 6px #f3dce2, inset -3px -3px 6px #ffffff;
            
            --border-glass: 1px solid rgba(255, 255, 255, 0.45);
            --bg-timeline-glass: rgba(255, 245, 247, 0.4);
        }

        [data-theme="dark"] {
            --background: #18181c;
            --text: #f5f5f5;
            --card-bg: #22222a; /* Warna dasar gelap untuk komponen Neumorphism */
            --scandi-grey: #2a2a32;

            /* Variabel Bayangan Neumorphism Adaptif (Mode Gelap) */
            --neu-convex: 9px 9px 18px #101014, -9px -9px 18px #2a2a34;
            --neu-convex-hover: 12px 12px 24px #0d0d10, -12px -12px 24px #30303b;
            --neu-concave: inset 4px 4px 8px #101014, inset -4px -4px 8px #2a2a34;
            --neu-concave-deep: inset 8px 8px 16px #101014, inset -8px -8px 16px #2a2a34;
            --neu-mini-convex: 4px 4px 8px #101014, -4px -4px 8px #2a2a34;
            --neu-mini-convex-hover: 6px 6px 12px #0d0d10, -6px -6px 12px #30303b;
            --neu-mini-concave: inset 3px 3px 6px #101014, inset -3px -3px 6px #2a2a34;
            
            --border-glass: 1px solid rgba(255, 255, 255, 0.05);
            --bg-timeline-glass: rgba(34, 34, 42, 0.4);
        }

        /* ==========================================================================
           2. BASE STYLES & RESET
           ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--background);
            color: var(--text);
            transition: var(--transition-smooth);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--text);
            font-weight: 600;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--background);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }
/* ==========================================================================
   3. PRELOADER & CUSTOM CURSOR
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--scandi-grey);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-text {
    margin-top: 15px;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   CUSTOM CURSOR DOT
   ========================================================================== */

#custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition:
        transform 0.1s ease,
        background-color 0.3s ease;
}

@media (max-width: 768px) {
    #custom-cursor {
        display: none;
    }
}

/* ==========================================================================
   CURSOR GROUPS
   ========================================================================== */

/* Cursor normal */
html,
body,
.navbar,
.page,
footer {
    animation: cursor-default 600ms step-end infinite;
}

/* Cursor text */
::selection,
p,
h1,
h2,
h3,
h4,
li,
.hero-tagline,
.section-header h2,
.form-group textarea,
.form-group input,
.newsletter-form input {
    animation: cursor-text 600ms step-end infinite;
}

/* Cursor pointer */
a,
button,
.nav-item,
.btn-main,
.slider-btn,
.gallery-item,
.accordion-header,
.sticky-cta,
.social-icons a,
.newsletter-form button,
.theme-toggle,
.hamburger {
    animation: cursor-pointer 500ms step-end infinite;
}

/* Cursor drag */
.image-slider {
    animation: cursor-drag 600ms step-end infinite;
}

/* Cursor grabbing */
.image-slider:active {
    animation: cursor-grabbing 700ms step-end infinite;
}

/* ==========================================================================
   EXTRA STATES
   ========================================================================== */

/* Loading background task */
.cursor-loading-bg {
    animation: cursor-loading-bg 600ms step-end infinite !important;
}

/* Loading / busy */
.cursor-loading {
    animation: cursor-loading 600ms step-end infinite !important;
}

/* Blocked */
.cursor-blocked {
    animation: cursor-blocked 600ms step-end infinite !important;
}

        /* ==========================================================================
           4. FIXED NAVIGATION & HEADER
           ========================================================================== */
        .navbar {
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 900;
            padding: 15px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            transition: var(--transition-smooth);
        }

        [data-theme="dark"] .navbar {
            background: rgba(24, 24, 28, 0.85);
            box-shadow: 0 2px 20px rgba(0,0,0,0.2);
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }
        
        .logo-sevina {
            color: var(--primary);
            font-family: var(--font-heading);
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-item {
            font-weight: 700;
            cursor: pointer;
            position: relative;
            padding: 5px 0;
            transition: var(--transition-smooth);
        }

        .nav-item:hover, .nav-item.active {
            color: var(--primary);
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 0; height: 3px;
            background: var(--accent);
            transition: var(--transition-smooth);
            border-radius: 2px;
        }

        .nav-item:hover::after, .nav-item.active::after {
            width: 100%;
        }

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .theme-toggle, .hamburger {
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--text);
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .theme-toggle:hover { color: var(--primary); }
        .hamburger { display: none; }

        /* ==========================================================================
           5. INTERACTIVE CANVAS HERO BACKGROUND & PARALLAX
           ========================================================================== */
        .hero-container {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--background) 0%, var(--card-bg) 100%);
        }

        #hero-canvas {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 4rem;
            margin-bottom: 15px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: breathe 5s ease-in-out infinite; 
            position: relative;
            z-index: 10;
        }
        
        .hero-sevina {
            color: var(--primary);
            font-style: italic;
            font-family: "Dancing Script", serif;
            font-weight: 700;
        }

        .hero-tagline {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 30px;
            color: var(--text);
            letter-spacing: 1px;
            z-index: 10;
            position: relative;
        }

        .btn-main {
            padding: 12px 35px;
            background: var(--primary);
            color: white;
            border-radius: 30px;
            font-family: var(--font-heading);
            font-weight: 600;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(255, 0, 136, 0.3);
            transition: var(--transition-smooth);
        }

        .btn-main:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 0, 136, 0.5);
            background: var(--accent);
        }
        
        @keyframes breathe {
            0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
            50% { transform: translateY(-8px) scale(1.02); opacity: 0.95; }
        }

        @media (max-width: 768px) {
            .floating-containers-grid { display: none !important; }
        }

        /* ==========================================================================
           6. PAGES / APP ROUTING STRUCTURE
           ========================================================================== */
        .page {
            display: none;
            padding: 100px 10% 60px 10%;
            animation: fadeInPage 0.6s ease forwards;
        }

        .page.active-page {
            display: block;
        }

        @keyframes fadeInPage {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--text);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '✿';
            position: absolute;
            right: -30px; top: 0;
            color: var(--accent);
            font-size: 1.5rem;
        }

        /* ==========================================================================
           7. PAGE 1: BERANDA CONTENT & COMPONENTS
           ========================================================================== */
        .marquee-container {
            background: var(--card-bg); 
            padding: 12px 0;
            overflow: hidden;
            white-space: nowrap;
            margin-bottom: 40px;
            border-radius: 10px;
            box-shadow: var(--neu-concave);
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 25s linear infinite;
            font-family: var(--font-heading);
            color: var(--accent);
            font-size: 1.1rem;
        }

        @keyframes marquee {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }
        
        .clock-container {
            background: var(--card-bg);
            padding: 15px 20px;
            margin-bottom: 40px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--neu-concave);
        }

        .clock-content {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .clock-time {
            font-family: var(--font-heading, sans-serif);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary, #ff0088);
            letter-spacing: 1px;
        }

        .clock-date {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent, #9333ea);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        @media (max-width: 480px) {
            .clock-time { font-size: 1.3rem; }
            .clock-date { font-size: 0.8rem; }
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .card {
            background: var(--card-bg);
            border-radius: var(--border-radius, 20px);
            padding: 30px;
            box-shadow: var(--neu-convex);
            border: none;
            transition: var(--transition-smooth, .3s ease);
            opacity: 0;
            transform: translateY(30px);
        }

        .card-grid > .card:first-child {
            grid-column: 1 / -1;
        }

        .card.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--neu-convex-hover);
        }

.profile-card-header {
            /* Kita matikan flexbox agar teks paragraf di bawahnya bisa naik dan me-wrap gambar */
            display: block; 
            margin-bottom: 20px;
        }

        .profile-img {
            /* Perbesar ukuran gambar */
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary, #ff0088);
            box-shadow: 4px 4px 10px rgba(0,0,0,0.05);
            
            /* Membuat teks me-wrap di sebelah kanan gambar */
            float: left;
            margin-right: 25px;
            margin-bottom: 15px;
        }

        /* Styling tambahan untuk membungkus nama dan badge agar rapi di atas */
        .profile-title-area {
            display: flex;
            flex-direction: column;
            gap: 5px;
            padding-top: 10px; /* Menyelaraskan posisi vertikal nama dengan bagian atas gambar */
            margin-bottom: 15px;
        }

        /* Membersihkan efek float agar tidak merusak elemen/card lain di bawahnya */
        .card::after {
            content: "";
            display: table;
            clear: both;
        }

        [data-theme="dark"] .profile-img {
            box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
        }

        .status-badge {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(255, 0, 136, 0.1);
            color: var(--primary, #ff0088);
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-top: 5px;
        }

        .mood-box {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--card-bg);
            padding: 15px;
            border-radius: 15px;
            margin-top: 20px;
            box-shadow: var(--neu-concave);
        }

        .mood-emoji {
            font-size: 2rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            text-align: center;
            margin-top: 25px;
        }

        .stat-item {
            padding: 15px 5px;
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: var(--neu-mini-concave);
        }

        .stat-item h3 {
            font-size: 1.8rem;
            color: var(--primary, #ff0088);
            margin: 0;
        }

        .stat-item p {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 5px 0 0 0;
            color: #aa6b7c;
        }
        
        [data-theme="dark"] .stat-item p {
            color: #b09199;
        }

        .quote-card {
            background: linear-gradient(135deg, var(--primary, #ff0088) 0%, var(--accent, #9333ea) 100%);
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(255, 0, 136, 0.2); 
        }

        .quote-card:hover {
            box-shadow: 0 20px 40px rgba(255, 0, 136, 0.3);
        }

        .quote-card h3, .quote-card p { color: white !important; }
        .quote-card i {
            position: absolute;
            right: 20px; bottom: 10px;
            font-size: 6rem;
            opacity: 0.15;
        }

        /* ==========================================================================
           8. PAGE 2: BIODATA & SKILLS SLIDER
           ========================================================================== */
        .biodata-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
            width: 100%;
        }

        .biodata-layout > div { min-width: 0; }

        @media (max-width: 900px) {
            .biodata-layout { grid-template-columns: 1fr; gap: 40px; }
        }

        section.neu {
            background: var(--card-bg);
            padding: 30px 32px;
            margin-bottom: 40px;
            border-radius: 20px;
            box-shadow: var(--neu-convex);
            border: none;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            width: 100%;
        }

        .info-item.neu-inset {
            padding: 14px 20px;
            border-radius: 14px;
            background: var(--card-bg);
            box-shadow: var(--neu-concave-deep);
            transition: .3s ease;
        }

        .info-item.neu-inset:hover {
            box-shadow: var(--neu-convex-hover);
        }

        .info-label {
            font-size: .82rem;
            color: #aa6b7c;
            margin-bottom: 6px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .5px;
        }
        
        [data-theme="dark"] .info-label { color: #d6a2b0; }

        .info-value {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
        }

        .biodata-layout > div:first-child {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--neu-concave-deep);
            border: none;
        }

        .skill-item { margin-bottom: 25px; }

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: 700;
            color: var(--text);
        }

        .skill-bar-bg {
            width: 100%;
            height: 14px;
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--neu-concave);
        }

        .skill-bar-fill {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--primary, #ff0088), var(--accent, #9333ea));
            border-radius: 10px;
            transition: width 1.5s cubic-bezier(.1, 1, .1, 1);
        }

        .interest-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .tag {
            background: var(--card-bg);
            padding: 9px 18px;
            border-radius: 20px;
            font-weight: 600;
            color: var(--text);
            box-shadow: var(--neu-mini-convex);
            transition: .3s ease;
        }

        .tag:hover {
            transform: translateY(-1px);
            color: var(--primary, #ff0088);
            box-shadow: var(--neu-mini-convex-hover);
        }

        .biodata-layout > div:last-child > .timeline {
            background: var(--bg-timeline-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: var(--border-glass);
            padding: 30px 25px 10px 40px;
            border-radius: 20px;
            box-shadow: var(--neu-convex);
            border-left: 3px dashed var(--accent, #9333ea);
            position: relative;
            margin-top: 20px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 35px;
        }

        .timeline-item::before {
            content: '✦';
            position: absolute;
            left: -51px; top: -2px;
            width: 22px; height: 22px;
            display: flex; align-items: center; justify-content: center;
            background: var(--card-bg);
            color: var(--primary, #ff0088);
            border-radius: 50%;
            box-shadow: var(--neu-mini-convex);
        }

        .timeline-year {
            font-weight: 700;
            color: var(--primary, #ff0088);
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-top: 25px;
            padding: 12px;
            background: var(--card-bg);
            box-shadow: var(--neu-concave-deep);
            width: 100%;
            max-width: 100%;
        }

        .image-slider {
            display: flex;
            width: 100%;
            transition: transform .5s cubic-bezier(.4, 0,.2, 1);
            border-radius: 14px;
        }

        .slide-img {
            min-width: 100%;
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
        }

        .slider-btn {
            position: absolute;
            top: 50%; transform: translateY(-50%);
            width: 48px; height: 48px;
            border: none; border-radius: 50%;
            background: var(--card-bg);
            color: var(--text);
            font-size: 1.1rem;
            display: flex; align-items: center; justify-content: center;
            box-shadow: var(--neu-convex);
            transition: .3s ease;
            z-index: 10;
        }

        .slider-btn:hover {
            color: #fff;
            background: var(--primary, #ff0088);
            box-shadow: 0 5px 15px rgba(255, 0, 136, .3);
        }

        .btn-prev { left: 25px; }
        .btn-next { right: 25px; }

        .biodata-layout > div:last-child > h3 {
            margin-top: 35px;
            margin-bottom: 10px;
        }

        /* ==========================================================================
           9. PAGE 3: GALERI, LIGHTBOX & CONTACT (NEUMORPHISM DUA MODE)
           ========================================================================== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--border-radius, 20px);
            padding: 12px; 
            background: var(--card-bg); 
            aspect-ratio: 1;
            box-shadow: var(--neu-convex);
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .gallery-item-inner {
            width: 100%; height: 100%;
            border-radius: 14px; overflow: hidden;
            position: relative;
            box-shadow: var(--neu-concave);
        }

        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
            transition: transform var(--transition-smooth, .4s ease);
        }

        .gallery-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(255, 0, 136, 0.4) 0%, rgba(147, 51, 234, 0.4) 100%);
            display: flex; justify-content: center; align-items: center;
            opacity: 0; transition: opacity var(--transition-smooth, .4s ease);
            color: white; font-size: 1.8rem;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--neu-convex-hover);
        }

        .gallery-item:hover img { transform: scale(1.08); }
        .gallery-item:hover .gallery-overlay { opacity: 1; }

        /* Lightbox CSS */
        #lightbox {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255, 245, 247, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 2000;
            display: none;
            justify-content: center; align-items: center;
            opacity: 0; transition: opacity 0.4s ease;
        }
        
        [data-theme="dark"] #lightbox {
            background: rgba(20, 20, 25, 0.2);
        }

        #lightbox.active { display: flex; opacity: 1; }
        
        #lightbox-img { 
            max-width: 85%; max-height: 75%; 
            border-radius: 20px; padding: 15px;
            background: var(--card-bg);
            box-shadow: var(--neu-convex);
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute; top: 30px; right: 40px;
            color: var(--primary, #ff0088); font-size: 2rem;
            width: 50px; height: 50px;
            background: var(--card-bg); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: var(--neu-mini-convex);
            transition: .3s ease;
        }

        .lightbox-close:hover {
            transform: scale(1.05); color: #ffffff; background: var(--primary, #ff0088);
            box-shadow: 0 5px 15px rgba(255, 0, 136, 0.3);
        }

        /* Struktur Integrasi Halaman Kontak Terpadu */
        .contact-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            width: 100%;
        }

        .contact-item-link {
            display: flex; align-items: center; gap: 15px;
            padding: 16px 20px; border-radius: 16px;
            background: var(--card-bg); color: var(--text);
            transition: .3s ease;
            box-shadow: var(--neu-convex);
        }

        .contact-item-link:hover {
            transform: translateY(-3px);
            box-shadow: var(--neu-convex-hover);
        }

        .contact-icon-wrap {
            font-size: 1.5rem; width: 40px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            background: var(--card-bg); border-radius: 50%;
            box-shadow: var(--neu-mini-concave);
        }

        .contact-text { display: flex; flex-direction: column; }
        .ct-label { font-size: 0.78rem; color: #aa6b7c; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
        [data-theme="dark"] .ct-label { color: #d6a2b0; }
        .ct-value { font-size: 0.95rem; font-weight: 700; }

        .contact-main-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
        }

        @media (max-width: 850px) {
            .contact-main-grid { grid-template-columns: 1fr; gap: 30px; }
        }

        .contact-form-panel {
            background: var(--card-bg); padding: 30px; border-radius: 20px;
            box-shadow: var(--neu-concave-deep);
        }

        .contact-map-panel {
            background: var(--card-bg); padding: 30px; border-radius: 20px;
            box-shadow: var(--neu-convex);
        }

        .contact-form input, 
        .contact-form textarea {
            width: 100%; padding: 14px 18px; border-radius: 12px;
            background: var(--card-bg); border: none; font-size: 0.95rem;
            font-family: inherit; color: var(--text); outline: none;
            box-shadow: var(--neu-concave);
        }

        .contact-form input:disabled, 
        .contact-form textarea:disabled { cursor: not-allowed; color: #9ca3af; opacity: 0.6; }

        .btn-main-disabled {
            width: 100%; padding: 15px; border: none; border-radius: 12px;
            background: var(--card-bg); color: #aa6b7c; font-weight: 700; font-size: 1rem;
            display: flex; align-items: center; justify-content: center; gap: 10px;
            box-shadow: var(--neu-mini-convex);
        }
        [data-theme="dark"] .btn-main-disabled { color: #888895; }

        /* ==========================================================================
           10. PAGE 4: FAQ & LAYANAN / PRICING
           ========================================================================== */
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .pricing-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 35px;
            text-align: center;
            border: 2px solid transparent;
            box-shadow: var(--neu-convex);
            transition: var(--transition-smooth);
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--neu-convex-hover);
        }

        .pricing-card.popular {
            border-color: var(--primary);
            position: relative;
        }

        .pricing-card.popular::before {
            content: 'Terpopuler';
            position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
            background: var(--primary); color: white; padding: 4px 15px;
            border-radius: 15px; font-size: 0.8rem; font-weight: 700;
        }

        .price {
            font-size: 2.2rem; font-family: var(--font-heading); color: var(--primary); margin: 15px 0;
        }

        /* Accordion Neumorphism CSS */
        .faq-section { max-width: 800px; margin: 0 auto; }
        
        .accordion-item {
            background: var(--card-bg);
            margin-bottom: 20px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--neu-convex);
            transition: var(--transition-smooth);
        }

        .accordion-header {
            padding: 20px; background: var(--card-bg);
            display: flex; justify-content: space-between; align-items: center;
            font-weight: 700; color: var(--text); transition: var(--transition-smooth);
        }

        .accordion-header:hover { color: var(--primary); }
        
        .accordion-content {
            padding: 0 20px; max-height: 0; overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
            color: #666;
        }

        [data-theme="dark"] .accordion-content { color: #b0b0bc; }

        /* ==========================================================================
           11. MAPS COMPONENT FIXES (ANTI-BLOCKED LAYER & FULL CONVEX GAPS)
           ========================================================================== */
        .map-wrapper {
            width: 100%; 
            height: 280px; 
            border-radius: 14px; 
            overflow: hidden;
            padding: 10px; 
            background: var(--card-bg);
            box-shadow: var(--neu-concave);
            position: relative;
            z-index: 1; 
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            display: block; 
            border-radius: 10px;
            position: relative;
            z-index: 2;
            pointer-events: auto; 
        }

        /* Legacy selector safety backup fallback */
        .contact-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

        /* ==========================================================================
           12. MULTI-COLUMN FOOTER & NEWSLETTER
           ========================================================================== */
        footer {
            background: var(--card-bg);
            padding: 60px 10% 30px 10%;
            margin-top: 80px;
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
            box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
        }
        
        [data-theme="dark"] footer {
            box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 { margin-bottom: 20px; font-size: 1.3rem; color: var(--text); }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { transition: var(--transition-smooth); color: var(--text); }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }

        .newsletter-form { display: flex; gap: 10px; margin-top: 15px; }

        .newsletter-form input {
            padding: 12px 18px; border-radius: 20px; border: none; outline: none; flex: 1;
            background: var(--card-bg); color: var(--text);
            box-shadow: var(--neu-concave);
        }

        .social-icons { display: flex; gap: 15px; margin-top: 20px; }

        .social-icons a {
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--card-bg); display: flex; align-items: center; justify-content: center;
            color: var(--text); box-shadow: var(--neu-mini-convex);
            transition: var(--transition-smooth);
        }

        .social-icons a:hover {
            background: var(--primary); color: white; transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 136, 0.3);
        }

        .footer-bottom {
            text-align: center; padding-top: 30px; 
            border-top: 1px solid rgba(0,0,0,0.05);
            font-size: 0.9rem; color: var(--text);
        }
        
        [data-theme="dark"] .footer-bottom { border-top-color: rgba(255,255,255,0.05); }

        .sticky-cta {
            position: fixed; bottom: 30px; right: 30px;
            z-index: 800; background: var(--secondary); color: white;
            padding: 12px 25px; border-radius: 30px; font-weight: 700;
            box-shadow: 0 5px 20px rgba(255, 31, 31, 0.4);
            display: flex; align-items: center; gap: 10px;
            transition: var(--transition-smooth);
            border: none; cursor: pointer;
        }

        .sticky-cta:hover { transform: translateY(-5px) scale(1.05); }

        /* Mobile Hamburger System Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px);
                background: var(--background); flex-direction: column; padding: 50px 0;
                transition: 0.4s ease; z-index: 899;
            }
            .nav-links.mobile-active { left: 0; }
            .hamburger { display: block; }
            .hero-title { font-size: 2.5rem; }
            .page { padding-left: 5%; padding-right: 5%; }
        }
        
       /* ==========================================================================
	   13. PROTECTION ENABLE (FEMININE SOFT GLASSMORPHISM VERSION)
	   ========================================================================== */

	#protection-enable {
	    position: fixed;
	    top: 50%;
	    left: 50%;
	    --titik-tengah: translate(-50%, -50%);
	    transform: var(--titik-tengah) scale(0.85);
	    
	    /* Desain UI: Kaca Lembut Pastel (Sentuhan Rose-Pink Elegan) */
	    background: rgba(255, 245, 247, 0.88);
	    backdrop-filter: blur(12px);
	    -webkit-backdrop-filter: blur(12px);
	    
	    /* Font & Warna: Lebih anggun, tidak kaku, warna charcoal rose */
	    color: #4a3538;
	    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
	    font-size: 18px;
	    font-weight: 600;
	    line-height: 1.6;
	    text-align: center;
	    
	    /* Layout & Struktur: Sudut ekstra membulat halus (Sangat Feminin) */
	    width: 85%;
	    max-width: 420px;
	    padding: 25px 35px;
	    border-radius: 24px;
	    border: 1px solid rgba(255, 182, 193, 0.4); /* Border pink pastel transparan */
	    
	    /* Layering & Aksesibilitas */
	    z-index: 999999;
	    opacity: 0;
	    pointer-events: none;
	    
	    /* Bayangan: Sangat halus & menyebar luas (Soft Cloud Shadow) + Glow Rose Tipis */
	    box-shadow: 0 15px 40px rgba(234, 180, 190, 0.25), 
	                0 0 20px rgba(255, 192, 203, 0.2);
	    
	    /* Transisi keluar (Fade-out) dibuat sangat tenang */
	    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
	                opacity 0.4s ease, 
	                backdrop-filter 0.4s ease;
	}

	/* Kunci pemicu utama: Transisi masuk (Fade-in + Soft Floating Bounce) */
	#protection-enable[style*="opacity: 1"],
	#protection-enable[style*="opacity:1"] {
	    transform: var(--titik-tengah) scale(1);
	    border-color: rgba(255, 140, 160, 0.5); /* Mengencang ke warna rose saat aktif */
	    animation: softFloatingBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	}

	/* Animasi Masuk: Muncul membal halus dari bawah seperti gelembung lembut */
	@keyframes softFloatingBounce {
	    0% { 
	        transform: translate(-50%, -45%) scale(0.9); 
	    }
	    60% { 
	        transform: translate(-50%, -51%) scale(1.02); 
	    }
	    100% { 
	        transform: var(--titik-tengah) scale(1); 
	    }
	}