    /* Custom styles for Sabo Automotive Repair */
    
    * {
        scroll-behavior: smooth;
    }
    
    html {
        scroll-padding-top: 80px;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Service card hover glow */
    .service-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 1rem;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }
    
    .service-card {
        position: relative;
    }
    
    .service-card:hover::before {
        opacity: 1;
        box-shadow: 0 0 40px rgba(45, 212, 160, 0.08);
    }
    
    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 0;
        padding-bottom: 0;
    }
    
    #navbar.scrolled .max-w-7xl {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    /* Mobile menu animation */
    #mobileMenu {
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    #mobileMenu.hidden {
        animation: slideUp 0.2s ease forwards;
    }
    
    @keyframes slideUp {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(-10px);
        }
    }
    
    /* Mobile link hover */
    .mobile-link {
        position: relative;
    }
    
    .mobile-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #4ade80;
        transition: width 0.3s ease;
    }
    
    .mobile-link:hover::after {
        width: 100%;
    }
    
    /* Back to top button */
    #backToTop.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    /* Intersection observer animations */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #0a1628;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #1a3a6e;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #2dd4a0;
    }
    
    /* Selection color */
    ::selection {
        background: rgba(45, 212, 160, 0.3);
        color: #fff;
    }
    
    /* Input autofill styling */
    input:-webkit-autofill,
    textarea:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px #0a1628 inset !important;
        -webkit-text-fill-color: #fff !important;
    }
    
    /* Hero image parallax feel */
    #hero img {
        will-change: transform;
    }
    
    /* Geometric shape animations */
    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(45deg); }
        50% { transform: translateY(-15px) rotate(45deg); }
    }
    
    @keyframes float2 {
        0%, 100% { transform: translateY(0) rotate(12deg); }
        50% { transform: translateY(-10px) rotate(12deg); }
    }
    
    /* Staggered animation delays for service cards */
    .service-card:nth-child(1) { transition-delay: 0.05s; }
    .service-card:nth-child(2) { transition-delay: 0.1s; }
    .service-card:nth-child(3) { transition-delay: 0.15s; }
    .service-card:nth-child(4) { transition-delay: 0.2s; }
    .service-card:nth-child(5) { transition-delay: 0.25s; }
    .service-card:nth-child(6) { transition-delay: 0.3s; }
    
    /* Why us cards stagger */
    #why-us .group:nth-child(1) { transition-delay: 0.05s; }
    #why-us .group:nth-child(2) { transition-delay: 0.1s; }
    #why-us .group:nth-child(3) { transition-delay: 0.15s; }
    #why-us .group:nth-child(4) { transition-delay: 0.2s; }
