/*
Theme Name: Help S.A.V.E. USA
Theme URI: https://helpsaveusa.org
Author: Help S.A.V.E. USA
Author URI: https://helpsaveusa.org
Description: Official theme for Help S.A.V.E. USA - Stop America's Violence Everywhere. A national matching platform connecting those in need with qualified martial arts experts.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: helpsaveusa
Tags: custom-menu, featured-images, full-width-template, theme-options, two-columns
*/

/* ============================================================
   HELP S.A.V.E. USA - WORDPRESS THEME
   Patriotic Red / White / Navy Blue Design System
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0d1f3c;
  --navy-light:  #1a2f52;
  --red:         #c8102e;
  --red-dark:    #a00d24;
  --red-light:   #e8192e;
  --white:       #ffffff;
  --off-white:   #f8f9fa;
  --gray-100:    #f1f3f5;
  --gray-200:    #e9ecef;
  --gray-400:    #adb5bd;
  --gray-600:    #6c757d;
  --gray-800:    #343a40;
  --gold:        #c9a227;

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.2);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.25);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--navy);
}

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.5rem; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-red    { color: var(--red) !important; }
.text-navy   { color: var(--navy) !important; }
.bg-navy     { background-color: var(--navy); }
.bg-red      { background-color: var(--red); }
.bg-white    { background-color: var(--white); }
.bg-offwhite { background-color: var(--off-white); }

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .overline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-header .overline::before,
.section-header .overline::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header h2.white { color: var(--white); }

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
}

.section-header p.white { color: rgba(255,255,255,0.8); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200,16,46,0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
}
.badge-red   { background: rgba(200,16,46,0.1); color: var(--red); }
.badge-navy  { background: rgba(10,22,40,0.1);  color: var(--navy); }
.badge-green { background: rgba(22,163,74,0.1); color: #16a34a; }

/* ---- Forms ---- */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}

.form-control::placeholder { color: var(--gray-400); }

select.form-control { cursor: pointer; }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---- Checkboxes & Radios ---- */
.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  min-width: 200px;
}

.check-item:hover { border-color: var(--red); background: rgba(200,16,46,0.03); }
.check-item.selected { border-color: var(--red); background: rgba(200,16,46,0.06); }

.check-item input[type="checkbox"],
.check-item input[type="radio"] { margin-top: 3px; accent-color: var(--red); }

.check-item .check-label { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.check-item .check-desc  { font-size: 0.8rem; color: var(--gray-600); margin-top: 2px; }

/* ---- Step Indicator ---- */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.step.completed:not(:last-child)::after { background: var(--red); }

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--gray-200);
  color: var(--gray-600);
  border: 2px solid var(--gray-200);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step.active .step-num   { background: var(--red); color: var(--white); border-color: var(--red); }
.step.completed .step-num { background: var(--navy); color: var(--white); border-color: var(--navy); }

.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  white-space: nowrap;
}
.step.active .step-label    { color: var(--red); }
.step.completed .step-label { color: var(--navy); }

/* ---- Alert Messages ---- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.alert-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }

/* ---- Stars Rating ---- */
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero h1 span { color: var(--red); }

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 1rem auto 0;
  position: relative;
  z-index: 1;
}

.page-hero .badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,16,46,0.2);
  color: #ff6b7a;
  border: 1px solid rgba(200,16,46,0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* ---- Responsive Utilities ---- */
@media (max-width: 768px) {
  .section-pad { padding: 50px 0; }
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ---- WordPress Core Overrides ---- */
.wp-block-image img { border-radius: var(--radius-md); }
.wp-caption { max-width: 100%; }
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }

/* ---- Accessibility ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }


/* ============================================================
   LAYOUT STYLES
   ============================================================ */
/* ============================================================
   LAYOUT CSS - Header, Footer, Navigation
   Help S.A.V.E. USA WordPress Theme
   ============================================================ */

/* ---- Top Bar ---- */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.45rem 0;
  font-size: 0.8rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-tagline { color: rgba(255,255,255,0.6); font-size: 0.78rem; }

.topbar-right { display: flex; align-items: center; gap: 1.5rem; }

.topbar-phone,
.topbar-email {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  transition: color 0.2s;
}
.topbar-phone:hover,
.topbar-email:hover { color: var(--red); }

/* ---- Site Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-mid);
  border-bottom: 3px solid var(--red);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(13,31,60,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 0;
  min-height: 80px;
}

/* ---- Brand ---- */
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---- Main Nav ---- */
.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li > a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li.current-menu-item > a { color: var(--white); }

.nav-list > li.current-menu-item > a { border-bottom: 2px solid var(--red); }

/* Dropdown */
.nav-list .has-dropdown { position: relative; }

.nav-list .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
  z-index: 100;
}

.nav-list .has-dropdown.open .dropdown,
.nav-list .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-list .dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.15s;
}
.nav-list .dropdown li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  padding-left: 1.5rem;
}

