/* GLOBAL SAFE WRAPPER (pengganti root layout) */
.app-shell {
    width: 100%;
    min-height: 100vh;

    /* ini yang bikin semua elemen "tidak nempel dinding" */
    padding-inline: clamp(16px, 4vw, 48px);

    box-sizing: border-box;
}

/* pastikan semua section ikut aman */
.app-shell * {
    box-sizing: border-box;
}

/* safety grid */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: clamp(16px, 3vw, 48px);

    width: 100%;
}

/* wajib biar grid child tidak maksa lebar */
.about-grid > * {
    min-width: 0;
}

/* safety text */
.text-card {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* safety slider */
.about-slider {
    max-width: 100%;
    overflow: hidden;
}

/* desktop-mobile transition */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .app-shell {
        padding-inline: 16px;
    }
}

        :root {
            /* LIGHT THEME - Color Palette */
            --primary: #ff00a2;
            --accent: #b25bb9;
            --accent-dark: #9a4a9e;
            --secondary: #ff0059;
            --background: #ffffff;
            --surface: #f8f9ff;
            --text: #1e1e1c;
            --text-light: #666666;
            --text-lighter: #999999;
            --border: #f0f0f0;
            --shadow: 0 20px 60px rgba(0,0,0,0.1);
            --shadow-hover: 0 30px 80px rgba(255,0,162,0.2);
            --bg-navbar-scrolled: rgba(255, 255, 255, 0.95);
            
            /* DARK THEME - Color Palette */
            --primary-dark: #ff69b4;
            --accent-dark-theme: #c084fc;
            --accent-dark2: #a78bfa;
            --secondary-dark: #ff1493;
            --background-dark: #0a0a0f;
            --surface-dark: #1a1a24;
            --text-dark: #f5f5f5;
            --text-light-dark: #b8b8b8;
            --text-lighter-dark: #888888;
            --border-dark: #333333;
            --shadow-dark: 0 20px 60px rgba(0,0,0,0.6);
            --shadow-hover-dark: 0 30px 80px rgba(255,0,162,0.4);
            
            /* Spacing */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            
            /* Typography */
            --font-family: 'Poppins', sans-serif;
            --font-size-xs: 0.875rem;
            --font-size-sm: 1rem;
            --font-size-base: 1.125rem;
            --font-size-lg: 1.5rem;
            --font-size-xl: 2rem;
            --font-size-xxl: 3.5rem;
        }

        /* DARK MODE OVERRIDE */
        [data-theme="dark"] {
            /* Color Palette */
            --primary: var(--primary-dark);
            --accent: var(--accent-dark-theme);
            --accent-dark: var(--accent-dark2);
            --secondary: var(--secondary-dark);
            --background: var(--background-dark);
            --surface: var(--surface-dark);
            --text: var(--text-dark);
            --text-light: var(--text-light-dark);
            --text-lighter: var(--text-lighter-dark);
            --border: var(--border-dark);
            --shadow: var(--shadow-dark);
            --shadow-hover: var(--shadow-hover-dark);
            --bg-navbar-scrolled: rgba(15, 23, 42, 0.95);
        }

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

        body {
            font-family: var(--font-family);
            line-height: 1.7;
            color: var(--text);
            background: var(--background);
            overflow-x: hidden;
            scroll-behavior: smooth;
            transition: background 0.3s ease, color 0.3s ease;
        }

        /* Custom Cursor */
        body.custom-cursor {
            cursor: none;
        }

        /* Titik kursor utama */
        .cursor {
            position: fixed;
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            transition: transform 0.05s linear, opacity 0.3s ease;
        }

        /* Lingkaran pengikut (Outer Circle) */
        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.15s cubic-bezier(0.17, 0.67, 0.83, 0.67), opacity 0.3s ease;
            opacity: 0.5;
        }

        /* Efek saat hovering ke link/tombol */
        .cursor.active {
            transform: translate(-50%, -50%) scale(1.5);
        }

        .cursor-follower.active {
            transform: translate(-50%, -50%) scale(1.5);
            background: var(--primary);
            opacity: 0.2;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: var(--spacing-sm) 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--border);
        }

        [data-theme="dark"] .navbar {
            background: rgba(26, 26, 36, 0.95);
            border-bottom: 1px solid var(--border-dark);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* handle transisi warna */
        .navbar.scrolled {
            background: var(--bg-navbar-scrolled) !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 0.8rem 0;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            width: auto;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .logo:hover img {
            opacity: 0.9;
        }

	/* Default (Light Mode) */
	.logo-img {
	    content: url("../img/dila-logo-light.webp");
	}

	/* Dark Mode */
	[data-theme="dark"] .logo-img {
	    content: url("../img/dila-logo-dark.webp");
	}

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

        .nav-link {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        [data-theme="dark"] .nav-link {
            color: var(--text-dark);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary);
        }

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

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text);
            transition: 0.3s;
        }

        [data-theme="dark"] .hamburger span {
            background: var(--text-dark);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 var(--spacing-md);
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, var(--font-size-xxl));
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            background: linear-gradient(135deg, white, rgba(255,255,255,0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-lg);
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        /* Sections */
        .section {
            padding: var(--spacing-xl) 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: var(--spacing-md);
            padding-right: var(--spacing-md);
        }

        .section-title {
            text-align: center;
            font-size: var(--font-size-xl);
            font-weight: 700;
            margin-bottom: var(--spacing-lg);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Cards */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }

        .card {
            background: var(--surface);
            border-radius: 20px;
            padding: var(--spacing-lg);
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        [data-theme="dark"] .card {
            background: var(--surface-dark);
            border-color: var(--border-dark);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

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

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: var(--spacing-md);
        }

        /* Carousel */
        .carousel {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
        }

        .carousel-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            padding: var(--spacing-lg);
            text-align: center;
            background: var(--surface);
        }

        [data-theme="dark"] .carousel-slide {
            background: var(--surface-dark);
        }

        .carousel-slide img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto var(--spacing-md);
            border: 4px solid var(--surface);
            box-shadow: var(--shadow);
        }

        [data-theme="dark"] .carousel-slide img {
            border-color: var(--surface-dark);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 0, 167, 0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev { left: 20px; }
        .carousel-next { right: 20px; }

        /* =========================
           Layout Container
        ========================= */
        .container {
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            overflow: hidden;
            box-sizing: border-box;
        }

        /* =========================
           GRID FIX
        ========================= */
        .about-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
            gap: var(--spacing-xl);
            align-items: center;
            width: 100%;
        }

        .about-grid > * {
            min-width: 0;
        }

        /* =========================
           TEXT CARD
        ========================= */
        .text-card {
            background: var(--surface);
            padding: var(--spacing-md);
            border-radius: 30px;
            box-shadow:
                inset 10px 10px 20px #e6e6e6,
                inset -10px -10px 20px #ffffff;
            margin-bottom: var(--spacing-md);

            overflow-wrap: anywhere;
            word-break: break-word;
            max-width: 100%;

            color: var(--text);
            box-sizing: border-box;
        }

        [data-theme="dark"] .text-card {
            background: var(--surface-dark);
            box-shadow:
                inset 5px 5px 15px rgba(0,0,0,0.3),
                inset -5px -5px 15px rgba(50,50,70,0.5);

            color: var(--text-dark);
        }

        /* =========================
           SLIDER
        ========================= */
        .about-slider {
            width: 100%;
            overflow: hidden;

            display: flex;
            align-items: center;

            padding: 0 20px;
            box-sizing: border-box;

            background: var(--surface);

            height: 60px;
            border-radius: 50px;

            position: relative;

            box-shadow:
                inset 5px 5px 15px #d9d9d9,
                inset -5px -5px 15px #ffffff;
        }

        [data-theme="dark"] .about-slider {
            background: var(--surface-dark);

            box-shadow:
                inset 5px 5px 15px rgba(0,0,0,0.4),
                inset -5px -5px 15px rgba(60,60,80,0.6);
        }

        /* =========================
           TRACK
        ========================= */
        .slider-track {
	    display: flex;
	    align-items: center;

	    gap: 48px;

	    width: max-content;

	    will-change: transform;

	    transform: translate3d(0,0,0);

	    backface-visibility: hidden;

	    flex-wrap: nowrap;
	}

	.slider-track span {
	    white-space: nowrap;
	    flex-shrink: 0;

	    letter-spacing: 0.5px;
	}

	@keyframes marquee {
	    from {
		transform: translate3d(0,0,0);
	    }

	    to {
		transform: translate3d(var(--scroll-width),0,0);
	    }
	}

        /* Pause on hover */
        .about-slider:hover .slider-track {
            animation-play-state: paused;
        }

        /* =========================
           ITEMS
        ========================= */
        .slider-track span {
            white-space: nowrap;
            flex-shrink: 0;

            color: var(--accent);

            font-weight: 700;
            text-transform: uppercase;

            letter-spacing: 2px;

            user-select: none;
        }

        /* =========================
           SEAMLESS LOOP
        ========================= */
        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* =========================
           PROFILE CARD
        ========================= */
        .profile-card {
            width: min(300px, 100%);
            aspect-ratio: 1 / 1;

            overflow: hidden;
            box-sizing: border-box;
        }

        /* =========================
           RESPONSIVE
        ========================= */
        @media (max-width: 768px) {

            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .profile-card {
                width: 250px;
                height: 250px;

                margin: 0 auto;
            }

            .about-slider {
                height: 55px;
                padding: 0 16px;
            }

            .slider-track {
                gap: 40px;
                animation-duration: 14s;
            }

            .slider-track span {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }
        }

        /* Pricing Table */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }

        .pricing-card {
            background: var(--surface);
            border-radius: 20px;
            padding: var(--spacing-xl);
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border: 1px solid var(--border);
            position: relative;
        }

        [data-theme="dark"] .pricing-card {
            background: var(--surface-dark);
            border-color: var(--border-dark);
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border-color: var(--primary);
        }

        .pricing-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: var(--font-size-xs);
            font-weight: 600;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin: var(--spacing-md) 0;
        }

        /* FAQ Accordion */
        .faq-item {
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: var(--spacing-md);
            overflow: hidden;
            background: var(--surface);
        }

        [data-theme="dark"] .faq-item {
            background: var(--surface-dark);
            border-color: var(--border-dark);
        }

        .faq-question {
            width: 100%;
            padding: var(--spacing-lg);
            background: var(--surface);
            border: none;
            text-align: left;
            font-size: var(--font-size-base);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
            color: var(--text);
        }

        [data-theme="dark"] .faq-question {
            background: var(--surface-dark);
            color: var(--text-dark);
        }

        .faq-question:hover {
            background: var(--surface);
        }

        [data-theme="dark"] .faq-question:hover {
            background: rgba(50,50,70,0.5);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #f8f9ff;
        }

        [data-theme="dark"] .faq-answer {
            background: rgba(50,50,70,0.5);
        }

        .faq-answer.active {
            max-height: 200px;
        }

        .faq-answer p {
            padding: var(--spacing-lg);
            margin: 0;
            color: var(--text-light);
        }

        [data-theme="dark"] .faq-answer p {
            color: var(--text-light-dark);
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: var(--spacing-md);
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem var(--spacing-md);
            border: 2px solid var(--border);
            border-radius: 12px;
            font-family: inherit;
            transition: all 0.3s ease;
            font-size: var(--font-size-sm);
            background: var(--surface);
            color: var(--text);
        }

        [data-theme="dark"] .form-group input,
        [data-theme="dark"] .form-group textarea {
            background: var(--surface-dark);
            border-color: var(--border-dark);
            color: var(--text-dark);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255,0,162,0.1);
        }

        .form-message {
            padding: var(--spacing-sm);
            border-radius: 8px;
            margin-bottom: var(--spacing-md);
            display: none;
        }

        .form-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        .form-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }

        /* Lightbox Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }

        .gallery-item {
            position: relative;
            cursor: pointer;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            background: var(--surface);
        }

        [data-theme="dark"] .gallery-item {
            background: var(--surface-dark);
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Container utama lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9997;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        @keyframes zoomInBounce {
            0% { opacity: 0; transform: scale(0.6); }
            60% { opacity: 1; transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }

        .lightbox img {
            max-width: 95%;
            max-height: 95%;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 4px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: scale(0.6);
        }

        .lightbox.active img {
            animation: zoomInBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 25px;
            color: #ffffff;
            font-size: 3rem;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            z-index: 10000;
            text-shadow: 0 0 10px rgba(0,0,0,0.5);
            transition: color 0.2s, transform 0.2s;
        }

        .lightbox-close:hover {
            color: #ff4d4d;
            transform: scale(1.1);
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            z-index: 9997;
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
        }

        .back-to-top.show {
            display: flex;
        }

        /* Footer */
        .footer {
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: 4rem 0 2rem;
            color: var(--text);
        }

        [data-theme="dark"] .footer {
            background: var(--surface-dark);
            border-color: var(--border-dark);
            color: var(--text-dark);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            text-align: left;
        }

        .footer-section h3 {
            color: var(--text);
            margin-bottom: 1rem;
            font-size: 1.25rem;
            font-weight: 700;
        }

        [data-theme="dark"] .footer-section h3 {
            color: var(--text-dark);
        }

        .footer-section p {
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        [data-theme="dark"] .footer-section p {
            color: var(--text-light-dark);
        }

        .footer-section a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        [data-theme="dark"] .footer-section a {
            color: var(--text-light-dark);
        }

        .footer-section a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
            box-shadow: 5px 5px 10px #e6e6e6, -5px -5px 10px #ffffff;
            text-decoration: none;
        }

        [data-theme="dark"] .social-links a {
            background: var(--surface-dark);
            border-color: var(--border-dark);
            color: var(--text-dark);
            box-shadow: 2px 2px 5px rgba(0,0,0,0.5), -2px -2px 5px rgba(50,50,70,0.3);
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        [data-theme="dark"] .footer-bottom {
            border-color: var(--border-dark);
            color: var(--text-light-dark);
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Parallax */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--surface);
                flex-direction: column;
                padding: var(--spacing-lg);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-top: 1px solid var(--border);
            }

            [data-theme="dark"] .nav-menu {
                background: var(--surface-dark);
                border-top-color: var(--border-dark);
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .cursor, .cursor-follower {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .parallax {
                background-attachment: scroll;
            }
        }

        /* Mobile hamburger animation */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

	/* Theme Toggle Button */
	.theme-toggle {
	    /* Hapus position fixed agar dia masuk ke aliran flexbox navbar */
	    position: relative; 
	    z-index: 1001;
	    background: var(--surface);
	    border: 2px solid var(--border);
	    border-radius: 50%;
	    width: 45px; /* Sedikit dikecilkan agar pas di navbar */
	    height: 45px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    cursor: pointer;
	    transition: all 0.3s ease;
	    box-shadow: var(--shadow);
	    font-size: 1.2rem;
	    color: var(--text);
	    margin-left: 15px; /* Kasih jarak dari menu terakhir */
	}

	/* Biar tetap rapi di mode gelap */
	[data-theme="dark"] .theme-toggle {
	    background: var(--surface-dark);
	    border-color: var(--border-dark);
	    color: var(--text-dark);
	}

        .theme-toggle:hover {
            transform: scale(1.1) rotate(180deg);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }

        .name-toggle {
            cursor: pointer;
            font-weight: 700;
            display: inline-flex;
            align-items: baseline;
        }

        .name-toggle span {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            color: var(--text);
        }

        [data-theme="dark"] .name-toggle span {
            color: var(--text-dark);
        }

        .let-in, .let-l2, .let-h {
            max-width: 0;
            opacity: 0;
        }

        .let-d {
            text-transform: uppercase;
        }

        .name-toggle.show-full .let-in { max-width: 2em; opacity: 1; }
        .name-toggle.show-full .let-l2 { max-width: 1em; opacity: 1; }
        .name-toggle.show-full .let-h { max-width: 1em; opacity: 1; }
        
        .name-toggle.show-full .let-d {
            text-transform: lowercase;
            color: var(--primary);
        }
        .name-toggle.show-full .let-i,
        .name-toggle.show-full .let-l2,
        .name-toggle.show-full .let-a { 
            color: var(--primary); 
        }

        [data-theme="dark"] .name-toggle.show-full .let-d,
        [data-theme="dark"] .name-toggle.show-full .let-i,
        [data-theme="dark"] .name-toggle.show-full .let-l2,
        [data-theme="dark"] .name-toggle.show-full .let-a {
            color: var(--primary);
        }

        /* RESPONSIVE ADJUSTMENTS */
        @media (max-width: 768px) {
            body, html {
                overflow-x: hidden;
            }

            .section {
                padding: var(--spacing-lg) 0;
            }

            .container {
                padding: 0 var(--spacing-sm);
            }

            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: var(--spacing-lg);
            }

            .profile-card {
                width: 200px;
                height: 200px;
                margin: 0 auto;
                border-radius: 40px;
                box-shadow: 10px 10px 30px #d9d9d9, -10px -10px 30px #ffffff;
            }

            [data-theme="dark"] .profile-card {
                box-shadow: 5px 5px 20px rgba(0,0,0,0.5), -5px -5px 20px rgba(50,50,70,0.3);
            }

            .text-card {
                padding: var(--spacing-sm);
                margin: 0 10px;
            }

            .text-card h3 {
                font-size: var(--font-size-lg);
            }

            .about-slider {
                margin: 0 10px;
                height: 50px;
            }

            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
                padding: 0 10px;
            }

            h1 {
                font-size: var(--font-size-xl);
            }

            .section-title {
                font-size: var(--font-size-lg);
                margin-bottom: var(--spacing-md);
            }
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* Profile Image */
        .profile-frame {
            width: 300px;
            height: 300px;
            background: var(--surface);
            border-radius: 50px;
            padding: 20px;
            box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        [data-theme="dark"] .profile-frame {
            background: var(--surface-dark);
            box-shadow: 10px 10px 40px rgba(0,0,0,0.5), -10px -10px 40px rgba(60,60,80,0.3);
        }

        .profile-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 40px;
        }

        .mood-label {
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 15px;
            margin-top: 0;
        }

        [data-theme="dark"] .mood-label {
            color: var(--text-light-dark);
        }

        .neumorph-card {
            box-shadow: inset 10px 10px 20px #e6e6e6, inset -10px -10px 20px #ffffff;
        }

        [data-theme="dark"] .neumorph-card {
            box-shadow: inset 5px 5px 15px rgba(0,0,0,0.3), inset -5px -5px 15px rgba(50,50,70,0.5);
        }

        .neumorph-card-inset {
            box-shadow: inset 5px 5px 15px #d9d9d9, inset -5px -5px 15px #ffffff;
        }

        [data-theme="dark"] .neumorph-card-inset {
            box-shadow: inset 5px 5px 15px rgba(0,0,0,0.4), inset -5px -5px 15px rgba(60,60,80,0.6);
        }