    /* Custom styles complementing Tailwind */

    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #160816;
    }
    ::-webkit-scrollbar-thumb {
        background: #3d163d;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #562257;
    }

    /* Selection color */
    ::selection {
        background: rgba(245, 158, 11, 0.3);
        color: #f5f0f8;
    }

    /* Hero animations */
    .hero-badge {
        animation: fadeInDown 0.8s ease-out both;
    }
    .hero-badge {
        animation-delay: 0.2s;
    }
    #hero h1 {
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
    #hero p {
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }
    #hero .flex-col,
    #hero .flex-row {
        animation: fadeInUp 0.8s ease-out 0.8s both;
    }

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

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(22, 8, 22, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(212, 184, 212, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* Mobile menu */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    /* Gold shimmer on hover for buttons */
    .bg-gradient-to-r.from-amber-500.to-amber-400 {
        position: relative;
        overflow: hidden;
    }
    .bg-gradient-to-r.from-amber-500.to-amber-400::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }
    .bg-gradient-to-r.from-amber-500.to-amber-400:hover::after {
        left: 100%;
    }

    /* Image hover zoom */
    .aspect-square.overflow-hidden {
        position: relative;
    }
    .aspect-square.overflow-hidden img {
        transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .aspect-square.overflow-hidden:hover img {
        transform: scale(1.1);
    }

    /* Focus styles */
    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
    }

    /* Select dropdown arrow */
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a060a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 40px;
    }

    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
        }
        html {
            scroll-behavior: auto;
        }
    }
