.contact-page {
  background-color: #223B86;
  color: #ffffff;
}

.contact-page {
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-page {
  background-color: #223B86;
  color: #ffffff;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* INNER WIDTH CONTROL */
.contact-page .contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

#main-header {
  background: #ffffff;
}

p  {
  color: white;
}


.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two columns */
  gap: 4rem;
  align-items: start;
}

.contact-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.1;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.location-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23a3d977' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.email-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23a3d977' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.phone-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23a3d977' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.marker-icon {
  width: 12px;
  height: 12px;
  background: #a3d977;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.marker-label {
  background: #333;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-header p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  max-width: 900px;
  margin: 0 auto;   /* ← centers the form */
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(163, 217, 119, 0.5);
}

.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.select-wrapper select {
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  flex: 1;
}

.select-wrapper select option {
  background: #333;
  color: white;
}

.select-arrow {
  position: absolute;
  right: 1rem;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.avatars {
  display: flex;
  gap: 0.5rem;
  margin-left: 1rem;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  color: white;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: #a3d977;
}

.checkbox-group label {
  font-size: 0.95rem;
  opacity: 0.9;
  cursor: pointer;
}

.submit-btn {
  background: #a3d977;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-end;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: #8bc34a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(163, 217, 119, 0.3);
}
 
  /* ============================= */
/* CONTACT – REAL MAP IMAGES */
/* ============================= */

.map-container.real-map {
  position: relative;
  width: 100%;
  max-width: 420px;     /* map size control */
  margin-left: 40px;
  overflow: visible;    /* allow SVG to extend */
  z-index: 1;
}

/* SVG background behind France map (from Figma) */


/* CONTACT SECTION BACKGROUND – FLUSH LEFT */

.contact-section {
  position: relative;
  overflow: visible;
}

/* France map */
.map-container.real-map .france-map-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 300px;   /* smaller = better balance */
  height: auto;
  margin: 0 auto;
}

.contact-section .content,
.contact-section .contact-form {
  position: relative;
  z-index: 2;
}

/* Inline SVG background behind map */
.contact-bg-svg {
  position: absolute;
  left: -181px;
  top: -60px;
  width: 702px;
  height: auto;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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