.contact-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: 'Merriweather', serif;
}

.contact-hero video.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   
  filter: brightness(70%);
  z-index: 1;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.contact-hero .overlay {
  position: relative;
  z-index: 3; 
  max-width: 800px;
  padding: 20px;
}

.contact-hero h1 {
  font-size: 70px;
  margin-bottom: 20px;
  color: #e6b800;
}

.contact-hero p {
  font-size: 22px;
  font-weight: 300;
  font-weight: bold; 
}

.contact-infos {
  padding: 80px 20px;
  background: #ffffff; 
  color: black;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.contact-image {
  flex: 1 1 45%;
}

.contact-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px #ffffff; 
}

.contact-text {
  flex: 1 1 50%;
}

.contact-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #e6b800;
}

.contact-text p {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-text ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.contact-text ul li {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-text a {
  color: #e6b800;
  text-decoration: none;
  font-weight: bold;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #f8f9fa;
  padding: 80px 20px;
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 15px;
  text-align: center;
  color: #e6b800;
}

.contact-form p {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.contact-form iframe {
  border-radius: 10px;
  width: 100%;
  height: 900px;
  border: none;
}

.bureaux-section {
  background: #f8f9fa;
  padding: 80px 20px;
}

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

.bureaux-section h2 {
  font-size: 32px;
  color: #e6b800;
  margin-bottom: 10px;
}

.bureaux-section p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #333;
}

.bureaux-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.bureau {
  flex: 1 1 45%;
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.bureau h3 {
  color: #e6b800;
  margin-bottom: 10px;
}

.bureau p {
  font-size: 16px;
  margin-bottom: 15px;
}

.bureau iframe {
  border-radius: 10px;
  width: 100%;
  height: 300px;
  border: none;
}

@media (max-width: 1024px) {
  .contact-hero h1 {
    font-size: 50px;
  }

  .contact-hero p {
    font-size: 18px;
  }

  .contact-text h2 {
    font-size: 28px;
  }

  .contact-text p,
  .contact-text ul li {
    font-size: 16px;
  }

  .contact-form h2 {
    font-size: 26px;
  }

  .contact-form iframe {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
    gap: 20px;
  }

  .contact-text, 
  .contact-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .contact-text h2 {
    font-size: 24px;
  }

  .contact-text p,
  .contact-text ul li {
    font-size: 14px;
  }

  .form-container {
    padding: 20px;
  }

  .contact-form iframe {
    height: 450px;
  }

  .bureaux-row {
    flex-direction: column;
    gap: 20px;
  }

  .bureau {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-text h2 {
    font-size: 20px;
  }

  .contact-form h2 {
    font-size: 22px;
  }

  .contact-form p {
    font-size: 14px;
  }

  .contact-form iframe {
    height: 350px;
  }

  .bureau h3 {
    font-size: 18px;
  }

  .bureau p {
    font-size: 14px;
  }

  .bureau iframe {
    height: 200px;
  }
}
