/* ============================================================
   Let's Talk — Page Styles
   ============================================================ */

/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,28,46,0.92) 0%, rgba(17,28,46,0.55) 60%, rgba(17,28,46,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeUp 0.9s ease both;
}
.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-hero-title em {
  font-style: normal;
  color: var(--accent-green);
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 600px;
}

/* ── Contact Main ── */
.contact-main {
  padding: 7rem 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ── Contact Info ── */
.contact-info .section-body {
  margin-bottom: 2.5rem;
}
.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-bullet {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.bullet-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(34,62,145,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
}
.contact-bullet h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.2rem;
}
.contact-bullet p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Topics */
.contact-topics {
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
  margin-bottom: 2rem;
}
.topics-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.topics-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topics-chips span {
  background: var(--white);
  color: var(--dark-navy);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(34,62,145,0.12);
}

/* Direct contact */
.contact-direct {
  margin-top: 0.5rem;
}
.direct-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}
.direct-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--royal-blue);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.direct-link:hover { color: #1a3078; }
.direct-link svg { flex-shrink: 0; }

/* ── Contact Form (dark translucent card, inspired by coming-soon) ── */
.contact-form-wrap {
  position: sticky;
  top: 100px;
}
.form-card {
  background: linear-gradient(150deg, #111C2E 0%, #1a2d4a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(17,28,46,0.22),
    0 1px 0 rgba(255,255,255,0.04) inset;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 260px; height: 260px;
  background: radial-gradient(circle at top right, rgba(34,62,145,0.35), transparent 70%);
  pointer-events: none;
}
.form-card::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(163,230,75,0.08), transparent 70%);
  pointer-events: none;
}

.form-header {
  padding: 2rem 2rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
.form-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.9rem;
}
.form-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}
.form-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.lead-form {
  padding: 1.75rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

/* Rows hold one or two inputs side-by-side, matching coming-soon */
.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Shared input styling — translucent white on dark */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  padding: 0.82rem 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-input::placeholder {
  color: rgba(255,255,255,0.38);
}
.form-input:focus {
  border-color: var(--accent-green);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(163,230,75,0.10);
}
.form-input-full { grid-column: 1 / -1; }

/* Select — strip native chrome, add caret */
.form-select {
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}
.form-select:focus { color: var(--white); }
.form-select option {
  background: #1a2d4a;
  color: var(--white);
}

/* Textarea — slightly taller, resizable */
.form-textarea {
  min-height: 110px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.55;
}

/* Submit button — solid royal blue, matches coming-soon */
.form-submit {
  width: 100%;
  background: var(--royal-blue);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 1rem 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  margin-top: 0.75rem;
  box-shadow: 0 6px 18px rgba(34,62,145,0.35);
}
.form-submit:hover:not(:disabled) {
  background: #1a3078;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(34,62,145,0.45);
}
.form-submit:active:not(:disabled) { transform: translateY(0); }

.form-fineprint {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.form-status {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2em;
}
.form-status--error   { color: #ffb4a8; }
.form-status--pending { color: rgba(255,255,255,0.55); }

/* Success state — green-accented, inside the same dark card */
.form-success {
  padding: 2rem 0.5rem 1rem;
  text-align: center;
  animation: fadeUp 0.5s ease both;
}
.success-check {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.25rem;
  background: rgba(163,230,75,0.14);
  color: var(--accent-green);
  border: 1px solid rgba(163,230,75,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.form-success p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}
.form-success a {
  color: var(--accent-green);
  font-weight: 600;
  text-decoration: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Reassurance ── */
.reassurance {
  padding: 5rem 0;
  background: var(--dark-navy);
}
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.reassurance-item {
  padding: 1.5rem 1rem;
}
.reassurance-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.reassurance-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.reassurance-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── Closing Quote ── */
.closing-quote {
  padding: 7rem 0;
  background: var(--royal-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-quote::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.closing-quote::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.closing-quote-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.closing-text {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.closing-attr {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .contact-form-wrap { position: static; }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .reassurance-grid { grid-template-columns: 1fr; gap: 1rem; }
  .page-hero { height: 55vh; padding-bottom: 3rem; }
  .topics-chips span { font-size: 0.75rem; }
  .lead-form { padding: 1.5rem 1.25rem 1.5rem; }
  .lead-form .form-row { grid-template-columns: 1fr; gap: 0.6rem; }
  .form-header { padding: 1.6rem 1.25rem 1rem; }
}
