/* ============================================
   Global Anti-Fraud Alliance - Main Stylesheet
   ============================================ */

:root {
  --primary: #1565c0;
  --primary-dark: #0d47a1;
  --primary-light: #1976d2;
  --navy: #0d1b4b;
  --navy-dark: #081232;
  --accent: #42a5f5;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}

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

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 75, 0.95);
  backdrop-filter: blur(10px);
  padding: 0 20px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}

.nav-logo i {
  font-size: 1.4rem;
  color: var(--accent);
}

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

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a237e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=60') center/cover no-repeat;
  opacity: 0.08;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,18,50,0.92) 0%, rgba(13,27,75,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 100px 20px 60px;
  margin: 0 auto 0 calc((100vw - 1200px) / 2 + 20px);
}

@media (max-width: 1240px) {
  .hero-content {
    margin: 0 auto;
    text-align: center;
    padding: 120px 20px 60px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btn {
  font-size: 1rem;
  padding: 14px 32px;
}

/* ============================================
   WHO WE SUPPORT
   ============================================ */
.who-we-support {
  background: var(--bg-light);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-img {
  height: 180px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 20px;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: #e3f2fd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--primary);
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: var(--white);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-image {
  position: relative;
}

.services-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 450px;
}

.services-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-badge i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.services-badge span {
  font-weight: 700;
  font-size: 1rem;
}

.services-badge small {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}

.services-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.services-intro {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.service-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.service-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #e3f2fd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.service-item h4 {
  font-weight: 700;
  margin-bottom: 6px;
}

.service-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  background: var(--bg-light);
}

.team-stats {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}

.stat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.stat-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 4px;
}

.stat-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   MARQUEE (Auto Infinite Scroll)
   ============================================ */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* Fade edges for polished look */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* Legacy scroll-container kept for attorneys page */
.scroll-container {
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
}

.scroll-container:active {
  cursor: grabbing;
}

.scroll-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.scroll-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.scroll-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Attorney Cards */
.attorney-card {
  min-width: 280px;
  max-width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex-shrink: 0;
}

.attorney-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.attorney-avatar {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

.attorney-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.online-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: var(--success);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.attorney-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.attorney-rating i {
  color: #f59e0b;
}

.cases-won {
  background: #fef3c7;
  color: #92400e;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.attorney-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.attorney-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.attorney-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.attorney-tags span {
  background: #e3f2fd;
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.attorney-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.attorney-specialties {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.specialty-tag {
  background: var(--bg-light);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  border: 1px solid var(--border);
}

/* ============================================
   SUCCESS STORIES
   ============================================ */
.success-section {
  background: var(--white);
}

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

.success-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.success-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.success-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.success-label {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.success-label.assets { background: #dbeafe; color: #1e40af; }
.success-label.crypto { background: #fef3c7; color: #92400e; }
.success-label.property { background: #dcfce7; color: #166534; }

.success-type {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 4px 0;
}

.success-icon {
  width: 48px;
  height: 48px;
  background: #e3f2fd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.success-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.success-amount {
  color: var(--success);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--bg-light);
}

.testimonial-card {
  min-width: 320px;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

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

.testimonial-header strong {
  display: block;
  font-size: 0.95rem;
}

.verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 500;
}

.testimonial-date {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   OUTCOMES
   ============================================ */
.outcomes-section {
  background: var(--navy);
  color: var(--white);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.outcomes-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.outcomes-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.outcomes-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcome-stat {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  padding: 16px 20px;
  border-radius: var(--radius);
}

.outcome-stat i {
  font-size: 1.5rem;
  color: var(--accent);
}

.outcome-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
}

.outcome-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.outcomes-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.outcome-img1,
.outcome-img2 {
  border-radius: var(--radius);
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.outcome-quote {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.outcome-quote strong {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--accent);
}

.verified-stories {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.verified-stories i {
  font-size: 2rem;
  color: var(--success);
}

.verified-stories span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

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

.step-num {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 16px 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0 16px 16px;
  line-height: 1.6;
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-choose {
  background: var(--navy);
  color: var(--white);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.why-text > p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.why-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-feature i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 2px;
}

.why-feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.why-feature span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.why-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  height: 450px;
  object-fit: cover;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  background: linear-gradient(135deg, #1a237e 0%, var(--navy) 100%);
  color: var(--white);
}

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

.contact-section .section-header p {
  color: rgba(255,255,255,0.75);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(66, 165, 245, 0.15);
  border: 1px solid rgba(66, 165, 245, 0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 28px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
}

.form-notice i {
  color: var(--accent);
  margin-top: 2px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.2);
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

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

.form-disclaimer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclaimer-box {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
}

.disclaimer-box.red {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.disclaimer-box.yellow {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fcd34d;
}

.disclaimer-box i {
  margin-top: 2px;
  flex-shrink: 0;
}

.disclaimer-box strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.disclaimer-box p {
  line-height: 1.5;
  opacity: 0.9;
}

.success-message {
  text-align: center;
  padding: 40px;
  color: var(--white);
}

.success-message i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 16px;
}

.success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.success-message p {
  color: rgba(255,255,255,0.75);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-logo i {
  color: var(--accent);
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-contact h4,
.footer-hours h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-contact p,
.footer-hours p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

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

/* ============================================
   PRIVACY PAGE
   ============================================ */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text-dark);
}

.page-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--text-dark);
}

.page-content p,
.page-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.page-content ul,
.page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content a {
  color: var(--primary);
}

.google-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4285f4;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 16px 0;
  transition: var(--transition);
}

.google-policy-link:hover {
  background: #3367d6;
  transform: translateY(-2px);
}

/* ============================================
   ATTORNEYS PAGE
   ============================================ */
.attorneys-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
}

.attorneys-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.attorneys-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.attorneys-grid-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.attorneys-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.attorney-full-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.attorney-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.attorney-card-header {
  background: linear-gradient(135deg, var(--navy), var(--primary));
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.attorney-card-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  object-fit: cover;
}

.attorney-card-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.attorney-card-header .title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.attorney-card-header .rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fcd34d;
  font-size: 0.85rem;
}

.attorney-card-body {
  padding: 24px;
}

.attorney-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.attorney-card-body .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.attorney-card-body .tag {
  background: #e3f2fd;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-layout,
  .outcomes-layout,
  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-image img,
  .why-image img {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 12px 16px;
    width: 100%;
    display: block;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

  .form-wrapper {
    padding: 24px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .outcomes-images {
    grid-template-columns: 1fr;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .success-grid {
    grid-template-columns: 1fr;
  }

  .attorneys-full-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 100px 16px 50px;
  }

  .attorney-card {
    min-width: 260px;
    max-width: 260px;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Auto-scroll animation for testimonials */
@keyframes autoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.auto-scroll .scroll-track {
  animation: autoScroll 30s linear infinite;
}

.auto-scroll .scroll-track:hover {
  animation-play-state: paused;
}
