/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: #333;
}

/* =========================
   HERO
========================= */
.contact-hero {
  height: 50vh;
  background: linear-gradient(
    135deg,
    #e8f5e9,
    #c8e6c9
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 3rem;
  color: #1b5e20;
  font-weight: 900;
}

.contact-hero-content p {
  margin-top: 16px;
  font-size: 1.2rem;
  color: #2e7d32;
}

/* =========================
   CONTACT
========================= */
.contact-section {
  padding: 100px 60px;
  background: #ffffff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
}

/* FORMULAIRE */
.contact-form {
  flex: 1;
  background: #f9fdf9;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.contact-form h2 {
  margin-bottom: 30px;
  color: #1b5e20;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #c8e6c9;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: none;
}

.contact-form button {
  background: linear-gradient(
    135deg,
    #2e7d32,
    #1b5e20
  );
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(27,94,32,0.4);
}

/* INFOS */
.contact-info {
  flex: 1;
  padding: 20px;
}

.contact-info h2 {
  color: #1b5e20;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-socials a {
  text-decoration: none;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-socials a:hover {
  background: #1b5e20;
  color: #fff;
}

/* =========================
   MAP
========================= */
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-section {
    padding: 80px 20px;
  }
}
