    /* Custom styles for Texas United Truck & Trailer Services */

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

    /* Hero animations */
    .hero-anim {
        opacity: 0;
        transform: translateY(30px);
        animation: heroFadeUp 0.8s ease forwards;
    }

    .hero-anim:nth-child(1) { animation-delay: 0.1s; }
    .hero-anim:nth-child(2) { animation-delay: 0.25s; }
    .hero-anim:nth-child(3) { animation-delay: 0.4s; }
    .hero-anim:nth-child(4) { animation-delay: 0.55s; }

    @keyframes heroFadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

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

    /* Custom selection color */
    ::selection {
        background-color: #2f5334;
        color: #faf9f6;
    }

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

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

    ::-webkit-scrollbar-thumb {
        background: #9cc59f;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #4d8352;
    }

    /* Mobile menu transitions */
    #mobileMenu {
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    /* Navbar scroll effect */
    #navbar.scrolled {
        box-shadow: 0 1px 20px rgba(15, 28, 17, 0.08);
    }

    /* Image hover zoom */
    img {
        transition: transform 0.5s ease;
    }

    /* Form select arrow */
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232f5334' 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;
        appearance: none;
        -webkit-appearance: none;
    }

    /* Print styles */
    @media print {
        header, footer, #contactForm, .reveal {
            display: none;
        }
        body {
            background: white;
            color: black;
        }
    }
