/* Page-specific styles for Book Demo */

/* ─── Hero ──────────────────────────────────────────────────────── */
#hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-raw),0.08) 0%, transparent 65%);
  min-height: 0;
  height: auto;
}
#hero .container { display: flex; flex-direction: column; align-items: center; }
#hero h1 {
  font-family: var(--sans); font-size: 3.2rem;
  font-weight: 500; line-height: 1.08; color: var(--cream);
  margin-bottom: 24px; letter-spacing: -0.03em; max-width: 800px;
}
#hero .sub {
  font-size: 1.08rem; color: var(--muted);
  max-width: 560px; line-height: 1.8; margin-bottom: 0;
}

/* ─── Main content layout ───────────────────────────────────────── */
#main-content { padding: 72px 24px 100px; }
.demo-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}

/* ─── What to Expect ────────────────────────────────────────────── */
.expect-col h2 {
  font-family: var(--sans); font-size: 2rem;
  font-weight: 500; color: var(--cream); letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 10px;
}
.expect-lead { font-size: 0.87rem; color: var(--muted); margin-bottom: 36px; line-height: 1.75; }
.expect-items { display: flex; flex-direction: column; gap: 0; }
.expect-item {
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.expect-item:first-child { padding-top: 0; }
.expect-item:last-child  { border-bottom: none; }
.expect-item-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.expect-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; opacity: 0.7;
}
.expect-item h3 {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  color: var(--cream); letter-spacing: -0.01em;
}
.expect-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; padding-left: 20px; }
.expect-no {
  margin-top: 32px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
}
.expect-no-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: block;
}
.expect-no p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; font-style: italic; }

/* ─── Booking Form card ─────────────────────────────────────────── */
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: sticky; top: 100px;
}
.form-card-head { margin-bottom: 28px; }
.form-card-head h2 {
  font-family: var(--sans); font-size: 1.3rem; font-weight: 500;
  color: var(--cream); letter-spacing: -0.02em; margin-bottom: 6px;
}
.form-card-head p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ─── CF7 structural resets ─────────────────────────────────────── */
.wpcf7 { margin: 0; padding: 0; }
.wpcf7 br { display: none; }  /* CF7 inserts <br> between fields */
.wpcf7 p { margin: 0; }
.wpcf7-form-control-wrap { display: block; width: 100%; }

/* ─── Form fields (mirrors static styles) ──────────────────────── */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }

.wpcf7 label,
label {
  display: block; font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase;
  margin-bottom: 7px;
}
.wpcf7 label .tula-inline-label {
  display: block;
  margin-bottom: 7px;
}
label .req { color: var(--gold); margin-left: 2px; }

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea,
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 11px 14px;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 400;
  color: var(--cream); outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none; appearance: none;
  box-sizing: border-box;
}

.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 textarea::placeholder { color: rgba(255,255,255,0.18); }

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus { border-color: rgba(var(--accent-raw),0.45); background: rgba(255,255,255,0.06); }

.wpcf7 select { cursor: pointer; padding-right: 36px; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '\25be'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 0.65rem; color: var(--muted); pointer-events: none;
}
.wpcf7 select option { background: var(--bg-card); color: var(--cream); }
.wpcf7 textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

/* ─── CF7 submit button ─────────────────────────────────────────── */
.wpcf7 input[type="submit"],
.btn-submit {
  width: 100%; background: var(--gold); color: #FFF; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  padding: 15px 28px; border-radius: 100px;
  transition: all 0.2s; letter-spacing: 0.02em; margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover,
.btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }

/* CF7 spinner */
.wpcf7-spinner { display: none; }

/* ─── CF7 validation messages ───────────────────────────────────── */
.wpcf7-not-valid-tip {
  font-size: 0.75rem; color: #e07070;
  margin-top: 5px; display: block; letter-spacing: 0.01em;
}
.wpcf7 .wpcf7-form-control.wpcf7-not-valid {
  border-color: rgba(220,100,100,0.5);
}

/* CF7 quiz label — hide since our CSS label above the field handles it */
.wpcf7-quiz-label { display: none; }

/* ─── CF7 response output (success / error) ─────────────────────── */
.wpcf7-response-output {
  border: none !important;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 16px !important;
}
.wpcf7 form.init .wpcf7-response-output,
.wpcf7-response-output:empty {
  display: none;
}
.wpcf7-mail-sent-ok,
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  background: rgba(var(--accent-raw),0.07);
  border: 1px solid rgba(var(--accent-raw),0.25) !important;
  color: var(--cream);
  text-align: center;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: rgba(220,100,100,0.07);
  border: 1px solid rgba(220,100,100,0.25) !important;
  color: #e07070;
}

/* ─── Language wrappers ─────────────────────────────────────────── */
.cf7-lang-wrap { display: block; }

/* ─── Alternative CTA ───────────────────────────────────────────── */
#alt-cta { padding: 80px 24px; text-align: center; }
.alt-cta-inner {
  max-width: 600px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px 40px;
}
.alt-cta-inner h2 {
  font-family: var(--sans); font-size: 2rem;
  font-weight: 500; color: var(--cream); letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 16px;
}
.alt-cta-inner p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }

/* ─── Contact ───────────────────────────────────────────────────── */
#contact { padding: 0 24px 100px; }
.contact-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.contact-inner .section-label { margin-bottom: 12px; }
.contact-inner p { font-size: 0.87rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.contact-email {
  font-size: 1.05rem; font-weight: 600; color: var(--cream);
  text-decoration: none; letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.contact-email:hover { color: var(--gold); border-color: rgba(var(--accent-raw),0.4); }
.contact-note { font-size: 0.78rem; color: var(--muted); margin-top: 12px; display: block; }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #hero { padding: 140px 24px 60px; }
  .demo-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-card { position: static; padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-group { margin-bottom: 18px; }
  .alt-cta-inner { padding: 36px 24px; }
}
@media (max-width: 480px) {
  #hero h1 { font-size: 1.75rem; }
  .form-card { padding: 24px 18px; }
}
