/* --- Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Global --- */
body {
  font-family: "Poppins", Arial, sans-serif;
  background: #f5f7f6;
  color: #333;
  line-height: 1.6;
}

/* --- Header --- */
header {
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
header h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}
header p {
  font-size: 1.1em;
  opacity: 0.9;
}

/* --- Barre de recherche --- */
.search-box {
  margin: 25px auto;
  max-width: 550px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.search-box input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 1em;
}
.search-box button {
  background: #ff9800;
  border: none;
  color: #fff;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}
.search-box button:hover {
  background: #e68900;
}

/* --- Services --- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
}
.card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.card h3 {
  color: #2e7d32;
  font-size: 1.3em;
  margin-bottom: 10px;
}
.card p {
  font-size: 0.95em;
  margin-bottom: 18px;
  color: #555;
}
.card a {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.card a:hover {
  background: #1b5e20;
}


/* ===== FOOTER ===== */
footer {
  background: #2e7d32;
  color: #fff;
  margin-top: 40px;
  padding: 40px 20px 20px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}
.footer-container h4 {
  margin-bottom: 15px;
  font-size: 1.1em;
  border-bottom: 2px solid #66bb6a;
  display: inline-block;
  padding-bottom: 5px;
}
.footer-container ul {
  list-style: none;
}
.footer-container ul li {
  margin-bottom: 10px;
}
.footer-container ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-container ul li a:hover {
  color: #ffeb3b;
}
.footer-contact p {
  margin-bottom: 8px;
}
.footer-contact .socials a {
  margin-right: 10px;
  font-size: 1.2em;
  color: #fff;
  transition: color 0.3s;
}
.footer-contact .socials a:hover {
  color: #ffeb3b;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
  font-size: 0.9em;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.whatsapp:hover {
  transform: scale(1.1);
}

