@charset "utf-8";

/* ── CONTACT PAGE STYLES ── */
/* Conversion-focused. Matches site design system. */

/* ── HERO ── */
.ct-hero {
  background-image: linear-gradient(180deg, #779eab 0%, #ffffff 70%);
  padding: 44px 20px 40px;
  text-align: center;
}
.ct-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.ct-eyebrow {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b3a4b;
  margin-bottom: 8px;
}
.ct-eyebrow-center { text-align: center; }
.ct-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #2b3a4b;
  margin-bottom: 12px;
  line-height: 1.15;
}
.ct-hero p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #2b3a4b;
  font-weight: bold;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.ct-hero-btns { margin-bottom: 28px; }

/* ── TRUST STRIP ── */
.ct-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.ct-trust-item {
  font-size: 0.85rem;
  font-weight: bold;
  color: #2b3a4b;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ct-trust-icon { color: #8bb839; font-size: 1rem; }

/* ── URGENCY BAR ── */
.ct-urgency-bar {
  background: #2b3a4b;
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ct-urgency-icon { font-size: 1rem; }
.ct-urgency-link {
  color: #f9a525;
  font-weight: bold;
  text-decoration: none;
  margin-left: 4px;
}
.ct-urgency-link:hover { text-decoration: underline; }

/* ── SHARED SECTIONS ── */
.ct-section { padding: 50px 20px; background: #ffffff; }
.ct-section-alt { background: #f7f7f8; }
.ct-section-inner { max-width: 960px; margin: 0 auto; }
.ct-divider { height: 1px; background: #d0e4ea; border: none; margin: 0; }
.ct-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #2b3a4b;
  font-weight: bold;
  margin-bottom: 28px;
  text-align: center;
  line-height: 1.2;
}
.ct-h2-sm {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #2b3a4b;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.2;
}

/* ── 3 OPTION CARDS ── */
.ct-options-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.ct-option-card {
  background: #ffffff;
  border: 2px solid #d0e4ea;
  border-radius: 10px;
  padding: 28px 24px;
  width: 100%;
  max-width: 280px;
  text-align: center;
  box-shadow: rgba(0,0,0,0.07) 0px 4px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ct-option-featured {
  border-color: #779eab;
  box-shadow: rgba(119,158,171,0.25) 0px 6px 20px;
}
.ct-option-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #779eab;
  border-radius: 10px 10px 0 0;
}
.ct-option-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #f9a525;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  text-shadow: -1px 1px 1px rgba(0,0,0,0.2);
}
.ct-option-icon { font-size: 2rem; }
.ct-option-card h3 { font-size: 1.1rem; font-weight: bold; color: #2b3a4b; }
.ct-option-card p { font-size: 0.88rem; color: #555555; line-height: 1.65; }
.ct-option-note { font-size: 0.75rem !important; color: #888 !important; margin-top: 4px; }

/* ── FORM + INFO GRID ── */
.ct-form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
.ct-form-wrap {
  flex: 1;
  min-width: 280px;
}
.ct-form-sub {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── FORM FIELDS ── */
.ct-form { width: 100%; }
.ct-field {
  margin-bottom: 18px;
}
.ct-field label {
  display: block;
  font-weight: bold;
  font-size: 0.85rem;
  color: #2b3a4b;
  margin-bottom: 5px;
}
.ct-field input,
.ct-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #d0e4ea;
  border-radius: 6px;
  font-size: 0.93rem;
  color: #333;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  font-family: Arial, sans-serif;
}
.ct-field input:focus,
.ct-field textarea:focus {
  border-color: #779eab;
  box-shadow: 0 0 0 3px rgba(119,158,171,0.15);
}
.ct-field textarea { resize: vertical; min-height: 110px; }
.g-recaptcha { margin: 16px 0; }

/* ── INFO SIDE ── */
.ct-info-wrap {
  flex: 1;
  min-width: 260px;
}
.ct-info-list {
  list-style: none;
  padding: 0; margin: 0 0 20px;
}
.ct-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e0ecf0;
  font-size: 0.9rem;
}
.ct-info-list li:last-child { border-bottom: none; }
.ct-info-icon {
  width: 34px; height: 34px;
  background: #eef4f7;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ct-info-list strong { display: block; color: #2b3a4b; font-size: 0.85rem; margin-bottom: 2px; }
.ct-info-list a, .ct-info-list span { color: #555; text-decoration: none; font-size: 0.88rem; line-height: 1.5; }
.ct-info-list a:hover { color: #779eab; text-decoration: underline; }
.ct-map { margin-bottom: 14px; border-radius: 8px; overflow: hidden; box-shadow: rgba(0,0,0,0.08) 0px 4px 12px; }

/* ── REASSURANCE BAND ── */
.ct-reassure-band {
  background-image: linear-gradient(135deg, #2b3a4b 0%, #1a2a38 100%);
  color: #ffffff;
  padding: 50px 20px;
}
.ct-reassure-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
}
.ct-reassure-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.ct-reassure-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
}
.ct-reassure-stat {
  flex: 1;
  min-width: 130px;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.ct-reassure-stat:last-child { border-right: none; }
.ct-reassure-num { font-size: 1.8rem; font-weight: bold; color: #f9a525; line-height: 1; }
.ct-reassure-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); font-weight: bold; margin-top: 5px; }

/* ── BUTTONS ── */
.btn-ct-call {
  display: inline-block;
  background: #f9a525;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.05rem;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
  box-shadow: rgba(249,165,37,0.4) 0px 6px 20px;
  transition: background 0.18s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-ct-call:hover { background: #e0941a; transform: translateY(-2px); }
.btn-ct-primary {
  display: inline-block;
  background: #f9a525;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.97rem;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
  box-shadow: rgba(0,0,0,0.15) 0px 4px 12px;
  transition: background 0.18s;
  width: 100%;
  text-align: center;
}
.btn-ct-primary:hover { background: #e0941a; }
.btn-ct-secondary {
  display: inline-block;
  background: transparent;
  color: #779eab;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 6px;
  border: 2px solid #779eab;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.btn-ct-secondary:hover { background: #779eab; color: #ffffff; }
.btn-ct-submit {
  display: block;
  width: 100%;
  background: #f9a525;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  padding: 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
  box-shadow: rgba(0,0,0,0.15) 0px 4px 12px;
  transition: background 0.18s;
  margin-top: 16px;
  font-family: Arial, sans-serif;
}
.btn-ct-submit:hover { background: #e0941a; }
.btn-ct-directions {
  display: inline-block;
  background: #2b3a4b;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s;
}
.btn-ct-directions:hover { background: #1a2a38; }

/* ── RESPONSIVE ── */
@media screen and (max-width: 700px) {
  .ct-option-card { max-width: 100%; }
  .ct-form-grid { gap: 32px; }
  .ct-reassure-stat { min-width: 110px; padding: 16px 10px; }
  .ct-urgency-bar { font-size: 0.82rem; }
}
