.facilities-list {
    width: 100%;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .facility-item {
    background-color: #f5f2ec;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 11px 28px;
    /* cursor: pointer; */
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  /* Classic fill sweeps in from the left — stays inside the box */
  .facility-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #000000;
    border-radius: inherit;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
  }

  .facility-item:hover::before {
    width: 100%;
  }

  .facility-item:hover {
    box-shadow: inset 0 0 0 2px #1a3a30;
  }

  .facility-item span {
    position: relative;
    z-index: 1;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(13px, 2.2vw, 17px);
    color: #000000;
    letter-spacing: 0.01em;
    transition: color 0.35s ease;
  }

  .facility-item:hover span {
    color: #f5f2ec;
  }

  

  /* Staggered entrance animation */
  .facility-item { animation: fadeUp 0.5s ease both; }
  .facility-item:nth-child(1) { animation-delay: 0.05s; }
  .facility-item:nth-child(2) { animation-delay: 0.10s; }
  .facility-item:nth-child(3) { animation-delay: 0.15s; }
  .facility-item:nth-child(4) { animation-delay: 0.20s; }
  .facility-item:nth-child(5) { animation-delay: 0.25s; }
  .facility-item:nth-child(6) { animation-delay: 0.30s; }
  .facility-item:nth-child(7) { animation-delay: 0.35s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 480px) {
    .facility-item {
      padding: 16px 22px;
      border-radius: 40px;
    }
  }