  /* Custom styles for Long Island Limo Service */

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Navbar scroll state */
  #navbar.scrolled {
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  #navbar.scrolled .font-display {
    color: #fff;
  }

  /* Hero animations */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #hero > div > div {
    animation: fadeUp 0.9s ease-out both;
  }

  #hero > div > div > div:nth-child(1) {
    animation-delay: 0.1s;
  }

  #hero > div > div > div:nth-child(2) {
    animation-delay: 0.25s;
  }

  #hero > div > div > div:nth-child(3) {
    animation-delay: 0.4s;
  }

  #hero > div > div > div:nth-child(4) {
    animation-delay: 0.55s;
  }

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

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

  /* Service cards stagger */
  #services .group:nth-child(1) { transition-delay: 0.05s; }
  #services .group:nth-child(2) { transition-delay: 0.1s; }
  #services .group:nth-child(3) { transition-delay: 0.15s; }
  #services .group:nth-child(4) { transition-delay: 0.2s; }
  #services .group:nth-child(5) { transition-delay: 0.25s; }
  #services .group:nth-child(6) { transition-delay: 0.3s; }

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

  ::-webkit-scrollbar-track {
    background: #0f172a;
  }

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

  ::-webkit-scrollbar-thumb:hover {
    background: #0d9488;
  }

  /* Mobile menu transition */
  #mobile-menu {
    animation: slideDown 0.3s ease;
  }

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

  /* Select styling */
  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='%2394a3b8' 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 1rem center;
    padding-right: 2.5rem;
  }

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