/* ================================================
   SERVICES.CSS — Services page specific styles
   Libero Law Firm
   ================================================ */

/* ---------- Page Hero ---------- */
.page-hero-bg {
  background:
    linear-gradient(180deg, rgba(20,30,48,0.72), rgba(20,30,48,0.88)),
    url('../img/silder2.jpeg')
    center / cover no-repeat;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.13);
}

.service-card .card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

/* ---------- Service Card Icon Overlay ---------- */
.service-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .icon-wrap {
  background: var(--gold);
  color: #161b26;
}

/* ---------- Service Card Content ---------- */
.service-card .card-body {
  padding: 1.75rem;
}

.service-card .card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card .card-body p {
  color: var(--text-gray);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ---------- Feature List inside Cards ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.feature-list li .check-icon {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ---------- Process Section ---------- */
.process-step {
  text-align: center;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 30px;
  margin: 0 auto 1.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.process-step:hover .process-icon-ring {
  background: var(--gold);
  color: #161b26;
}

.step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 auto 1rem;
}

/* ---------- CTA Section ---------- */
.cta-btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 1rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: 'Jost', sans-serif;
}

.cta-btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