/* ---- Header CTAs ---- */
.header-ctas { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

/* ---- Mobile Toggle ---- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-nav.open { max-height: 100vh; }

.mobile-nav-inner { padding: 1.5rem; }

.mobile-nav-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.mobile-nav-list li a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.mobile-nav-list li a:hover { color: var(--red); }

.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.mobile-nav-ctas .btn { justify-content: center; }

.mobile-nav-contact {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); }

.footer-cta-band {
  background: var(--red);
  padding: 2.5rem 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta-text h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-cta-text p { color: rgba(255,255,255,0.85); margin: 0; }

.footer-cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}

.footer-main { padding: 4rem 0 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand { }

.footer-logo-link { display: inline-block; margin-bottom: 0.75rem; }

.footer-logo { width: 90px; height: 90px; object-fit: contain; }

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 1rem;
}

.footer-brand-text strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-brand-text span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.footer-mission {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-link:hover { background: var(--red); color: var(--white); }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.footer-contact-list svg { flex-shrink: 0; color: var(--red); }

.footer-contact-list a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}

.pagination a { background: var(--gray-100); color: var(--navy); }
.pagination a:hover { background: var(--red); color: var(--white); }
.pagination .current { background: var(--red); color: var(--white); }
.pagination .prev, .pagination .next { width: auto; padding: 0 1rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .topbar-tagline { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-buttons { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .brand-text { display: none; }
}


/* ============================================================
   THEME COMPONENT STYLES
   ============================================================ */
/* ============================================================
   THEME CSS - Global Styles, Components, Utilities
   Help S.A.V.E. USA WordPress Theme
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy:       #0d1f3c;
  --navy-mid:   #112244;
  --navy-light: #1a3a6b;
  --red:        #cc2200;
  --red-dark:   #a81b00;
  --red-light:  #e63300;
  --white:      #ffffff;
  --off-white:  #f8f9fb;
  --gray-100:   #f1f3f6;
  --gray-200:   #e2e6ed;
  --gray-400:   #94a3b8;
  --gray-600:   #64748b;
  --gray-800:   #1e293b;
  --gold:       #c9a227;

  --font-body:    'Open Sans', system-ui, sans-serif;
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.18);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.22);

  --transition: 0.2s ease;
  --container-max: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204,34,0,0.35);
}

.btn-secondary {
  background: var(--navy-light);
  color: var(--white);
  border-color: var(--navy-light);
}
.btn-secondary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  color: var(--navy);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 3rem; font-size: 1.05rem; }

/* ---- Section Styles ---- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-light { background: var(--off-white); }
.section-navy  { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3,
.section-navy h4 { color: var(--white); }
.section-dark  { background: var(--gray-800); color: var(--white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
}
.section-navy .section-header p { color: rgba(255,255,255,0.7); }

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-body { padding: 1.75rem; }
.card-header { padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--gray-200); }
.card-footer { padding: 1.25rem 1.75rem; border-top: 1px solid var(--gray-200); background: var(--gray-100); }

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
}

.badge-red    { background: #fee2e2; color: #991b1b; }
.badge-blue   { background: #dbeafe; color: #1e40af; }
.badge-green  { background: #d1fae5; color: #065f46; }
.badge-yellow { background: #fef3c7; color: #92400e; }
.badge-navy   { background: var(--navy); color: var(--white); }

/* ---- Alerts ---- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  border-left: 4px solid;
}
.alert-success { background: #d1fae5; color: #065f46; border-color: #10b981; }
.alert-error   { background: #fee2e2; color: #991b1b; border-color: #ef4444; }
.alert-warning { background: #fef3c7; color: #92400e; border-color: #f59e0b; }
.alert-info    { background: #dbeafe; color: #1e40af; border-color: #3b82f6; }

/* ---- Forms ---- */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-label .required { color: var(--red); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(26,58,107,0.12);
}

.form-control.error { border-color: var(--red); }
.form-control.error:focus { box-shadow: 0 0 0 3px rgba(204,34,0,0.12); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-hint { font-size: 0.8rem; color: var(--gray-600); margin-top: 0.35rem; }
.form-error { font-size: 0.8rem; color: var(--red); margin-top: 0.35rem; display: none; }
.form-control.error ~ .form-error { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* Checkbox & Radio cards */
.check-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}

.check-item:hover { border-color: var(--navy-light); background: var(--gray-100); }
.check-item.selected { border-color: var(--navy); background: rgba(17,34,68,0.05); }
.check-item input { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--navy); margin-top: 2px; }
.check-label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.check-desc { font-size: 0.78rem; color: var(--gray-600); margin-top: 2px; }

.check-group.error { border: 2px solid var(--red); border-radius: var(--radius-sm); padding: 0.5rem; }

/* Range Slider */
input[type=range] {
  width: 100%;
  height: 6px;
  accent-color: var(--red);
  cursor: pointer;
}

/* ---- Step Progress ---- */
.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  flex-shrink: 0;
}

