    /* ===== RESET & BASE ===== */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(245, 158, 11, 0.3);
        color: #fff;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar {
        width: 6px;
    }
    ::-webkit-scrollbar-track {
        background: #0f0f12;
    }
    ::-webkit-scrollbar-thumb {
        background: #4a1f36;
        border-radius: 3px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #6b2a4c;
    }

    /* ===== NAVBAR ===== */
    #navbar {
        transition: background-color 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
    }

    #navbar.scrolled {
        background: rgba(15, 15, 18, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: #f59e0b;
        transition: width 0.3s ease;
    }

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

    /* ===== MOBILE MENU ===== */
    #mobileMenu.open {
        opacity: 1;
        pointer-events: all;
    }

    #mobileMenu.closed {
        opacity: 0;
        pointer-events: none;
    }

    .mobile-link {
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease, color 0.3s ease;
    }

    #mobileMenu.open .mobile-link {
        transform: translateY(0);
        opacity: 1;
    }

    #mobileMenu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobileMenu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
    #mobileMenu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
    #mobileMenu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
    #mobileMenu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

    /* ===== HAMBURGER ===== */
    #bar1 {
        transition: transform 0.3s ease 0.1s, opacity 0.2s ease 0.1s;
    }
    #bar2 {
        transition: opacity 0.2s ease;
    }
    #bar3 {
        transition: transform 0.3s ease, opacity 0.2s ease 0.1s;
    }

    body.menu-open #bar1 {
        transform: translateY(4px) rotate(45deg);
        transition-delay: 0s;
    }
    body.menu-open #bar2 {
        opacity: 0;
        transition-delay: 0s;
    }
    body.menu-open #bar3 {
        transform: translateY(-4px) rotate(-45deg);
        width: 24px;
        transition-delay: 0s;
    }

    /* ===== SCROLL INDICATOR ===== */
    @keyframes scrollIndicator {
        0% { top: -16px; opacity: 1; }
        100% { top: 48px; opacity: 0; }
    }

    .animate-scroll-indicator {
        animation: scrollIndicator 1.5s ease-in-out infinite;
    }

    /* ===== FLOATING CARDS ANIMATION ===== */
    @keyframes float1 {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-12px) rotate(1deg); }
    }

    @keyframes float2 {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-8px) rotate(-1deg); }
    }

    @keyframes float3 {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-10px) rotate(0.5deg); }
    }

    .z-20 { animation: float1 6s ease-in-out infinite; }
    .z-30 { animation: float2 5s ease-in-out infinite; }
    .z-30:nth-of-type(3) { animation: float3 7s ease-in-out infinite; }

    /* ===== FADE-IN ANIMATIONS ===== */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===== PARALLAX-LIKE SUBTLE EFFECTS ===== */
    @media (prefers-reduced-motion: no-preference) {
        .bg-blur-3xl {
            animation: pulse-blur 8s ease-in-out infinite;
        }
    }

    @keyframes pulse-blur {
        0%, 100% { opacity: 0.3; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.05); }
    }

    /* ===== IMAGE HOVER ZOOM ===== */
    .overflow-hidden {
        overflow: hidden;
    }

    /* ===== CARD GLOW ON HOVER ===== */
    .group:hover .group-hover\\:bg-amber-500\\/30 {
        background-color: rgba(245, 158, 11, 0.3);
    }

    /* ===== INPUT AUTOFILL STYLING ===== */
    input:-webkit-autofill,
    textarea:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px #0f0f12 inset !important;
        -webkit-text-fill-color: #fff !important;
    }

    /* ===== RESPONSIVE TWEAKS ===== */
    @media (max-width: 768px) {
        html {
            scroll-padding-top: 73px;
        }

        .font-serif {
            font-family: 'Playfair Display', Georgia, serif;
        }
    }
