/* ========================================
   ROOT VARIABLES
======================================== */
:root {
  --primary-navy: #0F2747;
  --dark-navy: #081629;
  --gold: #C9A86A;
  --gold-light: #dfc08a;
  --light-bg: #F8F9FB;
  --text: #1D2430;
  --text-light: #5a6475;
  --white: #FFFFFF;
  --success: #D8E4D1;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(15, 39, 71, 0.08);
  --shadow-md: 0 8px 32px rgba(15, 39, 71, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 39, 71, 0.18);
  --shadow-gold: 0 8px 32px rgba(201, 168, 106, 0.25);
  --radius: 24px;
  --radius-card: 20px;
  --radius-btn: 999px;
  --container: 1200px;
  --section-pad: 120px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ========================================
   GLOBAL STYLES
======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

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

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

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

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

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

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

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

/* ========================================
   HEADER
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--white);
  padding: 16px 0;
  box-shadow: 0 2px 24px rgba(15, 39, 71, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
  transition: var(--transition);
}

.logo-tagline {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}

.header.scrolled .logo-name {
  color: var(--primary-navy);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
  transform: scaleX(1);
}

.header.scrolled .nav-link {
  color: var(--text);
}

.header.scrolled .nav-link:hover {
  color: var(--primary-navy);
}

.nav-cta {
  background: var(--gold);
  color: var(--dark-navy) !important;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 14px;
}

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

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: var(--dark-navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.header.scrolled .hamburger span {
  background: var(--primary-navy);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO
======================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: flex;
  width: 100%;
  height: 100%;
}

.hero-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 40px;
  background: var(--dark-navy);
  position: relative;
  z-index: 1;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  width: 160px;
  background: var(--dark-navy);
  clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
  z-index: 3;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 480px;
  position: relative;
  z-index: 3;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.hero-right {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    url('../images/index-hero.webp') 100% 20% / cover no-repeat;
  background-color: #1a3a5c;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 22, 41, 0.35) 0%, rgba(15, 39, 71, 0.15) 100%);
}

.hero-image::after {
  content: none;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark-navy) 0%, transparent 20%);
  z-index: 1;
}

/* Decorative elements */
.hero-deco {
  position: absolute;
  z-index: 2;
}

.hero-deco-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-deco-circle-2 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-deco-bar {
  width: 2px;
  height: 140px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  right: 80px;
  top: 100px;
}

.hero-deco-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  right: 40px;
  top: 240px;
}

.hero-seal {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-seal-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-seal-ring::before {
  content: 'EST. 2001';
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.7;
}

.hero-stats-float {
  position: absolute;
  bottom: 48px;
  left: 32px;
  right: 32px;
  z-index: 4;
  background: rgba(8, 22, 41, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(201, 168, 106, 0.2);
}

/* ========================================
   TRUST BAR
======================================== */
.trust-bar {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ========================================
   PRACTICE AREAS
======================================== */
.practice-areas {
  padding: var(--section-pad) 0;
  background: var(--light-bg);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.practice-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.practice-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(15, 39, 71, 0.06), rgba(15, 39, 71, 0.10));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.practice-card:hover .practice-card-icon {
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
}

.practice-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}

.practice-card:hover .practice-card-icon svg {
  stroke: var(--gold);
}

.practice-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.practice-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.practice-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.practice-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.practice-card:hover .practice-card-link {
  color: var(--gold);
}

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

/* ========================================
   ABOUT
======================================== */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: url('../images/about-us-image.webp') center / cover no-repeat;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s;
}

.about-image img.loaded {
  opacity: 1;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--dark-navy);
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-badge-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.about-content .section-title {
  text-align: left;
}

.about-body {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--success), #c5dbbe);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: #2d6a4f;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature-text {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  padding-top: 6px;
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--dark-navy);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.06) 0%, transparent 70%);
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 39, 71, 0.8) 0%, transparent 70%);
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 44px 32px;
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 106, 0.3);
  box-shadow: 0 0 40px rgba(201, 168, 106, 0.08);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.15), rgba(201, 168, 106, 0.05));
  border: 1px solid rgba(201, 168, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.25), rgba(201, 168, 106, 0.1));
  box-shadow: 0 0 24px rgba(201, 168, 106, 0.15);
}

.why-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

/* ========================================
   CASE RESULTS
======================================== */
.case-results {
  padding: var(--section-pad) 0;
  background: var(--light-bg);
  position: relative;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 44px 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.result-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.result-amount {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 16px;
}

.result-type {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

.results-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

/* ========================================
   ATTORNEYS
======================================== */
.attorneys {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.attorney-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}

.attorney-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.attorney-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1a3a5c, #081629);
  position: relative;
  overflow: hidden;
}


.attorney-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 600;
  color: rgba(201, 168, 106, 0.3);
  z-index: 1;
}

.attorney-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 22, 41, 0.9) 0%, transparent 50%);
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.attorney-card:hover .attorney-photo-overlay {
  opacity: 1;
}

