/* ================= Services hero ================= */
.svc-hero {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: linear-gradient(155deg, var(--brand-navy-dark) 0%, var(--brand-navy) 55%, var(--brand-navy-light) 100%);
  color: #fff;
  padding: 3.5rem 0 5rem;
  text-align: center;
}

.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.09) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
}

.svc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.svc-hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-gold-bright);
  margin-bottom: 0.75rem;
}

.svc-hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.svc-hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0;
}

/* ================= Filter card ================= */
.svc-filter-card {
  position: relative;
  z-index: 5;
  margin-top: -2.75rem;
  margin-bottom: 1.75rem;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 25px 55px rgba(11, 31, 58, 0.16);
  padding: 1.25rem 1.5rem;
}

.svc-search-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.svc-search-box {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid #dde3ec;
  border-radius: 0.7rem;
  padding: 0.6rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.svc-search-box:focus-within {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px var(--brand-gold-soft);
}

.svc-search-box .icon {
  width: 17px;
  height: 17px;
  color: #9aa1b3;
  flex: none;
}

.svc-search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.9rem;
  color: var(--brand-navy);
}

.svc-search-box input::placeholder {
  color: #b3b8c6;
}

.svc-sort-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: none;
}

.svc-sort-box label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7385;
  white-space: nowrap;
}

.svc-sort-box select {
  border: 1px solid #dde3ec;
  border-radius: 0.6rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
  color: var(--brand-navy);
  background: #fff;
}

.svc-sort-box select:focus {
  outline: none;
  border-color: var(--brand-gold);
}

.svc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #dde3ec;
  background: #fff;
  color: var(--brand-navy);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.15s ease;
}

.svc-chip .icon {
  width: 15px;
  height: 15px;
}

.svc-chip em {
  font-style: normal;
  background: var(--brand-navy-soft);
  color: var(--brand-navy);
  border-radius: 999px;
  padding: 0.05rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.svc-chip:hover {
  border-color: var(--brand-gold);
}

.svc-chip.active {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
}

.svc-chip.active em {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ================= Results bar ================= */
.svc-results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #6b7385;
  margin-bottom: 1rem;
}

/* ================= Grid ================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-bottom: 1rem;
}

.svc-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  height: 300px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.08);
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.18);
}

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 32, 0.05) 30%, rgba(6, 16, 32, 0.9) 100%);
}

.svc-card-cat {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.svc-card-cat .icon {
  width: 12px;
  height: 12px;
}

.svc-card-price {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  text-align: right;
  background: rgba(11, 31, 58, 0.82);
  color: #fff;
  font-size: 0.66rem;
  line-height: 1.4;
  padding: 0.35rem 0.6rem;
  border-radius: 0.6rem;
}

.svc-card-price b {
  font-size: 0.85rem;
  color: var(--brand-gold-bright);
}

.svc-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  color: #fff;
}

.svc-card-title {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.svc-card-tagline {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.5rem;
}

.svc-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-gold-bright);
}

.svc-card-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.svc-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.svc-card-rating .icon {
  width: 11px;
  height: 11px;
  color: var(--brand-gold-bright);
}

/* ================= Empty state ================= */
.svc-empty {
  text-align: center;
  padding: 3.5rem 1rem;
  color: #566273;
}

.svc-empty .icon {
  width: 32px;
  height: 32px;
  color: #b3b8c6;
  margin-bottom: 0.75rem;
}

.svc-clear-btn {
  margin-top: 0.75rem;
  border: 1px solid var(--brand-navy);
  color: var(--brand-navy);
  background: #fff;
  border-radius: 0.6rem;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.15s ease;
}

.svc-clear-btn:hover {
  background: var(--brand-navy);
  color: #fff;
}

@media (max-width: 991.98px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .svc-sort-box {
    justify-content: space-between;
  }

  .svc-sort-box select {
    flex: 1;
  }
}
