/* ================================================================
   CONSULTATION PAGE STYLES
   ================================================================ */

/* ── Consultation Hero ── */
.consult-hero {
  background: var(--ink-deep);
  padding-block: clamp(4rem, 10vw, 7rem);
  position: relative;
  overflow: hidden;
}
.consult-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,.06), transparent 70%);
  pointer-events: none;
}

.ch-inner {
  max-width: var(--mw);
  margin-inline: auto;
  padding-inline: var(--gx);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left column */
.ch-left h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1.25rem;
}
.ch-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.6);
  max-width: 50ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* What you get */
.ch-what {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.ch-what li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.ch-what-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.ch-what strong {
  display: block;
  color: #fff;
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: .35rem;
}
.ch-what p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* Trust strip */
.ch-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
}
.ch-trust-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.ch-trust-num {
  font-family: var(--f-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.ch-trust-item span:last-child {
  font-size: .72rem;
  color: var(--slate-lt);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.ch-trust-div {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,.1);
}

/* ── Booking Form Card ── */
.ch-form-wrap {
  position: sticky;
  top: 80px;
}

.ch-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.08);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.form-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--cream);
}
.form-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.form-name {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .15rem;
}
.form-role {
  font-size: .78rem;
  color: var(--slate);
  margin-bottom: .5rem;
}
.form-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.form-chip {
  font-size: .72rem;
  font-weight: 500;
  padding: .2rem .6rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--slate);
}

.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

/* Form fields */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink);
}
.req { color: var(--red); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: var(--f-body);
  font-size: .9rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: #9CA3AF; }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.input-error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1) !important;
}
textarea { resize: vertical; min-height: 80px; line-height: 1.6; }

/* Radio buttons */
.radio-group {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  flex: 1;
}
.radio-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .65rem .75rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  user-select: none;
}
.radio-opt input:checked + .radio-box {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.radio-box:hover { border-color: var(--ink); }

.form-submit {
  width: 100%;
  margin-top: .5rem;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}
.form-submit:disabled { opacity: .6; cursor: wait; }
.form-notice {
  font-size: .75rem;
  color: var(--slate);
  text-align: center;
  margin-top: -.25rem;
}

/* ── Success State ── */
.success-wrap {
  text-align: center;
  padding: 1.5rem 0;
}
.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.success-wrap h3 {
  font-family: var(--f-head);
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: .75rem;
}
.success-wrap p {
  font-size: .9375rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.success-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .875rem;
  color: var(--slate);
  align-items: center;
}
.success-meta a { color: var(--gold); font-weight: 500; }

/* ── Process Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  position: relative;
}
.step-num {
  font-family: var(--f-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: .75rem;
  /* Creates the large ghost number in background */
  position: relative;
}
.step-card h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .65rem;
}
.step-card p {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ── Mini Testimonials ── */
.mini-testis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.mini-testi {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 1.75rem;
}
.mini-testi p {
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.mini-testi cite {
  font-size: .8rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* ================================================================
   CONSULTATION RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .ch-inner {
    grid-template-columns: 1fr 420px;
  }
}

@media (max-width: 860px) {
  .ch-inner {
    grid-template-columns: 1fr;
  }
  .ch-form-wrap {
    position: static;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .mini-testis {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .field-row {
    grid-template-columns: 1fr;
  }
  .ch-trust {
    gap: 1.25rem;
  }
}
