/* prestations.css */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(244,184,200,0.1) 0%, transparent 70%);
}

.page-hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ── Service full cards ── */
.services-detail { background: var(--off-white); }

.service-full-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 4rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-full-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-full-card.reverse {
  grid-template-columns: 1fr 140px;
}

.service-full-card.reverse .sfc-icon {
  order: 2;
}

.sfc-icon {
  font-size: 4rem;
  background: var(--pink-light);
  border-radius: var(--radius);
  width: 120px; height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sfc-content h2 { font-size: 1.8rem; margin: 0.8rem 0 1.2rem; color: var(--navy); }
.sfc-content p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pink-mid);
  font-weight: 700;
}

.sfc-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sfc-platforms span {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
}

/* ── Process ── */
.process-section { background: var(--white); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 30px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-light), var(--pink-mid), var(--pink-light));
  z-index: 0;
}

.process-step {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pink-light);
  line-height: 1;
  margin-bottom: 1rem;
  background: var(--white);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 2px solid var(--pink);
  font-size: 1.3rem;
  color: var(--pink-mid);
}

.process-step h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.8rem; }
.process-step p { font-size: 0.88rem; }

/* ── FAQ ── */
.faq-section { background: var(--off-white); }

.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--pink-mid); }

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--pink-mid);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 2rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p { font-size: 0.95rem; line-height: 1.8; }

/* CTA */
.cta-section { padding: 60px 0; }
.cta-box { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: var(--radius-lg); padding: 70px; text-align: center; position: relative; overflow: hidden; }
.cta-box h2 { color: var(--white); margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .service-full-card { grid-template-columns: 1fr; gap: 2rem; }
  .service-full-card.reverse { grid-template-columns: 1fr; }
  .service-full-card.reverse .sfc-icon { order: 0; }
  .service-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .service-full-card { padding: 2rem; }
  .cta-box { padding: 3rem 2rem; }
}
