/* ============================================
   CONTACT US PAGE — contact.css
   Prefix: cu-
   ============================================ */

/* ── Layout ── */
.cu-page-body {
  /* padding-top set dynamically by JS */
}
.cu-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cu-wrap-md {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Shared typography ── */
.cu-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.625rem;
}
.cu-tag-red { color: var(--brand-red); }
.cu-sh2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.cu-ssub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-top: 0.625rem;
}
.cu-sec-header { margin-bottom: 2.5rem; }
.cu-sec-header-center { text-align: center; }
.cu-sec-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0.75rem auto 0;
  line-height: 1.85;
}

/* ── Buttons ── */
.cu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  min-height: 44px;
}
.cu-btn:focus-visible { outline: 3px solid var(--brand-red); outline-offset: 3px; }
.cu-btn-red { background: var(--brand-red); color: #fff; }
.cu-btn-red:hover { background: var(--brand-red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(204,0,0,.3); }
.cu-btn-blk { background: var(--brand-black); color: #fff; }
.cu-btn-blk:hover { background: #1a1a1a; transform: translateY(-2px); }
.cu-btn-outline-dk { background: transparent; color: var(--brand-black); border: 2px solid var(--brand-black); }
.cu-btn-outline-dk:hover { background: var(--brand-black); color: #fff; }
.cu-btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* ── Animations ── */
@media (prefers-reduced-motion: no-preference) {
  .cu-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .cu-fade-up.cu-in { opacity: 1; transform: none; }
  .cu-d1 { transition-delay: 0.07s; }
  .cu-d2 { transition-delay: 0.14s; }
  .cu-d3 { transition-delay: 0.21s; }
  .cu-d4 { transition-delay: 0.28s; }
  .cu-d5 { transition-delay: 0.35s; }
  .cu-d6 { transition-delay: 0.42s; }
  .cu-d7 { transition-delay: 0.49s; }
}

/* ══════════════
   HERO
══════════════ */
.cu-hero {
  background: var(--brand-black);
  position: relative;
  overflow: hidden;
  padding-top: 9.875rem;
}
.cu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.cu-hero-blob {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,.1), transparent 65%);
  pointer-events: none;
}
.cu-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5rem;
}
.cu-hero-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.cu-hero-line { width: 28px; height: 1px; background: var(--brand-red); }
.cu-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.cu-hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 720px;
  margin-bottom: 1rem;
}
.cu-hero-h1 em { font-style: italic; font-weight: 400; color: var(--brand-red); }
.cu-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.48);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 3rem;
}

/* Path cards */
.cu-path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cu-path-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 1.875rem 2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.cu-path-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,0,0,.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.cu-path-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(204,0,0,.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.cu-path-card:hover::before { opacity: 1; }
.cu-path-card:focus-visible { outline: 3px solid var(--brand-red); outline-offset: 3px; }
.cu-path-featured {
  border-color: rgba(204,0,0,.3);
  background: rgba(204,0,0,.06);
}
.cu-path-featured::after {
  content: "FREE";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}
.cu-path-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: rgba(204,0,0,.13);
  border: 1px solid rgba(204,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  font-size: 1.375rem;
}
.cu-path-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}
.cu-path-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
}
.cu-path-arrow {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  color: rgba(255,255,255,.18);
  transition: all 0.25s ease;
}
.cu-path-card:hover .cu-path-arrow { color: var(--brand-red); transform: translate(3px,-3px); }

@media (max-width: 900px) {
  .cu-path-cards { grid-template-columns: 1fr; }
  .cu-path-card { padding: 1.5rem 1.625rem; }
}
@media (max-width: 600px) {
  .cu-path-featured::after { content: "FREE CONSULT"; }
}

/* ══════════════
   CONTACT SECTION — form + sidebar
══════════════ */
.cu-contact-sec {
  background: #fff;
  padding: 5.5rem 0;
}
.cu-contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* Form panel */
.cu-form-head { margin-bottom: 2rem; }
.cu-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.cu-form-row-single { grid-template-columns: 1fr; }
.cu-form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.cu-form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-black);
}
.cu-req { color: var(--brand-red); margin-left: 0.2rem; }
.cu-form-group input,
.cu-form-group select,
.cu-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1.5px solid var(--brand-grey-dark);
  border-radius: 6px;
  background: #fff;
  color: var(--brand-black);
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1.5;
  min-height: 44px;
}
.cu-form-group input::placeholder,
.cu-form-group textarea::placeholder { color: #bbb; }
.cu-form-group input:focus,
.cu-form-group select:focus,
.cu-form-group textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(204,0,0,.1);
}
.cu-form-group input.cu-error,
.cu-form-group select.cu-error,
.cu-form-group textarea.cu-error { border-color: var(--brand-red); }
.cu-form-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.cu-field-err {
  font-size: 0.8125rem;
  color: var(--brand-red);
  display: none;
  align-items: center;
  gap: 0.3rem;
}
.cu-field-err.cu-show { display: flex; }
.cu-form-divider { border: none; border-top: 1px solid var(--brand-grey); margin: 1.75rem 0; }

