/* Consultanța instant — stil propriu, peste paleta din style.css.
   Verde închis / bronz / crem, ca restul site-ului. */

.instant-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

/* Avertismentul stă sus și rămâne vizibil: e partea care ține modulul
   în zona „informare", nu „consultanță". */
.instant-avertisment {
  background: #fdf6e9;
  border-left: 4px solid #b08442;
  border-radius: 6px;
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4034;
  margin-bottom: 1.75rem;
}

.instant-panou {
  background: #fff;
  border: 1px solid #e6e1d8;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.instant-conversatie:empty { display: none; }

.instant-conversatie {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.instant-schimb {
  border-bottom: 1px solid #f0ece4;
  padding-bottom: 1.25rem;
}
.instant-schimb:last-child { border-bottom: none; padding-bottom: 0; }

.instant-intrebare {
  font-weight: 600;
  color: #1f3d2b;
  margin: 0 0 0.6rem;
  line-height: 1.5;
}
.instant-intrebare::before {
  content: "Ați întrebat: ";
  font-weight: 400;
  color: #8b8378;
  font-size: 0.88rem;
}

.instant-raspuns {
  margin: 0;
  line-height: 1.7;
  color: #33302b;
  white-space: pre-wrap;
}

/* Ultimul paragraf al răspunsului e mereu formula despre consultanță:
   îl scoatem vizual din text, ca să nu pară parte din răspuns. */
.instant-incheiere {
  margin: 0.9rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px dashed #ddd6c9;
  font-size: 0.9rem;
  color: #6f6a60;
  line-height: 1.6;
}

.instant-dupa-raspuns {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

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

.instant-eticheta {
  font-weight: 600;
  color: #1f3d2b;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.instant-form textarea {
  width: 100%;
  border: 1px solid #d8d2c6;
  border-radius: 6px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  line-height: 1.6;
  resize: vertical;
  box-sizing: border-box;
}
.instant-form textarea:focus {
  outline: none;
  border-color: #b08442;
  box-shadow: 0 0 0 3px rgba(176, 132, 66, 0.15);
}

.instant-actiuni {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}

.instant-contor { font-size: 0.82rem; color: #9a9388; }

.instant-eroare {
  margin: 0.75rem 0 0;
  color: #96341f;
  background: #fdf0ec;
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  font-size: 0.92rem;
}

.instant-dupa { margin-top: 2rem; }

/* Coloana, nu rand cu wrap: cele trei butoane au aceeasi latime, chiar daca
   la notar si avocat ramane spatiu gol. Altfel se aliniau dupa lungimea
   textului si randul iesea neuniform. */
.instant-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
}
.btn-whatsapp, .btn-whatsapp-alt {
  width: 100%;
  max-width: 460px;
  justify-content: center;
}

/* Buton unic de contact. Ramane in verdele Hotaris, nu in verdele WhatsApp:
   pictograma da recunoasterea, iar #25D366 ar fi singura culoare de felul ei
   din tot site-ul. .instant-cta e flex cu wrap, deci se mai pot adauga butoane. */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  border: 1px solid #1f3d2b;
  background: #1f3d2b;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  transition: background 0.15s, border-color 0.15s;
}
.btn-whatsapp:hover { background: #162d20; border-color: #162d20; }

/* Notarul si avocatul sunt trimiteri catre parteneri, deci cu contur: butonul
   plin ramane al Hotaris. Aceleasi dimensiuni, ca randul sa arate uniform. */
.btn-whatsapp-alt {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  border: 1px solid #1f3d2b;
  background: transparent;
  color: #1f3d2b;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  transition: background 0.15s, color 0.15s;
}
.btn-whatsapp-alt:hover { background: #1f3d2b; color: #fff; }

.wa-icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }

.btn-secundar {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  border: 1px solid #1f3d2b;
  color: #1f3d2b;
  background: transparent;
  text-decoration: none;
  font-weight: 600;
}
.btn-secundar:hover { background: #1f3d2b; color: #fff; }

.instant-asteptare {
  color: #8b8378;
  font-style: italic;
  padding: 0.5rem 0;
}

button[disabled] { opacity: 0.55; cursor: not-allowed; }

@media (max-width: 600px) {
  .instant-panou { padding: 1.1rem; }
  .instant-actiuni { flex-direction: column; align-items: stretch; }
  .instant-actiuni .btn-primary { width: 100%; }
  .instant-contor { text-align: right; }
}
