  /* Custom styles for Lou's Loving Care */

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

  /* Floating animation for hero cards */
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  .floating-card {
    animation: float 4s ease-in-out infinite;
  }

  .floating-card:nth-child(2) {
    animation-delay: -1s;
  }

  .floating-card:nth-child(3) {
    animation-delay: -2s;
  }

  .floating-card:nth-child(4) {
    animation-delay: -3s;
  }

  /* Scroll reveal animations (progressive enhancement) */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }
  }

  /* Service card hover effect */
  .service-card {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  }

  /* Navbar scroll state */
  #navbar.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  }

  /* Mobile menu animation */
  #mobileMenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  #mobileMenu.open {
    max-height: 400px;
    padding: 0.5rem 0;
  }

  /* Selection color */
  ::selection {
    background-color: #85c992;
    color: #1a4424;
  }

  /* Focus visible styles */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline: 2px solid #85c992;
    outline-offset: 2px;
    border-radius: 4px;
  }

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

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

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

  ::-webkit-scrollbar-thumb:hover {
    background: #85c992;
  }
