.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.linked-service-card.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
}
.combo-badge {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.learn-more-button.btn {
  margin-top: 0;
}
/* HR Quick-Facts and Metadata */
.role-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-2);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.card-metadata {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 0.25rem;
  gap: 0.3em;
}
.card-metadata svg {
  display: inline-block;
  vertical-align: middle;
}
.venue-proof {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.5rem;
}
.combo-badge {
  margin-top: 1.1rem;
  border: 1.5px solid var(--gold-1);
  border-radius: 1.2em;
  background: #fff8e5;
  color: #8f6608;
  font-size: 0.97rem;
  padding: 0.45em 1.1em;
  display: inline-block;
  font-weight: 500;
}

/* Trust Bar for Corporate */
.trust-bar {
  margin: 2.5rem auto 1.5rem auto;
  max-width: 900px;
  text-align: center;
}
.trust-bar-logos {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 0.7rem;
}
.trust-bar-logos img {
  height: 38px;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.8;
  object-fit: contain;
}
.trust-bar-caption {
  font-size: 1.05rem;
  color: #888;
  letter-spacing: 0.01em;
}
.services-grid .linked-service-card {
  width: 100%;
  /* Remove max-width and margin for desktop so cards fill grid columns */
}
@media (max-width: 700px) {
  .services-grid .linked-service-card {
    max-width: 340px;
    margin: 0 auto;
  }
}
/* Phase 2: CSS for filter bar and service grid */

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}


.filter-btn {
  background: #fff;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
}
.filter-btn.active,
.filter-btn[aria-pressed="true"] {
  background: var(--gold-1, #e6b800);
  color: #1a1a1a;
  border-color: #b38f00;
}
.filter-btn:hover,
.filter-btn:focus-visible {
  background: #222;
  color: #fff;
  outline: 3px solid var(--gold-1, #e6b800);
  outline-offset: 2px;
  z-index: 2;
}

  .services-grid {
    padding: 2rem 2vw 2rem 2vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .services-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding-bottom: 1.5rem;
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    transform: none;
  }
  .services-grid .linked-service-card {
    min-width: 80vw;
    max-width: 85vw;
    margin-right: 1.2rem;
    flex: 0 0 auto;
  }
  .services-grid .linked-service-card:last-child {
    margin-right: 0;
  }
}

  .service-card {
    display: block;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 1.25rem;
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.25s, transform 0.25s;
    box-shadow: 0 6px 18px rgba(10,10,10,0.04);
    box-sizing: border-box;
    opacity: 1;
    transform: scale(1);
    text-align: left;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(10,10,10,0.09);
  }
  .service-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
  }
  .service-card .avatar {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0.7rem 0 0.7rem 0;
  }
  .service-card .avatar img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(10,10,10,0.06);
    display: block;
  }
  .service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
  }
  .service-card .capacity {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
  }
  .service-card .combo {
    font-size: 0.98rem;
    color: #1a1a1a;
    background: #f3f3f3;
    border-radius: 1rem;
    padding: 0.25rem 0.75rem;
    display: inline-block;
    margin-top: 0.5rem;
  }
  .service-card .learn-more-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(45deg, var(--gold-1) 0%, var(--gold-2) 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
  }
  .service-card .learn-more-button:hover {
    opacity: 0.95;
  }
  margin-bottom: 0.5rem;
}

.service-card .combo {
  font-size: 0.98rem;
  color: #1a1a1a;
  background: #f3f3f3;
  border-radius: 1rem;
  padding: 0.25rem 0.75rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.service-card.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
