.contact-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}

/* ── Colonne info ── */
.contact-info {
  background: var(--green);
  color: white;
  padding: 30px;
  border-radius: 10px;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.contact-subtitle {
  font-size: .82rem;
  opacity: .8;
  margin-bottom: 28px;
  line-height: 1.5;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  padding-top: 10px;
}
.info-item strong {
  font-size: .85rem;
  display: block;
  margin-bottom: 2px;
}
.info-item p {
  font-size: .85rem;
  opacity: .85;
  margin: 0;
}
.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.contact-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  transition: background .2s;
}
.contact-socials a:hover {
  background: var(--gold);
}

/* ── Colonne formulaire ── */
.contact-form-wrapper {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.contact-form-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,165,80,.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-send {
  width: 100%;
  padding: 13px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-send:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: #e8f5ee;
  color: var(--green);
  border-radius: 6px;
  font-weight: 600;
  font-size: .88rem;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .contact-container { grid-template-columns: 1fr; }
}