/* ===================================================
   ZARA INJURY LAW — Premium Law Firm Design System
   =================================================== */

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

:root {
  /* Brand Colors — Refined */
  --navy: #0f1e36;
  --navy-dark: #0a1628;
  --navy-light: #1a2d4a;
  --gold: #c9a227;
  --gold-light: #d4af37;
  --gold-hover: #e0c04a;
  --gold-subtle: rgba(201, 162, 39, 0.1);
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f7f8fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6eb;
  --gray-300: #c4c9d2;
  --gray-400: #8b95a5;
  --gray-500: #6b7688;
  --gray-600: #4a5568;
  --gray-700: #374151;
  --gray-800: #2d3748;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 30, 54, 0.06);
  --shadow: 0 4px 20px rgba(15, 30, 54, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 30, 54, 0.1);
  --shadow-lg: 0 16px 48px rgba(15, 30, 54, 0.14);
  --shadow-xl: 0 24px 64px rgba(15, 30, 54, 0.18);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.25);

  /* Layout */
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-w: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.75;
  font-size: 16px;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================================================
   Scroll Reveal Animations
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger grid children */
.stagger-grid > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.stagger-grid.visible > * { opacity: 1; transform: translateY(0); }
.stagger-grid.visible > *:nth-child(1) { transition-delay: 0.04s; }
.stagger-grid.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-grid.visible > *:nth-child(3) { transition-delay: 0.12s; }
.stagger-grid.visible > *:nth-child(4) { transition-delay: 0.16s; }
.stagger-grid.visible > *:nth-child(5) { transition-delay: 0.20s; }
.stagger-grid.visible > *:nth-child(6) { transition-delay: 0.24s; }
.stagger-grid.visible > *:nth-child(7) { transition-delay: 0.28s; }
.stagger-grid.visible > *:nth-child(8) { transition-delay: 0.32s; }

/* ===================================================
   Top Bar
   =================================================== */
.top-bar {
  background: var(--navy-dark);
  color: var(--gray-400);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

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

.top-bar a {
  color: var(--gold);
  font-weight: 500;
}

.top-bar a:hover {
  color: var(--gold-hover);
}

/* ===================================================
   Header / Navigation
   =================================================== */
header {
  background: rgba(15, 30, 54, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

header.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s var(--ease);
}

.logo:hover {
  opacity: 0.9;
  color: var(--white);
}

.logo span {
  color: var(--gold);
}

nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

nav a {
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  position: relative;
  letter-spacing: 0.2px;
}

nav a:hover,
nav a.active {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.07);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.3s var(--ease);
}

nav a:hover::after,
nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  font-size: 0.87rem !important;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.3);
  transition: all 0.3s var(--ease) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0.55rem 0.6rem;
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--gold);
}

.nav-toggle:hover span {
  background: var(--gold);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================
   Breadcrumbs
   =================================================== */
.breadcrumbs {
  background: var(--gray-50);
  padding: 0.85rem 0;
  font-size: 0.88rem;
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs a {
  color: var(--gold);
  font-weight: 500;
}

.breadcrumbs span {
  margin: 0 0.55rem;
  color: var(--gray-300);
}

/* ===================================================
   Hero Section
   =================================================== */
.hero {
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.93) 0%, rgba(15, 30, 54, 0.88) 50%, rgba(26, 45, 74, 0.85) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
  color: var(--white);
  padding: 6.5rem 0 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.02), transparent);
  pointer-events: none;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
}

.hero .gold {
  color: var(--gold);
  display: block;
}

.hero p {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  position: relative;
}

.hero-badges .badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.22);
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.hero-badges .badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 162, 39, 0.5);
  transform: translateY(-3px);
}

.hero-badges .badge strong {
  color: var(--gold);
  display: block;
  font-size: 1.2rem;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 0.15rem;
}

/* ===================================================
   Buttons
   =================================================== */
.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
  position: relative;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===================================================
   Sections
   =================================================== */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--gray-50);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2,
.section-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.08rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.gold-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto;
  border-radius: 2px;
}

/* ===================================================
   Grid
   =================================================== */
.grid {
  display: grid;
  gap: 1.75rem;
}

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

/* ===================================================
   Cards
   =================================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  transition: all 0.4s var(--ease);
  text-decoration: none;
  color: var(--gray-800);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 39, 0.12);
}

/* Practice-area cards */
.pa-card {
  text-align: center;
  border-top: none;
  padding: 2.5rem 1.75rem;
  overflow: hidden;
}

.pa-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.pa-card:hover::before {
  transform: scaleX(1);
}

.pa-card .card-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  transition: transform 0.4s var(--ease-spring);
}

.pa-card:hover .card-icon {
  transform: scale(1.12);
}

.pa-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

.pa-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  transition: all 0.3s var(--ease);
}

