/* ===================================================================
   PRACTICE-AREAS.CSS - Below-the-fold styles
   Detailed practice cards · Process steps
   =================================================================== */

/* ----- Detailed Practice Cards ----- */
.practice-category-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-4);
  grid-column: 1 / -1;
  width: 100%;
}

.practice-category-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--gold);
  border-radius: var(--radius);
}

.practice-category-title:first-of-type {
  margin-top: 0;
}

.practice-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .practice-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.practice-detailed-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: var(--transition);
}

.practice-detailed-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.practice-detailed-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.practice-icon-lg {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--radius-lg);
  font-size: var(--text-3xl);
  flex-shrink: 0;
}

.practice-detailed-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.practice-detailed-nepali {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.practice-detailed-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.practice-services {
  margin-bottom: var(--space-6);
  padding-left: var(--space-5);
}

.practice-services li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-2);
  position: relative;
  list-style: none;
  padding-left: var(--space-4);
}

.practice-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ----- Process Steps ----- */
.process-step {
  text-align: center;
  padding: var(--space-6);
  position: relative;
}

.process-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.process-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.process-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Process step connector line */
@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--border-gold);
  }
}

/* ----- CTA ----- */
#contact-cta {
  text-align: center;
}

#contact-cta .section-header {
  max-width: 700px;
}
