/* =====================================
   SERVICES — PAGE VITRINE
   LaboCompta
===================================== */

/* HERO SERVICE */
.service-hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.service-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-hero .hero-subtitle {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #e5e7eb;
}

/* SECTIONS */
.service-section {
  padding: 3rem 1.5rem;
}

.service-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: #0f172a;
}

.service-section p {
  max-width: 800px;
  margin-bottom: 1rem;
  color: #334155;
  line-height: 1.7;
}

/* SECTION CLAIRE */
.bg-light {
  background: #f8fafc;
}

/* GRILLE SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: #1e293b;
}

.service-card p {
  font-size: 0.95rem;
  color: #475569;
}

/* LISTE CIBLE */
.service-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.service-list li {
  padding: 0.6rem 0;
  font-size: 1rem;
  color: #334155;
}

/* BÉNÉFICES */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefits-grid div {
  background: #ffffff;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #1e293b;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* CALL TO ACTION */
.service-cta {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.service-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-cta p {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #e0e7ff;
}

/* BOUTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* 🔵 BTN PRIMARY — BLEU BRAND */
.btn-primary {
  background: #0a2a5e;
  color: #ffffff;
}

.btn-primary:hover {
  background: #071f45;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: #1d4ed8;
}

.btn-secondary:hover {
  background: #e0e7ff;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 1.9rem;
  }

  .service-section h2 {
    font-size: 1.5rem;
  }
}
