.contact-card{
  background:var(--card);
  max-width:780px;
  margin:auto;
  padding:34px 36px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  position:relative;
}

.contact-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:6px;
  background:linear-gradient(180deg,var(--orange),#ffb26b);
  border-radius:var(--radius) 0 0 var(--radius);
}

.contact-card h1{
  margin-top:0;
  color:var(--blue);
}

.contact-intro{
  color:var(--muted);
  margin-bottom:24px;
  line-height:1.6;
}

/* WhatsApp */
.btn-whatsapp{
  display:flex;
  align-items:center;
  gap:12px;
  background:#25d366;
  color:#fff;
  padding:14px 18px;
  border-radius:10px;
  font-weight:800;
  margin-bottom:28px;
  box-shadow:0 10px 22px rgba(37,211,102,.35);
}
.btn-whatsapp span{
  font-weight:500;
  font-size:13px;
  opacity:.9;
}
.btn-whatsapp:hover{
  background:#1fb957;
}

/* Formulaire */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

label{
  font-weight:700;
  font-size:14px;
}

input, select, textarea{
  padding:12px 14px;
  border-radius:8px;
  border:1px solid #d9dde4;
  font-size:15px;
  font-family:inherit;
}
input:focus, select:focus, textarea:focus{
  outline:none;
  border-color:var(--orange);
  box-shadow:0 0 0 2px rgba(240,122,26,.15);
}

.form-actions{
  text-align:right;
  margin-top:10px;
}

.btn-submit{
  background:linear-gradient(180deg,#ff9f45,var(--orange));
  color:#fff;
  border:none;
  padding:14px 28px;
  font-size:16px;
  font-weight:900;
  border-radius:12px;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(240,122,26,.5);
}
.btn-submit:hover{
  background:var(--orange-dark);
}

/* Responsive */
@media(max-width:700px){
  .form-row{grid-template-columns:1fr}
  .contact-card{padding:26px 22px}
}

.btn-whatsapp i{
  font-size:28px;
}

/* Conteneur de centrage */
.contact-success-wrapper{
  display:flex;
  justify-content:center;
  margin:30px 0;
}

/* Message */
.contact-success{
  background:#e9f8ef;
  border-left:6px solid #2ecc71;
  color:#1f7a45;
  padding:22px 26px;
  border-radius:12px;
  font-size:17px;
  text-align:center;
  box-shadow:0 10px 28px rgba(0,0,0,.12);
  max-width:600px;
  width:100%;
}

