
/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #122f47 0%, #1a4566 100%);
  padding: 150px 20px 100px 20px;
  text-align: center;
  margin-top: 0;
}

.contact-hero-content h1 {
  font-size: 56px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: 'DM Serif Display', serif;
}

.contact-hero-content p {
  font-size: 20px;
  color: #d7c5a3;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background: #f5f5f5;
  margin-top: 120px;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-map-section {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 140px;
}

.contact-map-title {
  font-size: 28px;
  color: #122f47;
  margin-bottom: 10px;
  font-weight: bold;
}

.contact-map-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Sélecteur de bureau */
.office-selector {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: center;
}

.office-selector-btn {
  flex: 1;
  padding: 15px 30px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #666;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.office-selector-btn:hover {
  border-color: #d7c5a3;
  color: #122f47;
}

.office-selector-btn.active {
  background: #122f47;
  color: #fff;
  border-color: #122f47;
}

.map-container {
  position: relative;
  margin-bottom: 40px;
}

.map-marker-niger {
  top: 77%;
  left: 18%;
}

.map-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.map-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #d7c5a3;
  border: 3px solid #122f47;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  cursor: pointer;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(215, 197, 163, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(215, 197, 163, 0);
  }
}

.map-marker-liege {
  top: 45%;
  left: 70%;
}

.office-info {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #d7c5a3;
  margin-bottom: 20px;
}

.office-name {
  font-size: 18px;
  color: #122f47;
  font-weight: bold;
  margin-bottom: 15px;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.office-detail-icon {
  color: #d7c5a3;
  font-size: 16px;
  margin-top: 2px;
}

.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-title {
  font-size: 32px;
  color: #122f47;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #122f47;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group label::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #d7c5a3;
  border-radius: 50%;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d7c5a3;
  background-color: #f0f8fc;
  box-shadow: 0 0 0 4px rgba(149, 196, 223, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  font-family: 'Arial', sans-serif;
}

.form-submit {
  background: #d7c5a3;
  color: #122f47;
  padding: 18px 40px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  margin: 10px auto 0;
  box-shadow: 0 4px 15px rgba(149, 196, 223, 0.3);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(149, 196, 223, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 20px 80px 20px;
  }

  .contact-hero-content h1 {
    font-size: 36px;
  }

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

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-map-section {
    padding: 30px 20px;
    position: static;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    max-width: 100%;
  }
}

/* Liens du menu dropdown en bleu foncé */
.dropdown-link-dark {
  color: #122f47 !important;
  font-weight: 600;
}

.dropdown-link-dark:hover {
  color: #d7c5a3 !important;
}

/* En-tête avec fond opaque pour la page contact */
#header {
  background-color: #122f47 !important;
  padding: 15px 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Bouton CTA en bleu foncé */
#header .cta-button {
  color: #122f47 !important;
}
