/* ===== STYLES SPÉCIFIQUES À LA PAGE CONTACT ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card, .contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 40px;
  box-shadow: var(--ombre-elegante);
}

.info-block {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.info-block i { 
  font-size: 2rem; 
  color: var(--violet-soutenu); 
  width: 40px; 
}

.map-placeholder {
  background: #e4daf0; 
  height: 180px; 
  border-radius: 30px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  border: 2px dashed var(--violet-lavande);
  margin-top: 2rem;
}

.form-group { 
  margin-bottom: 1.5rem; 
}

.form-group input, .form-group textarea {
  width: 100%; 
  padding: 1rem 1.5rem; 
  border: 1px solid #e9e9f0; 
  border-radius: 60px;
  font-family:'Montserrat',sans-serif;
}

.form-group textarea { 
  border-radius: 30px; 
}

.btn-submit {
  background: var(--violet-soutenu); 
  color: white; 
  border: none; 
  padding: 1rem 2rem;
  border-radius: 60px; 
  font-weight: 600; 
  width: 100%; 
  cursor: pointer;
}

.btn-submit:hover { 
  background: #a185bc; 
}

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-card, .contact-form-card {
    padding: 2rem 1.5rem;
    border-radius: 30px;
  }

  .map-placeholder {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .contact-info-card, .contact-form-card {
    padding: 1.5rem 1.2rem;
  }

  .info-block {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .info-block i {
    font-size: 1.5rem;
    width: 32px;
  }

  .map-placeholder {
    height: 120px;
    font-size: 0.9rem;
    text-align: center;
    padding: 0 1rem;
  }

  .form-group input, .form-group textarea {
    padding: 0.9rem 1.2rem;
  }
}