    /* Custom styles for 66 Auto Repair */

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

    /* Selection color */
    ::selection {
        background: rgba(212, 160, 83, 0.3);
        color: #fff;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0A0A0A;
    }
    ::-webkit-scrollbar-thumb {
        background: #3D0C10;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #D4A053;
    }

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(5, 5, 5, 0.9);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

    /* Service card hover */
    .service-card {
        transform: translateY(0);
    }
    .service-card:hover {
        transform: translateY(-4px);
    }

    /* Mobile menu */
    #mobileMenu.open {
        opacity: 1;
        pointer-events: auto;
    }
    #mobileMenu.closed {
        opacity: 0;
        pointer-events: none;
    }

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

    /* Fade-in animation */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger children */
    .stagger-children > * {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
    .stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
    .stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
    .stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
    .stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
    .stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
    .stagger-children.visible > * {
        opacity: 1;
        transform: translateY(0);
    }

    /* Gold gradient text utility */
    .text-gold-gradient {
        background: linear-gradient(135deg, #E8C87A, #D4A053, #C4903F);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Pulse dot */
    @keyframes pulse-gold {
        0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 160, 83, 0.4); }
        50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(212, 160, 83, 0); }
    }
    .pulse-gold {
        animation: pulse-gold 2s ease-in-out infinite;
    }

    /* Image shimmer */
    @keyframes shimmer {
        0% { background-position: -200% center; }
        100% { background-position: 200% center; }
    }
