  /* Custom styles for Jilian G. Salon */

  html {
    scroll-behavior: smooth;
  }

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

  /* Selection color */
  ::selection {
    background-color: rgba(168, 230, 207, 0.3);
    color: #ffffff;
  }

  /* Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #050a12;
  }
  ::-webkit-scrollbar-thumb {
    background: rgba(168, 230, 207, 0.3);
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 230, 207, 0.5);
  }

  /* Navbar scroll state */
  #nav.scrolled {
    background-color: rgba(5, 10, 18, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  #nav.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
  }

  /* Service card hover glow */
  .service-card:hover {
    box-shadow: 0 8px 40px rgba(168, 230, 207, 0.08);
  }

  /* Gallery item hover */
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* Reveal animations - progressive enhancement */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Default visible state for reduced-motion / no-JS */
  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
    }
  }

  /* Mobile menu transitions */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
  #mobile-menu.closed {
    opacity: 0;
    pointer-events: none;
  }

  /* Select dropdown 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='rgba(168,230,207,0.6)' 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;
  }

  /* Subtle gradient border on focus */
  input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 1px rgba(168, 230, 207, 0.3);
  }

  /* Smooth image loading */
  img {
    loading: lazy;
  }
