    /* Custom styles for A1 Auto Repair & Transmission */

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

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0f0f1a;
    }
    ::-webkit-scrollbar-thumb {
        background: #341234;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #662464;
    }

    /* Pulse animation for hero */
    @keyframes pulse-slow {
        0%, 100% { opacity: 0.4; transform: scale(1); }
        50% { opacity: 0.7; transform: scale(1.05); }
    }
    .animate-pulse-slow {
        animation: pulse-slow 4s ease-in-out infinite;
    }

    /* Service card hover glow */
    .service-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }
    .service-card:hover::before {
        opacity: 1;
    }

    /* Gold shimmer on hover for CTA buttons */
    .btn-gold::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;
    }
    .btn-gold:hover::after {
        left: 100%;
    }

    /* Fade-in animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .fade-in-up {
        animation: fadeInUp 0.8s ease forwards;
    }

    /* Staggered animation delays */
    .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
    .fade-in-up:nth-child(2) { animation-delay: 0.2s; }
    .fade-in-up:nth-child(3) { animation-delay: 0.3s; }
    .fade-in-up:nth-child(4) { animation-delay: 0.4s; }
    .fade-in-up:nth-child(5) { animation-delay: 0.5s; }
    .fade-in-up:nth-child(6) { animation-delay: 0.6s; }

    /* Mobile menu transitions */
    #mobile-menu {
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }
    #mobile-menu.hidden {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }
    #mobile-menu:not(.hidden) {
        max-height: 500px;
        opacity: 1;
    }

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

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

    /* Focus visible styles */
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
        outline: 2px solid #fbbf24;
        outline-offset: 2px;
    }

    /* 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;
        }
    }

    /* Select dropdown styling */
    select option {
        background: #1a1a2e;
        color: #fff;
    }

    /* Textarea resize handle */
    textarea {
        field-sizing: content;
    }
