/**
 * Ovation Consultation Page Styles
 * Version: 1.0.0
 */

:root {
  --slate: #1E2A3A;
  --slate-light: #2B3D52;
  --slate-soft: #4A5E73;
  --navy: #0F1923;
  --steel: #8A9BAD;
  --ice: #C8D8E4;
  --gold: #C4A265;
  --gold-dark: #A8894F;
  --gold-light: #D4B97A;
  --cream: #FFFDF9;
  --champagne-light: #FAF7F2;
  --white: #FFFFFF;
  --charcoal: #2C2C2C;
  --charcoal-soft: #4A4A4A;
  --border: rgba(196,162,101,.2);
  --border-steel: rgba(138,155,173,.15);
  --shadow-soft: 0 4px 30px rgba(30,42,58,.08);
  --shadow-hover: 0 8px 40px rgba(30,42,58,.14);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --transition: .4s cubic-bezier(.25,.46,.45,.94);
}

/* RESET (scoped) */
.ocp-wrap *, .ocp-wrap *::before, .ocp-wrap *::after { margin: 0; padding: 0; box-sizing: border-box; }
.ocp-wrap { font-family: var(--font-body); color: var(--charcoal); background: var(--cream); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ───── HERO ───── */
.ocp-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--slate) 50%, #1E3042 100%);
  color: var(--white);
  padding: 80px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ocp-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,162,101,.08) 0%, transparent 70%);
  pointer-events: none;
}
.ocp-hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.ocp-hero h1 em { font-style: italic; color: var(--gold-light); }
.ocp-hero .ocp-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  max-width: 620px;
  margin: 0 auto 32px;
}
.ocp-hero-reassurance {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.ocp-reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
}
.ocp-reassurance-item span { font-size: 1.1rem; }

/* ───── VALUE SECTION (full-width) ───── */
.ocp-value-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 48px;
}
.ocp-value-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal-soft);
  font-weight: 300;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.ocp-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ocp-value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: all .3s;
}
.ocp-value-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.ocp-value-icon { font-size: 1.6rem; margin-bottom: 12px; }
.ocp-value-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}
.ocp-value-card p {
  font-size: .84rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  font-weight: 300;
}

/* ───── MAIN LAYOUT (two-column) ───── */
.ocp-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

/* ───── FORM COLUMN ───── */
.ocp-form-column {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 12px 60px rgba(0,0,0,.08);
  overflow: hidden;
  position: sticky;
  top: 24px;
}
.ocp-form-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 28px 32px;
  text-align: center;
}
.ocp-form-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.ocp-form-header p {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  font-weight: 300;
}
.ocp-form-body { padding: 0; }
.ocp-form-body iframe {
  display: block;
  width: 100%;
  height: 1185px;
  min-height: 1185px;
  border: none;
}

/* ───── FORM FALLBACK ───── */
.ocp-form-fallback { padding: 40px 24px; text-align: center; }
.ocp-fallback-inner { max-width: 320px; margin: 0 auto; }
.ocp-fallback-note {
  font-size: .82rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
  margin-bottom: 20px;
  padding: 16px;
  background: var(--champagne-light);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.ocp-fallback-note strong { color: var(--charcoal); }
.ocp-fallback-inner > p { font-size: .88rem; color: var(--charcoal-soft); margin-bottom: 16px; }
.ocp-fallback-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(180,151,90,.35);
}
.ocp-fallback-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(180,151,90,.45); }
.ocp-fallback-or { font-size: .78rem; color: var(--charcoal-soft); margin: 16px 0; }
.ocp-fallback-phone { display: inline-block; color: var(--gold); text-decoration: none; font-weight: 500; font-size: .92rem; }
.ocp-fallback-phone:hover { text-decoration: underline; }

/* ───── CONTENT COLUMN ───── */
.ocp-content-column {}
.ocp-eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.ocp-section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* ───── TIMELINE ───── */
.ocp-timeline-section { margin: 0 0 48px; }
.ocp-timeline-intro {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  font-weight: 300;
  margin-bottom: 32px;
}
.ocp-timeline { position: relative; padding-left: 28px; }
.ocp-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light), var(--ice));
}
.ocp-timeline-item { position: relative; padding: 0 0 32px 24px; }
.ocp-timeline-item:last-child { padding-bottom: 0; }
.ocp-timeline-item::before {
  content: '';
  position: absolute;
  left: -33px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
}
.ocp-timeline-badge {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--slate);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.ocp-timeline-badge.ocp-pre {
  background: var(--champagne-light);
  color: var(--gold-dark);
  border: 1px solid var(--border);
}
.ocp-timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.ocp-timeline-item p {
  font-size: .86rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  font-weight: 300;
}

/* ───── PRIVACY BOX ───── */
.ocp-privacy-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 32px;
  margin: 0 0 48px;
}
.ocp-privacy-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.ocp-privacy-box p {
  font-size: .88rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255,255,255,.8);
}
.ocp-privacy-list { list-style: none; padding: 0; margin: 14px 0 0; }
.ocp-privacy-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .84rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
}
.ocp-privacy-list li::before { content: '🔒'; font-size: .9rem; }

/* ───── FAQ ───── */
.ocp-faq-section { margin: 0 0 48px; }
.ocp-faq-item { border-bottom: 1px solid var(--border); }
.ocp-faq-question {
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.ocp-faq-toggle {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform .3s;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
}
.ocp-faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.ocp-faq-answer-inner {
  padding: 0 0 20px;
  font-size: .86rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  font-weight: 300;
}
.ocp-faq-item.open .ocp-faq-answer { max-height: 400px; }
.ocp-faq-item.open .ocp-faq-toggle { transform: rotate(45deg); }

/* ───── CONTACT ALT ───── */
.ocp-contact-alt {
  background: var(--champagne-light);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.ocp-contact-alt h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.ocp-contact-alt p {
  font-size: .88rem;
  color: var(--charcoal-soft);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.6;
}
.ocp-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  transition: all .3s;
}
.ocp-phone-link:hover { background: var(--slate); transform: translateY(-1px); }
.ocp-hours { font-size: .78rem; color: var(--charcoal-soft); margin-top: 12px; font-weight: 300; }

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .ocp-main { grid-template-columns: 1fr; gap: 48px; }
  .ocp-form-column { position: static; order: -1; }
}
@media (max-width: 768px) {
  .ocp-hero { padding: 60px 24px 48px; }
  .ocp-hero h1 { font-size: 2.4rem; }
  .ocp-main { padding: 40px 24px 60px; }
  .ocp-hero-reassurance { gap: 16px; }
  .ocp-form-column { border-radius: 16px; }
  .ocp-value-grid { grid-template-columns: 1fr; }
  .ocp-form-header { padding: 22px 24px; }
}

/* ───── FADE ANIMATIONS ───── */
.ocp-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(.25,.46,.45,.94);
}
.ocp-fade-up.ocp-visible { opacity: 1; transform: translateY(0); }
@keyframes ocp-force-visible { to { opacity: 1; transform: none; } }
.ocp-fade-up { animation: ocp-force-visible 0s 2s forwards; }
.ocp-fade-up.ocp-visible { animation: none; }
