/* ============================================================
   VICTIM FIRST ADVOCATES — vicfirstad.com
   Set 1 / Layout B — Split Screen
   Primary: Deep Navy #0d1f3c | Accent: Crimson #c0392b
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy:       #0d1f3c;
  --navy-mid:   #1a3257;
  --crimson:    #c0392b;
  --crimson-dk: #a03020;
  --gold:       #d4a94a;
  --white:      #ffffff;
  --offwhite:   #f5f4f0;
  --gray-lt:    #e8e6e0;
  --gray-md:    #9a9590;
  --gray-dk:    #3a3530;
  --text:       #1a1a1a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:     4px;
  --radius-lg:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-crimson { color: var(--crimson); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}
.btn-primary:hover {
  background: var(--crimson-dk);
  border-color: var(--crimson-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
}
.btn-lg { padding: 17px 40px; font-size: 16px; }
.btn-full { width: 100%; display: block; text-align: center; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  border-bottom: 2px solid var(--crimson);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar-phone {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.topbar-phone:hover { color: var(--white); }
.topbar-email {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}
.topbar-email:hover { color: var(--white); }

/* ---- NAVIGATION ---- */
.nav {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-lt);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 24px; height: 24px; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo-tagline {
  font-size: 10px;
  color: var(--gray-md);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dk);
  border-radius: var(--radius);
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--navy); background: var(--offwhite); }
.nav-links a.active { color: var(--crimson); }
.nav-cta { margin-left: 8px; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  padding: 40px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: white; font-size: 28px; cursor: pointer;
}
.mobile-nav a {
  color: white;
  font-size: 22px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-display);
}

/* ---- HERO (SPLIT SCREEN) ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 620px;
}
.hero-left {
  background: var(--navy);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--crimson);
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.03);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-headline em {
  color: var(--crimson);
  font-style: normal;
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,31,60,0.3) 0%, transparent 60%);
}

/* ---- HERO IMAGE SECTION (2nd image strip) ---- */
.hero-image-strip {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.hero-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,60,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-strip-content {
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 24px;
}
.hero-image-strip-content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-image-strip-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}

/* ---- STEPS / HOW IT WORKS ---- */
.steps-section { background: var(--offwhite); }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--crimson);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-md);
  max-width: 580px;
  line-height: 1.65;
}
.steps-header { margin-bottom: 56px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-lt);
  position: relative;
  transition: all 0.2s;
}
.step-card:hover {
  border-color: var(--crimson);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--gray-lt);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
}
.step-icon {
  width: 48px; height: 48px;
  background: var(--crimson);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-icon svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; }
.step-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-desc { color: var(--gray-md); font-size: 15px; line-height: 1.6; }

/* ---- CASE TYPES ---- */
.case-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.case-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}
.case-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.case-card-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.case-card-icon svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 2; }
.case-card-body {}
.case-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.case-card-desc { font-size: 14px; color: var(--gray-md); line-height: 1.6; }

/* ---- LEAD / FORM SECTION ---- */
.lead-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.lead-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--crimson);
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
.lead-left {}
.lead-left .section-title { color: var(--white); }
.lead-left .section-subtitle { color: rgba(255,255,255,0.65); }
.lead-checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.lead-check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
}
.lead-check-dot {
  width: 20px; height: 20px;
  background: var(--crimson);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.lead-check-dot svg { width: 11px; height: 11px; stroke: white; fill: none; stroke-width: 3; }
.lead-right {}
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.lead-form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.lead-form-sub {
  font-size: 13px;
  color: var(--gray-md);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-dk);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-disclaimer {
  font-size: 11px;
  color: var(--gray-md);
  line-height: 1.5;
  margin-top: 12px;
}
.form-disclaimer a { color: var(--navy); text-decoration: underline; }

/* ---- SMS SECTION ---- */
.sms-section { background: var(--offwhite); }
.sms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sms-phone-mock {
  background: var(--navy);
  border-radius: 32px;
  padding: 32px 24px;
  max-width: 300px;
  margin: 0 auto;
  border: 6px solid var(--gray-dk);
}
.sms-bubble {
  background: rgba(255,255,255,0.1);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  color: white;
  font-size: 13px;
  margin-bottom: 10px;
}
.sms-bubble-out {
  background: var(--crimson);
  border-radius: 16px 16px 4px 16px;
  padding: 12px 16px;
  color: white;
  font-size: 13px;
  margin-bottom: 10px;
  margin-left: auto;
  max-width: 80%;
}
.sms-time { font-size: 10px; color: rgba(255,255,255,0.4); text-align: center; margin: 8px 0; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--crimson);
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-dk);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-location {
  font-size: 12px;
  color: var(--gray-md);
}

/* ---- ABOUT PAGE HERO ---- */
.page-hero {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--crimson);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }

/* ---- ATTORNEY NETWORK ---- */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.network-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
}
.network-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.network-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.network-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.network-card-body { padding: 24px 20px; }
.network-card-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.network-card-desc { font-size: 14px; color: var(--gray-md); line-height: 1.6; }

/* ---- FAQ ---- */
.faq-list { margin-top: 48px; max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--gray-lt);
  padding: 24px 0;
}
.faq-question {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq-answer { font-size: 15px; color: var(--gray-md); line-height: 1.7; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
  border-top: 4px solid var(--crimson);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand-domain {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.footer-contact-item a { color: var(--gold); }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 420px; }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-right { max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-headline { font-size: 38px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .steps-grid, .case-types-grid, .testimonials-grid, .network-grid { grid-template-columns: 1fr; }
  .sms-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 24px; }
  .hero-headline { font-size: 32px; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-right .topbar-email { display: none; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 28px; }
  .section-title { font-size: 28px; }
  .lead-form-card { padding: 28px 20px; }
  .hero-actions { flex-direction: column; }
}
