    /* Custom styles for Rood Restoration and Repair */

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

    /* Selection color */
    ::selection {
        background-color: rgba(5, 150, 105, 0.2);
        color: #064e3b;
    }

    /* Navbar scroll effect */
    #navbar.scrolled {
        background-color: rgba(254, 253, 248, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 1px 20px rgba(6, 78, 59, 0.08);
    }

    #navbar.scrolled .nav-link {
        color: #064e3b;
    }

    /* Hero card hover effects */
    .service-card {
        transform: translateY(0);
    }

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

    /* Floating stat card animations */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    @keyframes float-delayed {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }

    .absolute.-top-6.-left-6,
    .absolute.-bottom-4.-right-4 {
        animation: float 4s ease-in-out infinite;
    }

    .absolute.top-1/2.-right-6 {
        animation: float-delayed 5s ease-in-out infinite;
        animation-delay: 1s;
    }

    /* Mobile menu transitions */
    #mobile-menu.active {
        opacity: 1;
        pointer-events: all;
    }

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

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

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #fefdf8;
    }

    ::-webkit-scrollbar-thumb {
        background: #065f46;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #047857;
    }

    /* Form select arrow */
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23065f46' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }

    /* Mobile menu link hover */
    .mobile-link {
        position: relative;
    }

    .mobile-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #059669;
        transition: width 0.3s ease;
    }

    .mobile-link:hover::after {
        width: 100%;
    }

    /* Image loading placeholder */
    img {
        background-color: #e5e7eb;
    }

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