/* =========================================================
   CONSULTATION + CONTACT + THANK YOU (FINAL 10/10)
========================================================= */


/* ================= HERO ================= */
.consult-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg), #e9f0ee);
}

.consult-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.consult-image img {
  max-width: 320px;
  width: 100%;
  object-fit: contain;
}

.consult-content {
  max-width: 520px;
}

.consult-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.consult-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.consult-trust {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 25px;
}


/* ================= FORM SECTION ================= */
.consult-form-section {
  padding: 60px 0;
  background: var(--white);
}

.top-highlight {
  text-align: center;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #FF8A4C, #F47C3C);
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.consult-form-box {
  max-width: 420px;
  margin: auto;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.highlight-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary);
}


/* ================= FORM SYSTEM (UNIFIED) ================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47,93,80,0.15);
  outline: none;
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.helper-text {
  font-size: 12px;
  color: var(--text-muted);
}


/* ================= PHONE FIELD ================= */
.phone-field {
  display: flex;
  gap: 8px;
}

.phone-field select {
  width: 110px;
}

.phone-field input {
  flex: 1;
}


/* ================= FORM FOOT ================= */
.urgency {
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
  color: var(--text-muted);
}

.form-note {
  text-align: center;
  font-size: 12px;
  margin-top: 6px;
  color: var(--text-muted);
}


/* ================= CONTACT BOX ================= */
.contact-box {
  max-width: 520px;
  margin-inline: auto;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-submit {
  width: 100%;
}

.contact-trust {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.contact-info {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 14px;
}


/* ================= THANK YOU ================= */
.thank-section {
  padding: 0 20px 60px;
  background: var(--bg);
}

.thank-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.success-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.thank-title {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--primary);
}

.thank-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.thank-box {
  background: var(--bg);
  padding: 14px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.thank-cta {
  margin-top: 15px;
}

/* =========================================================
   SUCCESS ANIMATION (THANK YOU PAGE)
========================================================= */

.success-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #25D366;
  stroke-miterlimit: 10;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
  animation: scaleIn 0.4s ease-in-out forwards,
             pulse 2s ease-in-out 0.5s infinite;
}

.checkmark-circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  stroke: #25D366;
  fill: none;
  animation: drawCircle 0.6s ease-out forwards;
}

.checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #25D366;
  stroke-width: 3;
  animation: drawCheck 0.4s ease-out 0.6s forwards;
}

/* KEYFRAMES */
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

@keyframes scaleIn {
  0% { transform: scale(0.5); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* CTA spacing fix */
.thank-cta {
  margin-top: 15px;
  text-align: center;
}
/* ================= COMPACT THANK YOU (NO SCROLL) ================= */

.thank-section {
  padding: 40px 0;
}

.thank-container.compact {
  max-width: 460px;
  margin: auto;
  padding: 26px 18px;
}

/* Typography tighter */
.thank-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.thank-text {
  font-size: 15px;
  margin-bottom: 6px;
}

/* Trust box */
.thank-box {
  padding: 12px;
  margin: 12px 0;
  font-size: 14px;
  line-height: 1.5;
}

/* CTA spacing */
.thank-cta {
  margin-top: 10px;
}

/* Mobile ultra compact */
@media (max-width: 768px) {

  .thank-section {
    padding: 28px 0;
  }

  .thank-container.compact {
    padding: 18px 12px;
  }

  .thank-title {
    font-size: 22px;
  }
}


/* =========================================================
   SUCCESS ANIMATION END
========================================================= */

/* ========================================
🔥 FINAL PREMIUM OVERRIDE (SAFE)
======================================== */

/* HERO FIX */
.consult-hero {
  padding: 30px 0 10px !important;
}

.consult-grid {
  gap: 20px !important;
}

/* Therapist premium circle */
.consult-image img {
  max-width: 140px !important;
  height: 140px;
  border-radius: 50%;
  border: 5px solid #1f7a6b;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Content tighter */
.consult-content {
  max-width: 500px;
}

/* REMOVE ORANGE BAR */
.top-highlight {
  display: none !important;
}

/* FORM SECTION TIGHT */
.consult-form-section {
  padding: 20px 0 !important;
}

/* FORM BOX PREMIUM */
.consult-form-box {
  padding: 22px !important;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* BIG INPUTS */
.form-control {
  font-size: 16px !important;
  font-weight: 600;
  padding: 16px !important;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
}

/* GREEN FOCUS */
.form-control:focus {
  border-color: #1f7a6b !important;
  box-shadow: 0 0 0 3px rgba(31,122,107,0.12);
}

/* MOBILE PERFECT BALANCE */
@media (max-width: 768px) {

  .wm-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .consult-hero {
    padding-top: 20px !important;
  }

  .consult-grid {
    gap: 12px !important;
  }

  .consult-image img {
    max-width: 110px !important;
    height: 110px;
  }

  .consult-form-box {
    padding: 18px 14px !important;
  }

  .form-control {
    font-size: 15px !important;
    padding: 14px !important;
  }
}








/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .consult-grid {
    flex-direction: column;
    text-align: center;
  }

  .consult-image img {
    max-width: 220px;
  }

  .consult-title {
    font-size: 26px;
  }

  .consult-sub {
    font-size: 15px;
  }

  .consult-form-box {
    padding: 20px;
  }

}

@media (max-width: 480px) {

  .thank-container {
    padding: 24px 18px;
  }

  .success-icon {
    font-size: 48px;
  }

  .thank-title {
    font-size: 22px;
  }

}