/* css/services.css — styles de la page services lumetrix-pro */
.page-services {
  padding: 20px;
  font-family: system-ui, sans-serif;
  color: #222;
}

.hero-services {
  text-align: center;
  margin-bottom: 2em;
}
.hero-services h2 {
  font-size: 2rem;
  color: #004080;
  margin: 0 0 0.5em;
}
.hero-services p {
  color: #444;
  font-size: 1.1rem;
}

/* Grille principale des services */
.liste-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5em;
}
.liste-services article {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 1em;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.liste-services article:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.liste-services h3 {
  color: #0066cc;
  margin: 0 0 0.5em;
}
.liste-services p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Section d’appel à l’action */
.cta-devis {
  text-align: center;
  margin-top: 3em;
  background: #eef4ff;
  padding: 2em;
  border-radius: 8px;
}
.cta-devis h3 {
  color: #004080;
  margin-top: 0;
}
.cta-devis p {
  margin-bottom: 1em;
  color: #333;
}
.cta-devis .btn {
  display: inline-block;
  background: #0078d7;
  color: white;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.cta-devis .btn:hover {
  background: #005fa3;
}

/* Adaptation mobile */
@media (max-width: 600px) {
  .hero-services h2 { font-size: 1.6rem; }
  .liste-services article { padding: 0.8em; }
  .cta-devis { padding: 1.2em; }
}
