    /* Custom styles for New Aurora's Salon */

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

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #2D1B33;
    }
    ::-webkit-scrollbar-thumb {
        background: #6B2F5B;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #8B4F7A;
    }

    /* Hero badge animation */
    .hero-badge {
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards;
        animation-delay: 0.2s;
    }

    /* Hero heading animation */
    h1 {
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards;
        animation-delay: 0.4s;
    }

    /* Hero paragraph animation */
    #hero p {
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards;
        animation-delay: 0.6s;
    }

    /* Hero buttons animation */
    #hero .flex-wrap {
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards;
        animation-delay: 0.8s;
    }

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

    /* Service card hover effect */
    .service-card {
        transform: translateY(0);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
    }

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

    .gallery-item img {
        transition: transform 0.7s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    /* Navbar scroll effect */
    #navbar.scrolled {
        background: rgba(45, 27, 51, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    #navbar.scrolled .nav-link {
        color: rgba(255, 255, 255, 0.9);
    }

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

    #mobileMenu:not(.open) {
        opacity: 0;
        pointer-events: none;
    }

    /* Mobile link animation */
    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

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

    #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; }

    /* Feature card hover */
    .feature-card {
        transition: background 0.3s ease;
    }

    .feature-card:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    /* Testimonial card hover */
    .testimonial-card {
        transform: translateY(0);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
    }

    /* Scroll reveal animations */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

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

    /* Stagger children */
    .stagger-children > * {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .stagger-children.revealed > *:nth-child(1) { transition-delay: 0.1s; }
    .stagger-children.revealed > *:nth-child(2) { transition-delay: 0.2s; }
    .stagger-children.revealed > *:nth-child(3) { transition-delay: 0.3s; }
    .stagger-children.revealed > *:nth-child(4) { transition-delay: 0.4s; }
    .stagger-children.revealed > *:nth-child(5) { transition-delay: 0.5s; }
    .stagger-children.revealed > *:nth-child(6) { transition-delay: 0.6s; }

    .stagger-children.revealed > * {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .font-display {
            word-break: keep-all;
        }
    }

    /* Focus visible for accessibility */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
        outline: 2px solid #E8A849;
        outline-offset: 2px;
        border-radius: 4px;
    }

    /* Print styles */
    @media print {
        #navbar, .mobile-menu-btn {
            display: none !important;
        }
        body {
            color: #000;
            background: #fff;
        }
    }
