    /* Base & Utilities */
    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(245, 166, 35, 0.3);
        color: #faf5ff;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #1a0a28;
    }
    ::-webkit-scrollbar-thumb {
        background: #4A2c5E;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #7c3aed;
    }

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(26, 10, 40, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(74, 44, 94, 0.5);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* Service card stagger animation */
    .service-card {
        opacity: 0;
        transform: translateY(30px);
    }
    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    /* Gallery image hover */
    .aspect-square {
        overflow: hidden;
    }
    .aspect-square img {
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Hero text reveal */
    #hero h1 {
        opacity: 0;
        transform: translateY(40px);
        animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    }
    #hero p {
        opacity: 0;
        transform: translateY(20px);
        animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    }
    #hero .flex-col {
        opacity: 0;
        transform: translateY(20px);
        animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    }
    #hero .mt-16 {
        opacity: 0;
        transform: translateY(20px);
        animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
    }
    #hero .inline-flex:first-child {
        opacity: 0;
        animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    }

    @keyframes heroReveal {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile menu transition */
    #mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    #mobile-menu.open {
        max-height: 400px;
    }

    /* Mobile link transition */
    .mobile-link {
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(74, 44, 94, 0.3);
    }
    .mobile-link:last-child {
        border-bottom: none;
    }

    /* Section reveal animation */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Pulse animation for badge dot */
    @keyframes pulse-dot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.3); }
    }
    .animate-pulse-dot {
        animation: pulse-dot 2s ease-in-out infinite;
    }

    /* Focus visible styles */
    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
        outline: 2px solid #F5A623;
        outline-offset: 2px;
    }

    /* Map contrast fix */
    iframe {
        border-radius: 0 0 0 0;
    }

    /* Responsive adjustments */
    @media (max-width: 640px) {
        .font-display {
            line-height: 1.1;
        }
    }