.card:hover .card-link {
  color: var(--gold-hover);
  gap: 0.45rem;
}

/* State cards */
.state-card {
  text-align: center;
  padding: 2.75rem 2rem;
}

.state-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.state-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===================================================
   Content Pages
   =================================================== */
.content-page {
  padding: 3.5rem 0;
}

.content-page h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.content-page h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  color: var(--navy);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.content-page h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.content-page p {
  margin-bottom: 1.15rem;
  color: var(--gray-600);
  line-height: 1.85;
  font-size: 1.02rem;
}

.content-page ul,
.content-page ol {
  margin: 1.25rem 0 1.25rem 1.75rem;
  color: var(--gray-600);
}

.content-page li {
  margin-bottom: 0.6rem;
  line-height: 1.75;
}

.content-cols {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 162, 39, 0.12);
}

.sidebar-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.sidebar-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sidebar-card .btn {
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
}

/* ===================================================
   Stats
   =================================================== */
.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2.5rem 0;
}

.stat { text-align: center; }

.stat .num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat .label {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================================
   CTA Banner
   =================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -25%; left: -8%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 700;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 2.5rem;
  font-size: 1.12rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   FAQ
   =================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.06rem;
  padding: 0.25rem 0;
  transition: color 0.3s var(--ease);
}

.faq-question:hover { color: var(--gold); }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
  font-weight: 300;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  color: var(--gray-600);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding-top: 1rem;
}

/* ===================================================
   About / Attorney
   =================================================== */
.attorney-hero {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  padding: 3.5rem 0;
}

.attorney-photo {
  flex: 0 0 260px;
}

.attorney-photo img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.1), var(--shadow-lg);
  transition: all 0.4s var(--ease);
}

.attorney-photo img:hover {
  box-shadow: 0 0 0 12px rgba(201, 162, 39, 0.15), var(--shadow-xl);
}

.attorney-info {
  flex: 1;
  min-width: 300px;
}

.attorney-info h1 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.attorney-info .subtitle {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.3px;
}

.bar-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.bar-list li {
  padding: 0.5rem 0;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.bar-list li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: bold;
  background: var(--gold-subtle);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ===================================================
   Contact
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 1.6rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
}

.contact-method:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-sm);
}

.contact-method .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
  transition: all 0.3s var(--ease);
  background: var(--white);
  color: var(--gray-800);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn { width: 100%; }

/* ===================================================
   Footer
   =================================================== */
footer {
  background: linear-gradient(180deg, var(--navy-dark) 0%, #060e1a 100%);
  color: var(--gray-400);
  padding: 4.5rem 0 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

footer h4 {
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.6rem; }

footer a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
  display: inline-block;
}

footer a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-about .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--gray-500);
  gap: 1rem;
}

.footer-cross {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.footer-cross a { color: var(--gold); }

/* ===================================================
   Selection highlight
   =================================================== */
::selection {
  background: rgba(201, 162, 39, 0.2);
  color: var(--navy);
}

/* ===================================================
   Responsive — Tablet
   =================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .content-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero h1 { font-size: 2.8rem; }
}

/* ===================================================
   Responsive — Mobile
   =================================================== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    animation: slideDown 0.3s var(--ease-out);
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  nav.open { display: flex; }

  nav a {
    padding: 0.85rem 1rem;
    width: 100%;
    border-radius: var(--radius);
    font-size: 1rem;
  }

  nav a::after { display: none; }
  nav a:hover { background: rgba(201, 162, 39, 0.1); }

  .nav-cta { text-align: center !important; margin-top: 0.5rem; }

  .hero { padding: 4rem 0 3.5rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero p { font-size: 1rem; }
  .hero-badges { gap: 0.75rem; }
  .hero-badges .badge { padding: 0.75rem 1.25rem; font-size: 0.82rem; }

  .section { padding: 3.5rem 0; }
  .section-header h2, .section-header h1 { font-size: 1.8rem; }

  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { gap: 2rem; }

  .attorney-hero { flex-direction: column; text-align: center; }
  .attorney-photo { flex: 0 0 auto; }

  .top-bar .container { justify-content: center; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 3.5rem 0; }
  .cta-banner h2 { font-size: 1.8rem; }
  .content-page h1 { font-size: 1.9rem; }
  .content-page h2 { font-size: 1.4rem; }

  .container { padding: 0 1.25rem; }
  .btn { padding: 0.85rem 1.8rem; }
}

/* ===================================================
   Responsive — Small Mobile
   =================================================== */
@media (max-width: 375px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-badges .badge { width: 100%; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; text-align: center; }
}

/* ===================================================
   Print
   =================================================== */
@media print {
  .top-bar, header, .breadcrumbs, .cta-banner, footer, .sidebar, .nav-toggle { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .content-page { padding: 0; }
  .content-cols { grid-template-columns: 1fr; }
}
