/* =======================
   BASE
======================= */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f4f4f4;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

/* =======================
   HERO / HEADER (sans image)
======================= */
.hero {
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)
  );
  color: rgb(248, 248, 253);
  text-align: center;
  padding: 5rem 1rem;
}

/* =======================
   CTA
======================= */
.cta {
  background: rgb(46, 46, 204);
  color: white;
  padding: 1rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-block;
  margin-top: 1rem;
}

/* =======================
   SECTIONS GÉNÉRALES
======================= */
.zones,
.contact {
  background: white;
  margin: 2rem auto;
  padding: 2rem;
  max-width: 900px;
}

/* =======================
   FORMULAIRE
======================= */
form input,
form select,
form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.8rem;
  font-family: inherit;
}

form button {
  background: rgb(46, 46, 204);
  color: white;
  border: none;
  padding: 1rem;
  width: 100%;
  font-size: 1.1rem;
  cursor: pointer;
}
  &acxn,;=è-
.success {
  display: none;
  color: green;
}

/* =======================
   BOUTON APPEL FLOTTANT
======================= */
.call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgb(46, 46, 204);
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  text-decoration: none;
  z-index: 1000;
}

/* =======================
   SERVICES
======================= */
.services-serrurerie,
.services-plomberie {
  background: #ffffff;
  padding: 4rem 1rem;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-serrurerie h2,
.services-plomberie h2 {
  color: rgb(46, 46, 204);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.services-intro {
  color: #555;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* Grille services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Cartes services */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #000;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive services */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =======================
   FOOTER
======================= */
.footer {
  background: #111;
  color: #ccc;
  padding-top: 2rem;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #999;
}