/* Checkbox */
.cu-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.cu-checkbox-row input[type=checkbox] {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex-shrink: 0;
  accent-color: var(--brand-red);
  margin-top: 0.15rem;
  cursor: pointer;
}
.cu-checkbox-row label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 400;
  cursor: pointer;
  line-height: 1.6;
}

/* Submit row */
.cu-submit-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.cu-btn-submit { padding: 1rem 2.25rem; font-size: 1rem; }
.cu-submit-note { font-size: 0.8125rem; color: #888; }

/* Form note */
.cu-form-note {
  font-size: 0.8125rem;
  color: #888;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}
.cu-form-note svg { flex-shrink: 0; color: #16a34a; margin-top: 0.15rem; }

/* Success state */
.cu-form-success {
  display: none;
  background: rgba(22,163,74,.1);
  border: 1.5px solid rgba(22,163,74,.25);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}
.cu-form-success.cu-show { display: block; }
.cu-success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.cu-form-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 0.5rem;
}
.cu-form-success p { color: var(--text-secondary); font-size: 0.9375rem; }
.cu-form-success a { color: var(--brand-red); font-weight: 600; }

/* Sidebar */
.cu-sidebar {
  position: sticky;
  top: 136px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cu-sidebar-card {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 1.625rem;
  border: 1px solid var(--brand-grey);
}
.cu-sidebar-dark {
  background: var(--brand-black);
  border-color: transparent;
}
.cu-sidebar-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
  color: var(--brand-black);
}
.cu-sidebar-dark h3 { color: #fff; }

.cu-sc-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--brand-grey);
}
.cu-sidebar-dark .cu-sc-item { border-color: rgba(255,255,255,.07); }
.cu-sc-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.cu-sc-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--brand-red-light);
  border: 1px solid rgba(204,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.cu-sidebar-dark .cu-sc-icon { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.cu-sc-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.2rem;
}
.cu-sidebar-dark .cu-sc-label { color: rgba(255,255,255,.3); }
.cu-sc-value { font-size: 0.9375rem; font-weight: 600; color: var(--brand-black); line-height: 1.4; }
.cu-sidebar-dark .cu-sc-value { color: #fff; }
.cu-sc-value a { color: var(--brand-red); }
.cu-sc-value a:hover { color: var(--brand-red-dark); }
.cu-sidebar-dark .cu-sc-value a { color: #fff; }
.cu-sidebar-dark .cu-sc-value a:hover { color: var(--brand-red); }

/* Hours grid */
.cu-hours-grid { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.25rem; }
.cu-hr-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.cu-hr-day { color: rgba(255,255,255,.35); }
.cu-hr-time { font-weight: 600; color: #fff; }
.cu-hr-row.cu-today .cu-hr-day { color: var(--brand-red); font-weight: 700; }
.cu-hr-row.cu-today .cu-hr-time { color: var(--brand-red); }
.cu-hours-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.28);
  margin-top: 1rem;
  line-height: 1.6;
}
.cu-hours-note a { color: rgba(255,255,255,.5); }

/* Telehealth badge */
.cu-telehealth-badge {
  background: rgba(22,163,74,.1);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: 999px;
  padding: 0.3rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

/* Trust list */
.cu-trust-list { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 0.25rem; }
.cu-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.cu-trust-item svg { flex-shrink: 0; margin-top: 0.15rem; }

@media (max-width: 960px) {
  .cu-contact-layout { grid-template-columns: 1fr; }
  .cu-sidebar { position: static; }
}
@media (max-width: 600px) {
  .cu-form-row { grid-template-columns: 1fr; }
  .cu-contact-sec { padding: 4rem 0; }
}

/* ══════════════
   LOCATIONS
══════════════ */
.cu-loc-sec { background: #F5F5F5; padding: 5.5rem 0; }

/* Filter tabs */
.cu-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.cu-ftab {
  background: #fff;
  border: 1.5px solid var(--brand-grey-dark);
  border-radius: 999px;
  padding: 0.5rem 1.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
}
.cu-ftab:hover { border-color: var(--brand-red); color: var(--brand-red); }
.cu-ftab-active { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }
.cu-ftab:focus-visible { outline: 3px solid var(--brand-red); outline-offset: 2px; }

/* Location grid */
.cu-loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.cu-loc-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.09);
  overflow: hidden;
  border: 1px solid var(--brand-grey);
  transition: all 0.25s ease;
}
.cu-loc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.14); }
.cu-loc-card[hidden] { display: none; }
.cu-loc-top { height: 6px; }
.cu-loc-top-ga { background: linear-gradient(90deg, #1a1a1a, #333); }
.cu-loc-top-ma { background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue)); }
.cu-loc-top-ca { background: linear-gradient(90deg, var(--brand-red-dark), var(--brand-red)); }
.cu-loc-body { padding: 1.625rem; }
.cu-loc-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0.875rem;
}
.cu-badge-ga { background: #f0f0f0; color: #555; }
.cu-badge-ma { background: var(--brand-blue-light); color: var(--brand-blue-dark); }
.cu-badge-ca { background: var(--brand-red-light); color: var(--brand-red-dark); }
.cu-loc-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.cu-loc-sep { color: #888; font-weight: 400; }
.cu-loc-nickname { font-size: 0.875rem; color: #888; margin-bottom: 1rem; }
.cu-loc-addr {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.875rem;
  align-items: flex-start;
}
.cu-loc-addr svg { color: var(--brand-red); flex-shrink: 0; margin-top: 0.15rem; }
.cu-loc-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 1.25rem;
}
.cu-loc-phone svg { color: var(--brand-red); }
.cu-loc-phone a { color: var(--brand-black); }
.cu-loc-phone a:hover { color: var(--brand-red); }
.cu-loc-hours {
  font-size: 0.8125rem;
  color: #888;
  margin-bottom: 1.375rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.cu-loc-hours svg { color: #16a34a; flex-shrink: 0; }
.cu-loc-actions { display: flex; gap: 0.75rem; }
.cu-loc-actions a { flex: 1; justify-content: center; }

/* Telehealth callout */
.cu-telehealth-callout {
  margin-top: 2.5rem;
  background: var(--brand-black);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.cu-telehealth-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 0.5rem;
}
.cu-telehealth-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.cu-telehealth-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 520px;
}

@media (max-width: 700px) {
  .cu-loc-grid { grid-template-columns: 1fr; }
  .cu-telehealth-callout { grid-template-columns: 1fr; }
  .cu-loc-sec { padding: 4rem 0; }
}

/* ══════════════
   FAQ
══════════════ */
.cu-faq-sec { background: #fff; padding: 5rem 0; }
.cu-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.cu-faq-item {
  background: #F5F5F5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--brand-grey);
  margin-bottom: 0.75rem;
}
.cu-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-black);
  text-align: left;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
  font-family: inherit;
}
.cu-faq-q:hover { color: var(--brand-red); }
.cu-faq-q:focus-visible { outline: 3px solid var(--brand-red); outline-offset: -3px; }
.cu-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--brand-grey-dark);
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.25s, border-color 0.25s;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.cu-faq-item.cu-faq-open .cu-faq-icon {
  transform: rotate(45deg);
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}
.cu-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.cu-faq-item.cu-faq-open .cu-faq-body { max-height: 300px; }
.cu-faq-body p {
  padding: 0.125rem 1.375rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 0.9375rem;
}
.cu-faq-body a { color: var(--brand-red); }

@media (max-width: 768px) {
  .cu-faq-grid { grid-template-columns: 1fr; }
  .cu-faq-sec { padding: 4rem 0; }
}

/* ══════════════
   MOBILE STICKY BAR
══════════════ */
.cu-mob-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #fff;
  padding: 0.75rem 1rem;
  box-shadow: 0 -2px 20px rgba(0,0,0,.12);
  gap: 0.75rem;
}
.cu-mob-sticky a { flex: 1; justify-content: center; }
@media (max-width: 768px) {
  .cu-mob-sticky { display: flex; }
  body { padding-bottom: 80px; }
}
