body {
    font-family: sans-serif;
    background-color: #F2D7B6;
    color: #333;
  }

  
  /* Hero */
  .contact-hero {
    padding: 60px 32px;
  }
  
  .contact-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .contact-hero .hero-text {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-hero .hero-text h1 {
    font-size: 42px;
    color: #6a3a18;
    margin-bottom: 24px;
    font-weight: 700;
  }
  
  .contact-hero .hero-text p {
    font-size: 16px;
    color: #555;
    max-width: 500px;
  }
  
  .contact-hero .hero-image {
    flex: 1;
    position: relative;
    min-width: 300px;
  }
  
  .contact-hero .hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Contact form section */
/* Contact form section */
.contact-section {
    padding: 80px 20px;
    margin-bottom: 60px; /* ✅ ESPACE ajouté avant le footer */
  }
  
  .contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #ffffff, #fffaf4);
    border: 1px solid #eadcd0;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(168, 120, 71, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .contact-container:hover {
    transform: translateY(-4px);
  }
  
  .contact-container h2 {
    font-size: 30px;
    color: #6a3a18;
    margin-bottom: 12px;
    font-weight: 700;
  }
  
  .contact-container p {
    color: #6a3a18;
    margin-bottom: 36px;
    font-size: 16px;
    max-width: 500px;
    margin-inline: auto;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .form-group {
    text-align: left;
  }
  
  label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #6a3a18;
    margin-bottom: 8px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid #eadcd0;
    border-radius: 12px;
    background-color: #fefaf4;
    color: #4a2d16;
    transition: border 0.3s ease, box-shadow 0.3s ease;
  }
  
  input:focus,
  textarea:focus {
    border-color: #a87847;
    box-shadow: 0 0 0 3px rgba(168, 120, 71, 0.2);
    outline: none;
  }
  
  textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .btn-primary {
    background-color: #401201;
    color: white;
    padding: 16px 26px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 16px rgba(168, 120, 71, 0.2);
    align-self: center;
  }
  
  .btn-primary:hover {
    background-color: #92683e;
    box-shadow: 0 8px 24px rgba(168, 120, 71, 0.35);
    transform: translateY(-2px);
  } 

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.popup-overlay.show .popup-content {
  transform: translateY(0);
  opacity: 1;
}

.popup-content h2 {
  color: #6a3a18;
  margin-bottom: 10px;
}

.popup-content p {
  color: #333;
  font-size: 15px;
}

.popup-content .close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
}

.popup-content .close:hover {
  color: #000;
}