/* ============================================================
   TABULA RASA — book-consultation.css
   ============================================================ */

/* Hero steps */
.hero-quick-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-quick-link {
  padding: 0.65rem 1.5rem; font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.hero-quick-link:hover { border-color: var(--gold); color: var(--gold); }
.hero-steps { display: flex; flex-direction: column; gap: 0; }
.hero-step {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.08); border-bottom: none;
  background: rgba(255,255,255,0.04); transition: background 0.2s;
}
.hero-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-step:hover { background: rgba(201,168,76,0.07); }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.1rem;
}
.step-title { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
.step-desc { font-size: 0.75rem; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.5; }

/* Main booking layout */
.booking-main { background: var(--white); padding: 7rem 0; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.booking-info h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1.2; margin: 0.8rem 0 1.4rem; }
.booking-info > p { font-size: 0.96rem; color: var(--text-soft); line-height: 1.8; font-weight: 300; margin-bottom: 2.5rem; }
.benefits-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 2.5rem; }
.benefit-item { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid var(--border); }
.benefit-item:first-child { border-top: 1px solid var(--border); }
.benefit-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 0.1rem; }
.benefit-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2.2; }
.benefit-title { font-size: 0.86rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.benefit-desc { font-size: 0.82rem; color: var(--text-soft); font-weight: 300; line-height: 1.55; }
.session-info { background: var(--navy); padding: 1.8rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.session-detail-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 600; margin-bottom: 0.3rem; }
.session-detail-value { font-size: 0.9rem; color: var(--white); font-weight: 500; }
.session-detail-value span { color: var(--gold); }

/* Form */
.booking-form-wrap { background: var(--off-white); border: 1px solid var(--border); position: relative; }
.booking-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--gold), var(--gold-lt)); }
.booking-form-header { padding: 2.5rem 3rem 1.5rem; border-bottom: 1px solid var(--border); }
.booking-form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.booking-form-sub { font-size: 0.86rem; color: var(--text-soft); font-weight: 300; line-height: 1.6; }
.booking-form-body { padding: 2rem 3rem 3rem; }
.form-section-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-label { font-size: 0.67rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); font-weight: 600; }
.form-label span { color: var(--gold); }
.form-input, .form-textarea {
  background: var(--white); border: 1px solid var(--border);
  padding: 0.82rem 1.1rem; font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; color: var(--text); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: #a0b0c0; }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-spacer { margin-top: 1.5rem; }

/* Service radio cards */
.service-radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 1.1rem; }
.service-radio-card { position: relative; cursor: pointer; }
.service-radio-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.service-radio-label { display: flex; flex-direction: column; gap: 0.2rem; padding: 1rem 1.1rem; border: 1px solid var(--border); background: var(--white); transition: all 0.18s; cursor: pointer; }
.service-radio-card input[type="radio"]:checked + .service-radio-label { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.service-radio-label:hover { border-color: var(--gold); }
.service-radio-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.service-radio-desc { font-size: 0.72rem; color: var(--text-soft); font-weight: 300; }

/* Time buttons */
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1.1rem; }
.time-btn { padding: 0.65rem 0.5rem; text-align: center; border: 1px solid var(--border); background: var(--white); cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 500; color: var(--text-soft); transition: all 0.18s; }
.time-btn:hover { border-color: var(--gold); color: var(--gold); }
.time-btn.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.form-submit { background: var(--gold); color: var(--navy); border: 2px solid var(--gold); padding: 1.05rem 2.4rem; font-family: 'Outfit', sans-serif; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: all 0.22s; width: 100%; margin-top: 1rem; }
.form-submit:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.form-privacy { font-size: 0.73rem; color: var(--text-soft); font-weight: 300; text-align: center; margin-top: 0.9rem; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 2; }
.form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.6rem; }
.form-success p { font-size: 0.9rem; color: var(--text-soft); font-weight: 300; line-height: 1.7; max-width: 40ch; margin: 0 auto; }

/* Process section */
.process-section { background: var(--navy); padding: 7rem 0; }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header h2 { font-family: 'Playfair Display', serif; font-size: 2.3rem; font-weight: 700; color: var(--white); margin: 0.8rem 0 1rem; }
.process-header p { font-size: 0.97rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.75; max-width: 56ch; margin: 0 auto; }
.process-steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.08); position: relative; }
.process-steps-row::before { content: ''; position: absolute; top: 2.8rem; left: 12.5%; right: 12.5%; height: 1px; background: rgba(201,168,76,0.2); z-index: 0; }
.process-step { padding: 3rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); position: relative; z-index: 1; transition: background 0.2s; }
.process-step:hover { background: rgba(201,168,76,0.05); }
.process-step:last-child { border-right: none; }
.process-step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.process-step h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.7rem; }
.process-step p { font-size: 0.83rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.65; }

/* Services preview strip */
.services-preview { background: var(--off-white); padding: 7rem 0; }
.services-preview-header { text-align: center; margin-bottom: 4rem; }
.services-preview-header h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); margin: 0.8rem 0 1rem; }
.services-preview-header p { font-size: 0.96rem; color: var(--text-soft); font-weight: 300; line-height: 1.75; max-width: 54ch; margin: 0 auto; }
.services-cards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); }
.service-preview-card { padding: 2.5rem 2rem; border-right: 1px solid var(--border); position: relative; overflow: hidden; transition: background 0.25s; text-decoration: none; }
.service-preview-card:last-child { border-right: none; }
.service-preview-card:hover { background: var(--white); }
.service-preview-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.service-preview-card:hover::after { transform: scaleX(1); }
.service-preview-icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.service-preview-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.service-preview-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; }
.service-preview-card p { font-size: 0.82rem; color: var(--text-soft); font-weight: 300; line-height: 1.6; margin-bottom: 1.2rem; }
.service-preview-link { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.service-preview-card:hover .service-preview-link { gap: 0.75rem; }

/* Responsive */
@media (max-width: 1024px) {
  .booking-grid { grid-template-columns: 1fr; }
  .process-steps-row { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-steps-row::before { display: none; }
  .services-cards-row { grid-template-columns: repeat(2, 1fr); }
  .service-preview-card:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .booking-form-header, .booking-form-body { padding-left: 1.5rem; padding-right: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .service-radio-grid { grid-template-columns: 1fr; }
  .process-steps-row { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .services-cards-row { grid-template-columns: 1fr; }
  .service-preview-card { border-right: none; border-bottom: 1px solid var(--border); }
}