.attorney-info {
  padding: 28px 32px 32px;
}

.attorney-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.attorney-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.attorney-bio {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.attorney-card .btn {
  font-size: 13px;
  padding: 12px 28px;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 1;
  color: var(--primary-navy);
  opacity: 0.06;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 106, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  stroke: none;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-case {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ========================================
   CTA
======================================== */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--primary-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.06) 0%, transparent 70%);
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 44px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-phone {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-phone svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--dark-navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 4px;
  display: block;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
}

.footer-brand .logo-tagline {
  display: block;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social:hover {
  background: rgba(201, 168, 106, 0.15);
  border-color: rgba(201, 168, 106, 0.3);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.6);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.footer-social:hover svg {
  stroke: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

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

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(201, 168, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.footer-contact-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-contact-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 13px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

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

/* ========================================
   PAGE HEROES
======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.07) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.3), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

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

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

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.7;
}

/* ========================================
   FORMS
======================================== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(15, 39, 71, 0.08);
}

.form-control::placeholder {
  color: #a0aab8;
}

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

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6475' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

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

.form-submit {
  margin-top: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-note svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Contact page specific */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 52px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.contact-info-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.office-hours {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 28px;
  margin: 32px 0;
}

.office-hours h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--text-light);
  font-weight: 500;
}

.hours-time {
  color: var(--text);
  font-weight: 600;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  border-radius: 16px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-top: 24px;
  border: 1px solid rgba(201, 168, 106, 0.15);
}

.map-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
  :root { --section-pad: 96px; }

  .hero-heading { font-size: 58px; }
  .section-title { font-size: 44px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
  :root { --section-pad: 80px; }

  .container { padding: 0 28px; }

  .section-title { font-size: 38px; }
  .page-hero-title { font-size: 50px; }

  .hero-layout { flex-direction: column; }
  .hero-left {
    flex: none;
    padding: 140px 32px 60px;
  }
  .hero-left::before { display: none; }
  .hero-right {
    flex: none;
    height: 480px;
  }
  .hero-stats-float {
    left: 20px;
    right: 20px;
    bottom: 24px;
    padding: 20px 24px;
  }
  .hero-stat-number { font-size: 28px; }
  .hero-heading { font-size: 48px; }

  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item:nth-child(2) { border-left: 1px solid var(--border); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-top: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-left: 1px solid var(--border); }

  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { bottom: -16px; right: -8px; }
  .attorneys-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .cta-title { font-size: 42px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .container { padding: 0 20px; }

  .section-title { font-size: 34px; }
  .page-hero-title { font-size: 40px; }
  .page-hero { padding: 130px 0 72px; }

  /* Header */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 90vw);
    background: var(--dark-navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px 40px;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .nav-cta {
    margin-top: 12px;
    padding: 14px 32px !important;
    font-size: 15px !important;
  }

  .hamburger {
    display: flex;
    z-index: 1100;
    position: relative;
  }

  .hero-heading { font-size: 38px; }
  .hero-subtitle { font-size: 16px; }
  .hero-right { height: 360px; }
  .hero-stats-float {
    padding: 16px 20px;
    gap: 12px;
  }
  .hero-stat-number { font-size: 22px; }
  .hero-stat-label { font-size: 10px; }
  .hero-stat-divider { height: 36px; }

  .practice-grid { grid-template-columns: 1fr; }
  .attorneys-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .contact-form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-title { font-size: 36px; }
  .about-badge { position: static; margin-top: 24px; display: inline-flex; gap: 12px; align-items: center; border-radius: 16px; }

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

@media (max-width: 576px) {
  .hero-heading { font-size: 34px; }
  .section-title { font-size: 30px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .results-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; }
  .page-hero-title { font-size: 34px; }
  .cta-title { font-size: 30px; }
  .contact-form-card { padding: 28px 20px; }

  .section-header { margin-bottom: 44px; }
}

/* Menu overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(2px);
}

.nav-overlay.active {
  display: block;
}

/* Practice areas inner page */
.practice-detail {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.practice-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.practice-detail-grid:nth-child(even) .practice-detail-image {
  order: 2;
}

.practice-detail-image {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  position: relative;
  overflow: hidden;
}

.practice-detail-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(201, 168, 106, 0.2);
  border-radius: var(--radius);
}

/* FAQ section */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--light-bg);
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: var(--transition);
}

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

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-navy);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--primary-navy);
}

.faq-item.open .faq-icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
}

/* Case results filter */
.results-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-light);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-navy);
  border-color: var(--primary-navy);
  color: var(--white);
}

/* Attorney profile page */
.attorney-profile {
  padding: var(--section-pad) 0;
}

.attorney-profile-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.attorney-profile-image {
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--primary-navy), var(--dark-navy));
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.attorney-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.credential-tag {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* Utility */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--primary-navy); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }

