    /* Custom styles for Kendra's Haircut House */

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

    /* Selection color */
    ::selection {
        background-color: #e8552e;
        color: white;
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #faf5e9;
    }
    ::-webkit-scrollbar-thumb {
        background: #d4b055;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #c0953e;
    }

    /* Navbar transition for scroll state */
    #navbar.scrolled {
        background-color: rgba(20, 23, 25, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* Service card hover effects */
    .service-card {
        will-change: transform, box-shadow;
    }

    /* Gallery item hover */
    .gallery-item {
        cursor: pointer;
    }

    /* Testimonial card hover */
    .testimonial-card {
        will-change: transform, box-shadow;
    }

    /* Fade-in animation for scroll reveal */
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.revealed {
            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; }
        .reveal-delay-5 { transition-delay: 0.5s; }
    }

    /* Mobile menu animation */
    #mobile-menu {
        animation: slideDown 0.3s ease-out;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Subtle pulse for CTA buttons */
    @keyframes pulse-soft {
        0%, 100% { box-shadow: 0 0 0 0 rgba(232, 85, 46, 0.4); }
        50% { box-shadow: 0 0 0 10px rgba(232, 85, 46, 0); }
    }

    /* Focus visible styles for accessibility */
    *:focus-visible {
        outline: 2px solid #e8552e;
        outline-offset: 2px;
    }

    /* Counter animation */
    .counter {
        display: inline-block;
    }
