  /* ===== BASE & SCROLL ===== */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    overflow-x: hidden;
  }

  /* ===== NAVBAR ===== */
  #navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  }

  #navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(123, 45, 142, 0.08);
  }

  #navbar.scrolled .nav-link {
    color: #561d62;
  }

  #navbar.scrolled .nav-link:hover {
    color: #35123d;
    background: rgba(123, 45, 142, 0.06);
  }

  #navbar.scrolled .font-serif {
    color: #35123d;
  }

  #navbar.scrolled .text-plum-500 {
    color: #7B2D8E;
  }

  /* ===== HERO ===== */
  .hero-bg {
    will-change: transform;
  }

  /* ===== SERVICE CARDS ===== */
  .service-card {
    transform: translateY(0);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-4px);
  }

  /* ===== NEIGHBORHOOD CARDS ===== */
  .neighborhood-card {
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .neighborhood-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  /* ===== TESTIMONIAL CARDS ===== */
  .testimonial-card {
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
  }

  /* ===== SCROLL ANIMATIONS ===== */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* ===== MOBILE MENU ===== */
  #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='%237B2D8E' stroke-width='2.5' 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;
  }

  /* ===== SELECTION ===== */
  ::selection {
    background: rgba(123, 45, 142, 0.15);
    color: #35123d;
  }

  /* ===== FOCUS VISIBLE ===== */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  select:focus-visible {
    outline: 2px solid #7B2D8E;
    outline-offset: 2px;
    border-radius: 8px;
  }
</style>
