    /* Custom styles for Fifth Avenue Fashions */
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Stat card float animation */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }
    
    .stat-card {
        animation: float 4s ease-in-out infinite;
    }
    
    .stat-card:nth-child(3) {
        animation-delay: -1s;
    }
    
    .stat-card:nth-child(4) {
        animation-delay: -2s;
    }
    
    /* Scroll reveal animations */
    .reveal {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .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; }
    }
    
    /* Testimonial card hover */
    .testimonial-card {
        transition: transform 0.3s ease, background 0.3s ease;
    }
    
    .testimonial-card:hover {
        transform: translateY(-4px);
    }
    
    /* Mobile menu transition */
    #mobileMenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    #mobileMenu.open {
        max-height: 400px;
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #f1f5f9;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #94a3b8;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #64748b;
    }
    
    /* Focus styles for accessibility */
    a:focus-visible,
    button:focus-visible {
        outline: 2px solid #0d9488;
        outline-offset: 2px;
        border-radius: 4px;
    }
    
    /* Selection color */
    ::selection {
        background: #99f6e4;
        color: #042f2e;
    }