.step.active .step-num { background: var(--red); color: var(--white); }
.step.active { color: var(--navy); }
.step.completed .step-num { background: #10b981; color: var(--white); }
.step.completed { color: var(--gray-600); }

.step-line {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ---- Form Steps ---- */
.form-step { display: none; }
.form-step.active { display: block; }

/* ---- Review Summary ---- */
.review-list {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
}
.review-list dt { font-weight: 600; color: var(--navy); text-transform: capitalize; }
.review-list dd { color: var(--gray-600); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a1a4e 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-white  { color: var(--white) !important; }
.text-navy   { color: var(--navy) !important; }
.text-red    { color: var(--red) !important; }
.text-muted  { color: var(--gray-600) !important; }

.bg-navy     { background: var(--navy) !important; }
.bg-red      { background: var(--red) !important; }
.bg-light    { background: var(--off-white) !important; }

.fw-bold     { font-weight: 700; }
.fw-semibold { font-weight: 600; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---- Loading Spinner ---- */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Divider ---- */
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 2rem 0; }

/* ---- Prose (blog content) ---- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2, .prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol { margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  background: var(--gray-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray-600);
}
.prose img { border-radius: var(--radius-md); margin: 1.5rem 0; }


/* ============================================================
   HOMEPAGE STYLES
   ============================================================ */
/* ============================================================
   HOMEPAGE CSS
   Help S.A.V.E. USA WordPress Theme
   ============================================================ */

/* ---- Hero ---- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, var(--navy) 40%, #1a1a4e 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 5rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #ff6b35, var(--red));
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-logo-wrap { margin-bottom: 1.5rem; }

.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title-red { color: var(--red); }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-subtitle strong { color: var(--white); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-ctas .btn {
  flex-direction: column;
  gap: 2px;
  padding: 1rem 1.75rem;
  min-width: 180px;
}

.hero-ctas .btn small {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  opacity: 0.8;
}

.hero-quote {
  max-width: 280px;
  flex-shrink: 0;
}

.hero-quote blockquote {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 2rem;
  color: var(--white);
}

.hero-quote blockquote p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-quote blockquote footer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ---- Stats Band ---- */
.stats-band {
  background: var(--red);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item { padding: 1rem; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Matching Section ---- */
.matching-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.matching-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid;
  position: relative;
}

.matching-card-need { border-top-color: var(--red); }
.matching-card-expert { border-top-color: var(--navy); }

.matching-card-num {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.matching-card-expert .matching-card-num { background: var(--navy); }

.matching-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
}

.matching-card-expert .matching-card-icon { color: var(--navy); }

.matching-card h3 { margin-bottom: 0.75rem; }
.matching-card p { color: var(--gray-600); margin-bottom: 1.25rem; }

.matching-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.75rem;
}

.matching-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.matching-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.matching-center {
  text-align: center;
  padding: 1rem;
}

.matching-center-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.matching-arrows {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.matching-tagline {
  font-size: 0.9rem;
  color: var(--gray-600);
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---- Crime Issues ---- */
.crime-issues-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.crime-issue-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.crime-issue-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--red);
  transform: translateY(-3px);
}

.crime-issue-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.crime-issue-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.crime-issue-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.crime-issue-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

/* ---- How It Works ---- */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.how-steps { display: flex; flex-direction: column; gap: 0; }

.how-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.how-step:last-child { border-bottom: none; }

.how-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.how-step-content h4 { margin-bottom: 0.35rem; }
.how-step-content p { margin: 0; color: var(--gray-600); font-size: 0.95rem; }

.why-list { display: flex; flex-direction: column; gap: 1.25rem; }

.why-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--red);
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.why-item strong { display: block; color: var(--navy); margin-bottom: 0.25rem; }
.why-item p { margin: 0; font-size: 0.88rem; color: var(--gray-600); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--red);
}

.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--gray-600); }

/* ---- Partners ---- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.partner-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.partner-item:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.partner-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--navy);
  transition: all var(--transition);
}

.partner-item:hover .partner-icon { background: var(--red); color: var(--white); }

.partner-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}

/* ---- Join Section ---- */
.join-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.join-text h2 { color: var(--white); margin-bottom: 1rem; }
.join-text p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 600px; }

.join-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.join-phone-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  min-width: 240px;
}

.join-phone-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}

.join-phone-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.join-phone-num:hover { color: var(--red); }

.join-phone-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .crime-issues-grid { grid-template-columns: repeat(5, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-quote { display: none; }
  .matching-grid { grid-template-columns: 1fr; }
  .matching-center { display: none; }
  .how-grid { grid-template-columns: 1fr; gap: 3rem; }
  .crime-issues-grid { grid-template-columns: repeat(2, 1fr); }
  .join-inner { grid-template-columns: 1fr; }
  .join-phone { display: none; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .crime-issues-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-logo { width: 120px; height: 120px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { min-width: 100%; }
  .crime-issues-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
