/* =======================================================
   Western Advisors — Income Annuity | style.css
   Shared styles for booking.html
   ======================================================= */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #1a2e3d; background: #fff; line-height: 1.65; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: #1e7a9e; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── TOKENS ── */
:root {
  --navy: #1b3a52;
  --navy-dk: #0f2333;
  --teal: #1e7a9e;
  --teal-lt: #2a90b8;
  --gold: #d4850a;
  --gold-lt: #f0a030;
  --green: #27835a;
  --bg: #f0f5f8;
  --border: #ccdde8;
  --shadow: 0 4px 20px rgba(27,58,82,.11);
  --radius: 8px;
}

/* ── LAYOUT ── */
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
.booking-header {
  background: var(--navy-dk);
  padding: 16px 0;
}
.back-link {
  color: var(--gold-lt);
  font-weight: 700;
  font-size: .9rem;
}
.back-link:hover { color: #fff; text-decoration: none; }

/* ── BOOKING CONTENT ── */
.booking-content { padding: 48px 0 64px; }

.booking-section { margin-bottom: 40px; }

.booking-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}
.booking-subheader {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}
.booking-subtitle {
  font-size: .93rem;
  color: #4a6277;
  margin-bottom: 10px;
}
.booking-intro {
  font-size: .95rem;
  color: #4a6277;
  line-height: 1.7;
}

/* ── VALUE SECTION ── */
.value-section {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}
.value-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: start;
}
@media(max-width: 680px) { .value-content-wrapper { grid-template-columns: 1fr; } }
.value-text h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}
.value-list li {
  padding: 7px 0;
  font-size: .92rem;
  color: #4a6277;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}
.value-list li:last-child { border: none; }
.value-list li strong { color: var(--navy); }
.consultation-image { border-radius: 8px; box-shadow: var(--shadow); width: 100%; }
.value-note { font-size: .78rem; color: #6a8a9e; margin-top: 10px; line-height: 1.5; }

/* ── QUALIFICATION SECTION ── */
.qualification-section {
  border-left: 5px solid var(--teal);
  padding: 24px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 5px solid var(--teal);
}
.qualification-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
}
.qualification-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: .92rem;
  color: #4a6277;
  line-height: 1.55;
}
.qualification-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.disclaimer {
  margin-top: 14px;
  font-size: .82rem;
  color: #6a8a9e;
  font-style: italic;
}

/* ── FORM ── */
.form-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-intro { font-size: .92rem; color: #4a6277; margin-bottom: 24px; }

.booking-form { max-width: 100%; }

.form-group-header { margin: 28px 0 12px; }
.form-group-header h3 {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--teal);
  border-bottom: 2px solid var(--border);
  padding-bottom: 6px;
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3col { grid-template-columns: 1fr 1fr 1fr; }
@media(max-width: 580px) {
  .form-row, .form-row-3col { grid-template-columns: 1fr; }
}

label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
input[type="text"], input[type="tel"], input[type="email"], input[type="number"],
select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  font-family: 'Open Sans', sans-serif;
  color: #1a2e3d;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,122,158,.15);
}
textarea { resize: vertical; }

/* ── CHECKBOXES ── */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  font-weight: 400;
  color: #4a6277;
  cursor: pointer;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
  transition: border-color .2s, background .2s;
}
.checkbox-label:hover { border-color: var(--teal); background: #e3eff6; }
.checkbox-label input { width: auto; accent-color: var(--teal); }

/* ── SUBMIT ── */
.form-submit { margin-top: 28px; text-align: center; }
.cta-button {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: 'Open Sans', sans-serif;
}
.cta-button:hover { background: #b86e05; transform: translateY(-2px); }
.form-disclaimer { margin-top: 12px; font-size: .8rem; color: #7a9ab0; }

/* ── SUCCESS MESSAGE ── */
#successMessage {
  display: none;
  background: #f0faf4;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
#successMessage h3 { color: var(--green); font-size: 1.3rem; margin-bottom: 10px; }
#successMessage p { color: #4a6277; font-size: .95rem; }

/* ── FOOTER ── */
.footer-new {
  background: #071520;
  padding: 28px 0;
}
.footer-new .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-photo-new { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.footer-name-new h3 { color: #9ec7d8; font-size: .95rem; font-weight: 800; }
.footer-name-new p { color: #5a7e94; font-size: .78rem; }
.footer-contact-new p { color: #5a7e94; font-size: .82rem; }
.footer-contact-new a { color: #9ec7d8; }
.footer-contact-new a:hover { color: #fff; }
.copyright { font-size: .72rem; color: #3a5870; margin-top: 4px; }
.footer-logo-wrapper-new { text-align: center; }
.footer-logo-new { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 4px; }
.footer-logo-text { color: #5a7e94; font-size: .7rem; font-weight: 800; letter-spacing: 1px; }
