/* Page /services — Phase 4.4 */

.services-hero {
  position: relative;
  padding: 140px 0 80px;
  background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=80') center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
}
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(44,95,46,0.6) 100%);
}

/* Big service cards */
.big-service-card {
  display: flex;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.big-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.big-service-card .bs-icon {
  width: 100px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-forest), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
}
.big-service-card .bs-body {
  padding: 1.5rem;
  flex: 1;
}
.big-service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.5rem 0;
}
.big-service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}
.bs-pricing {
  background: rgba(106,176,76,0.08);
  border-left: 3px solid var(--accent);
  padding: 0.55rem 0.85rem;
  border-radius: 0.4rem;
  margin-bottom: 0.85rem;
}
.bs-pricing-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bs-pricing-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
}

/* Process flow */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.process-flow-step {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: relative;
}
.process-flow-step::before {
  content: '';
  position: absolute;
  left: 64px;
  bottom: -1.5rem;
  width: 2px;
  height: 1.5rem;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.process-flow-step:last-child::before { display: none; }

.pf-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-forest), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.pf-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(106,176,76,0.25);
  line-height: 1;
  align-self: center;
}
.pf-content { flex: 1; }
.pf-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.35rem 0;
}
.pf-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Emotional call section */
.emotional-call {
  background:
    linear-gradient(135deg, rgba(26,26,26,0.92), rgba(44,95,46,0.7)),
    url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1600&q=80') center/cover no-repeat;
  background-attachment: fixed;
}
.emotional-quote {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.emotional-quote i.bi-quote {
  font-size: 3rem;
  line-height: 1;
}
.emotional-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  font-style: italic;
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .big-service-card { flex-direction: column; }
  .big-service-card .bs-icon { width: 100%; height: 80px; font-size: 2rem; }
  .pf-num { display: none; }
  .process-flow-step::before { left: 30px; }
}
