  /* Custom styles for Lehman Trucking & Excavating */

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

  /* Scroll indicator animation */
  @keyframes scroll-indicator {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
  }

  .animate-scroll-indicator {
    animation: scroll-indicator 1.5s ease-in-out infinite;
  }

  /* Service card hover glow */
  .service-card:hover {
    box-shadow: 0 20px 60px -15px rgba(139, 26, 43, 0.2);
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #0a0a0a;
  }
  ::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #8b1a2b;
  }

  /* Selection color */
  ::selection {
    background: rgba(139, 26, 43, 0.5);
    color: #f9e4e4;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html {
      scroll-behavior: auto;
    }
  }

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

  /* Navbar glass effect when scrolled */
  #navbar.scrolled {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 26, 43, 0.2);
  }

  /* Gallery image aspect ratios */
  .gallery-grid img {
    aspect-ratio: auto;
  }

  /* Form focus styles */
  input:focus, select:focus, textarea:focus {
    outline: none;
  }

  /* Playfair Display display settings */
  .font-display {
    text-rendering: optimizeLegibility;
  }
