/* ==========================================================================
   VANGUARD INJURY LAWYERS - DESIGN SYSTEM & STYLESHEET
   Luxury Legal Web Design | High Conversion & SEO Optimized
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-navy: #0b132b;
  --primary-navy-dark: #060b18;
  --primary-navy-light: #1c2541;
  --accent-gold: #d4af37;
  --accent-gold-hover: #f3c623;
  --accent-gold-glow: rgba(212, 175, 55, 0.25);
  --accent-crimson: #c92a2a;
  --accent-crimson-dark: #a61e1e;
  --text-primary: #ffffff;
  --text-secondary: #c0c9e0;
  --text-muted: #8492b4;
  --text-dark: #1e293b;
  --text-dark-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card-light: #ffffff;
  --bg-dark-card: rgba(15, 23, 42, 0.75);
  --border-dark: rgba(212, 175, 55, 0.2);
  --border-light: #e2e8f0;
  
  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing & Layout */
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--primary-navy-dark);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-gold-hover);
}

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

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

/* ==========================================================================
   TOP EMERGENCY BAR & HEADER
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #060b18 0%, #151d38 50%, #060b18 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.guarantee-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
}

.top-phone-link {
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.top-phone-link:hover {
  color: var(--accent-gold-hover);
}

/* Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 19, 43, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  transition: var(--transition);
}

.main-header.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-shield {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #997915 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy-dark);
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.68rem;
  color: var(--accent-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Call to Action Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8911d 100%);
  color: var(--primary-navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  color: var(--primary-navy-dark);
}

.btn-phone {
  background: var(--accent-crimson);
  color: var(--text-primary);
  box-shadow: 0 6px 20px rgba(201, 42, 42, 0.4);
  animation: pulse-red 2.5s infinite;
}

.btn-phone:hover {
  background: var(--accent-crimson-dark);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(201, 42, 42, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(201, 42, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 42, 42, 0); }
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.75rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, rgba(6, 11, 24, 0.75) 0%, rgba(11, 19, 43, 0.95) 100%),
              url('images/la_hero_banner.jpg') center/cover no-repeat;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-title span.highlight {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 620px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Lead Form Box */
.hero-form-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
}

.hero-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-form-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hero-form-sub {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(6, 11, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* Trust Badges Banner */
.trust-banner {
  background: #060b18;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.85;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.9rem;
}

.trust-badge-item i {
  color: var(--accent-gold);
  font-size: 1.4rem;
}

/* ==========================================================================
   INTERACTIVE CASE ESTIMATOR CALCULATOR (LEAD MAGNET)
   ========================================================================== */
.calculator-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.calc-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.calc-steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.calc-steps-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  transform: translateY(-50%);
}

.calc-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-navy-dark);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.calc-step-num.active {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  box-shadow: var(--shadow-gold);
}

.calc-step-content {
  display: none;
}

.calc-step-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.option-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.option-card:hover, .option-card.selected {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
}

.option-card i {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.option-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.option-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.calc-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-result-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(11, 19, 43, 0.9) 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.calc-result-val {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--accent-gold);
  font-weight: 800;
  margin: 0.5rem 0;
}

/* ==========================================================================
   RECENT CASE RESULTS & SETTLEMENTS
   ========================================================================== */
.results-section {
  padding: 5.5rem 0;
  background: var(--primary-navy-dark);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.result-card {
  background: var(--primary-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gold);
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.result-amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.result-type {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.result-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   PRACTICE AREAS GRID
   ========================================================================== */
.practice-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.practice-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.practice-card:hover {
  background: rgba(28, 37, 65, 0.7);
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.practice-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.practice-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.practice-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.practice-link {
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.practice-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   ATTORNEY BIO SECTION
   ========================================================================== */
.attorney-section {
  padding: 5.5rem 0;
  background: var(--primary-navy-dark);
}

.attorney-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.attorney-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.attorney-img {
  width: 100%;
  object-fit: cover;
}

.attorney-overlay-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(6, 11, 24, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.attorney-overlay-badge h4 {
  font-size: 1.1rem;
  color: var(--accent-gold);
}

.attorney-overlay-badge p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.attorney-bio-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.attorney-role {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  display: block;
}

.attorney-text {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.credentials-list {
  list-style: none;
  margin-bottom: 2rem;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #ffffff;
}

.credentials-list i {
  color: var(--accent-gold);
}

/* ==========================================================================
   CLIENT TESTIMONIALS & GOOGLE REVIEWS
   ========================================================================== */
.reviews-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  position: relative;
}

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

.review-quote {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 1rem;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LOCAL SEO & OFFICE LOCATIONS HUB
   ========================================================================== */
.location-section {
  padding: 5rem 0;
  background: var(--primary-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-card-box {
  background: var(--primary-navy-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.location-item i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.map-mockup {
  height: 340px;
  background: url('images/la_law_office_interior.jpg') center/cover no-repeat;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.map-overlay-card {
  background: rgba(6, 11, 24, 0.9);
  backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-gold);
  width: 100%;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background: #040711;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-brand p {
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-disclaimer {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #4a5568;
  margin-top: 1rem;
}

/* Mobile Floating Conversion Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #060b18;
  border-top: 2px solid var(--accent-gold);
  padding: 0.75rem 1rem;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.8);
}

.mobile-bar-flex {
  display: flex;
  gap: 0.75rem;
}

.mobile-bar-btn {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Success Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--primary-navy);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.modal-icon {
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid, .attorney-grid, .location-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-navy-dark);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--accent-gold);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-nav-toggle {
    display: block;
  }

  .mobile-sticky-bar {
    display: block;
  }
  
  body {
    padding-bottom: 60px;
  }
}
