  /* Custom styles & animations */
  html {
    scroll-behavior: smooth;
  }

  body {
    overflow-x: hidden;
  }

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

  /* Service card hover */
  .service-card {
    transition: transform 0.3s ease, background 0.3s ease;
  }

  /* Area card hover */
  .area-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Testimonial card hover */
  .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(70, 143, 31, 0.12);
  }

  /* Fade-in animation */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger children */
  .fade-in.stagger-1 { transition-delay: 0.1s; }
  .fade-in.stagger-2 { transition-delay: 0.2s; }
  .fade-in.stagger-3 { transition-delay: 0.3s; }
  .fade-in.stagger-4 { transition-delay: 0.4s; }

  /* Mobile menu animation */
  #mobileMenu {
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mobile link animation */
  .mobile-link {
    display: block;
    padding: 8px 0;
  }

  /* Focus styles */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline: 2px solid #468f1f;
    outline-offset: 2px;
  }

  /* Selection color */
  ::selection {
    background-color: #bfe1a6;
    color: #1c3b0f;
  }
