/* ============================================
   VAWA Fraud Support — Premium Redesign
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

/* --- Design Tokens --- */
:root {
  --navy-900: #0a1f3f;
  --navy-800: #0f2a52;
  --navy-700: #132f54;
  --navy-600: #1a3a5c;
  --navy-500: #2d5986;
  --teal: #1a6b6b;
  --teal-light: #2d8989;
  --gold: #c9953c;
  --gold-light: #e0b36a;
  --gold-pale: #f5e6c8;
  --cream: #fefcf7;
  --cream-alt: #fff8ec;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success: #059669;
  --success-bg: #d1fae5;
  --error: #dc2626;
  --error-bg: #fee2e2;
  --warning: #d97706;
  --warning-bg: #fef3c7;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --container: 1120px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 48px rgba(0,0,0,0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy-800);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.375rem; }
p { margin-bottom: 1rem; color: var(--gray-600); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.btn-primary:hover {
  background: var(--navy-600);
  border-color: var(--navy-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo — SVG Shield + Wordmark */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--navy-800);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}
.logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}
.nav-list a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--navy-800);
  background: rgba(30, 58, 95, 0.06);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-900) !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy-900) !important;
}

/* Mobile nav */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}
.hamburger { display: block; width: 24px; height: 2px; background: var(--navy-800); border-radius: 2px; position: relative; transition: all 0.3s; }
.hamburger::before, .hamburger::after { content: ''; display: block; width: 24px; height: 2px; background: var(--navy-800); border-radius: 2px; position: absolute; transition: all 0.3s; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
}
.nav-overlay.active { display: block; }

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 45%, var(--navy-600) 100%);
  color: var(--white);
  padding: 7rem 0 6rem;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,149,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  max-width: 580px;
  color: rgba(255,255,255,0.85);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Page Hero (subpages) */
.page-hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 4rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,149,60,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 0.5rem; position: relative; z-index: 2; }
.page-hero-subtitle { opacity: 0.85; font-size: 1.1rem; max-width: 560px; margin: 0 auto; position: relative; z-index: 2; color: rgba(255,255,255,0.8); }

/* === SECTIONS === */
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }
.section-cream { background: var(--cream-alt); }
.section-navy { background: var(--navy-800); color: var(--white); }
.section-navy h2 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }
.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* --- Mission Grid (Home) --- */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.mission-text h2 { font-size: 2.125rem; margin-bottom: 1rem; }
.mission-text p { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.8; }
.mission-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-card {
  background: var(--cream-alt);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.value-icon { font-size: 1.75rem; margin-bottom: 0.5rem; display: block; }
.value-card h3 { font-family: var(--font-sans); font-size: 1rem; color: var(--navy-800); margin-bottom: 0.25rem; }
.value-card p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 0; }

/* --- Stats / Impact --- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.5; }

/* --- Services Grid --- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.service-card {
  display: block;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}
.service-card:hover::after { height: 100%; }
.service-card h3 { font-family: var(--font-sans); font-size: 1.125rem; color: var(--navy-800); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 1rem; }
.service-link { color: var(--gold); font-weight: 600; font-size: 0.9375rem; }
.service-card-highlight { background: rgba(201,149,60,0.04); border-color: var(--gold-pale); }

/* --- CTA Section --- */
.section-cta {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  text-align: center;
  padding: 5rem 0;
}
.section-cta h2 { color: var(--white); font-size: 2.25rem; }
.section-cta p { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 2rem; }

/* === FORM STYLES === */
.form-container { max-width: 680px; margin: 0 auto; }
.form-intro { margin-bottom: 2rem; }
.form-intro h2 { font-size: 1.75rem; }
.form-disclaimer {
  background: var(--warning-bg);
  border: 1px solid var(--warning);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}
.form-disclaimer p { font-size: 0.9375rem; margin-bottom: 0; color: var(--gray-700); }
.intake-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}
.required { color: var(--error); }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(45, 89, 134, 0.10);
  background: var(--white);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-help { display: block; font-size: 0.8125rem; color: var(--gray-400); margin-top: 0.375rem; }
.form-checkbox { margin-bottom: 1.5rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--navy-600);
  flex-shrink: 0;
}
.form-actions { text-align: center; margin-top: 2rem; }
.form-footer-info { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.form-footer-info h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 1rem; }
.form-footer-info ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.form-footer-info li { margin-bottom: 0.75rem; line-height: 1.6; color: var(--gray-600); }
.muted { font-size: 0.875rem; color: var(--gray-400); }

/* === FLASH MESSAGES === */
.flash-container {
  position: fixed;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: 90%;
  max-width: 520px;
}
.flash-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.flash-success { background: var(--success-bg); color: var(--success); border: 1px solid var(--success); }
.flash-error { background: var(--error-bg); color: var(--error); border: 1px solid var(--error); }
.flash-close { background: none; border: none; font-size: 1.25rem; cursor: pointer; color: inherit; opacity: 0.7; padding: 0 0.25rem; }
.flash-close:hover { opacity: 1; }

/* === CONTENT PAGES === */
.content-page { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.content-main h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.25rem; }
.content-main ul, .content-main ol { margin-bottom: 1.5rem; padding-left: 1.5rem; color: var(--gray-600); }
.content-main li { margin-bottom: 0.5rem; line-height: 1.7; }
.content-sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.sidebar-card h3 { font-family: var(--font-sans); font-size: 1rem; color: var(--navy-800); margin-bottom: 0.75rem; }
.sidebar-card p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.sidebar-card hr { border: none; border-top: 1px solid var(--gray-200); margin: 0.75rem 0; }
.sidebar-card-warning { border-left: 4px solid var(--warning); background: var(--warning-bg); }
.hotline-number { font-size: 1rem !important; margin-bottom: 0.25rem !important; }

/* --- Info Cards --- */
.info-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--navy-500);
}
.info-card h3 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: 0.5rem; }
.info-card p { font-size: 0.9375rem; margin-bottom: 0; }

/* --- Notice Box --- */
.notice-box {
  background: var(--warning-bg);
  border: 1px solid var(--warning);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.notice-box h3 { font-family: var(--font-sans); font-size: 1rem; color: var(--warning); margin-bottom: 0.5rem; }
.notice-box p { font-size: 0.9375rem; margin-bottom: 0; color: var(--gray-700); }

/* --- CTA Inline --- */
.cta-inline {
  background: var(--cream-alt);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.cta-inline h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.5rem; }
.cta-inline p { margin-bottom: 1.25rem; color: var(--gray-500); }

/* === FOOTER === */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo svg { width: 28px; height: 28px; }
.footer-tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.6); margin-bottom: 0; }
.footer-heading { font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9375rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); margin-bottom: 0; }

/* === SCROLL ANIMATIONS (progressive enhancement) === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-title { font-size: 2.5rem; }
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .content-page { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { gap: 1rem; }
}
@media (max-width: 768px) {
  .mobile-nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s ease;
    z-index: 99;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }
  .main-nav.active { right: 0; }
  .nav-list { flex-direction: column; gap: 0.5rem; }
  .nav-list a { display: block; padding: 0.75rem 1rem; font-size: 1rem; }
  .hero { padding: 5rem 0 4rem; min-height: auto; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 3.5rem 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .mission-values { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .intake-form { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero h1 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .hero-title { font-size: 1.75rem; }
  .mission-values { grid-template-columns: 1fr; }
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy-800);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
