/* ============================================================
   SERVICES.CSS — services.html only
   Full services grid with all 9 cards
   ============================================================ */

.services-section {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-card {
  border: 1px solid var(--border-navy);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}
.svc-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.svc-card:hover::after {
  width: 100%;
}
.svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 1.1rem;
}
.svc-title {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.55rem;
}
.svc-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.svc-tag {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.1);
  padding: 3px 9px;
  border-radius: 4px;
}

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