/* ================================================
   TheMellCode — Consult Page Styles
   ================================================ */

/* ── Page base ───────────────────────────────── */
.consult-body {
  background: #f4f6f8;
  font-family: 'Source Sans Pro', 'Inter', sans-serif;
}

/* ── Top nav ─────────────────────────────────── */
.consult-nav {
  background: #1D809F;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.consult-nav-logo img {
  filter: brightness(0) invert(1);
  max-height: 36px;
}

.consult-back-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.consult-back-link:hover {
  color: #ecb807;
  text-decoration: none;
}

/* ── Hero ────────────────────────────────────── */
.consult-hero {
  background: linear-gradient(135deg, #1D809F 0%, #145f7a 100%);
  padding: 3rem 0 2.5rem;
}

.consult-title {
  font-family: 'Inter', 'Source Sans Pro', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.consult-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Step Indicator ──────────────────────────── */
.step-indicator {
  gap: 1rem;
  margin-top: 1.5rem;
}

.step-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}

.step-pill.step-active {
  background: rgba(255,255,255,0.2);
  border-color: #ecb807;
  color: #fff;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(236,184,7,0.25);
  font-weight: 700;
  font-size: 0.85rem;
  color: #ecb807;
}

.step-pill.step-active .step-num {
  background: #ecb807;
  color: #1a1a2e;
}

.step-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.step-arrow {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* ── Main content ────────────────────────────── */
.consult-content {
  max-width: 900px;
}

/* ── Step blocks ─────────────────────────────── */
.consult-step-block {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.consult-step-header {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 1.25rem;
}

.consult-step-badge {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #1D809F;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

/* ── Form wrap ───────────────────────────────── */
.consult-form-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.consult-form-wrap iframe {
  display: block;
  width: 100%;
}

/* ── Divider ─────────────────────────────────── */
.consult-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #dee2e6;
}

.divider-badge {
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1D809F;
  background: #e8f5f8;
  border: 1px solid #b0dcea;
  border-radius: 20px;
  padding: 0.5rem 1.25rem;
}

/* ── Calendly wrap ───────────────────────────── */
.consult-calendly-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

/* ── Footer ──────────────────────────────────── */
.consult-footer {
  border-top: 1px solid #e0e0e0;
  background: #fff;
  margin-top: 2rem;
}

.consult-footer-link {
  color: #1D809F;
  text-decoration: none;
}

.consult-footer-link:hover {
  color: #145f7a;
  text-decoration: underline;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .consult-title {
    font-size: 1.7rem;
  }

  .consult-step-block {
    padding: 1.5rem;
  }

  .step-indicator {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .consult-divider {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .divider-line {
    width: 80px;
    height: 1px;
  }
}
