/* ============================================
   GLS Injury Law - Global Stylesheet
   ============================================ */

:root {
  --primary-dark: #0d0d1a;
  --secondary-dark: #111827;
  --nav-dark: #0a0a14;
  --accent-red: #cc1b1b;
  --accent-red-hover: #a81515;
  --accent-yellow: #f5c518;
  --white: #ffffff;
  --light-gray: #f4f4f4;
  --mid-gray: #999999;
  --border-gray: #2a2a3a;
  --text-light: #cccccc;
  --font-main: 'Open Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-red); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: #060610;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-gray);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left span i { color: var(--accent-red); }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-right a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--border-gray);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  transition: background 0.3s;
}
.top-bar-right a:hover { background: var(--accent-red); color: #fff; }

/* ============================================
   NAVIGATION
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  height: 70px;
}
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-logo-text {
  display: flex; flex-direction: column;
  color: white; font-family: var(--font-heading);
}
.nav-logo-text span:first-child { font-size: 20px; font-weight: 800; letter-spacing: 2px; color: var(--accent-red); }
.nav-logo-text span:last-child { font-size: 10px; letter-spacing: 1.5px; color: var(--text-light); text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--accent-red); }
.nav-menu > li > a .arrow {
  font-size: 10px; margin-left: 4px; transition: transform 0.3s;
}
.nav-menu > li:hover > a .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #13131f;
  border-top: 3px solid var(--accent-red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
}
.nav-menu > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-gray);
  transition: all 0.2s;
  font-family: var(--font-heading);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--white); background: rgba(204,27,27,0.15); padding-left: 26px; }

/* Nav CTA */
.nav-cta {
  display: flex; align-items: center; gap: 16px;
}
.nav-phone {
  display: flex; flex-direction: column; align-items: flex-end;
}
.nav-phone span:first-child { font-size: 10px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }
.nav-phone a { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.nav-phone a:hover { color: var(--accent-red); }
.btn-review {
  background: var(--accent-red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.btn-review:hover { background: var(--accent-red-hover); color: #fff; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 25px; height: 3px; background: white; border-radius: 3px; transition: all 0.3s; }

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 620px;
  background: linear-gradient(135deg, #0a0a14 0%, #12121e 60%, #1a0505 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><path d="M0 60L60 0" stroke="rgba(204,27,27,0.04)" stroke-width="1"/></svg>');
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(204,27,27,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,27,27,0.15);
  border: 1px solid rgba(204,27,27,0.4);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}
.hero-badge i { font-size: 10px; }
.hero-tagline {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero h1 span.red { color: var(--accent-red); }
.hero-stat {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--accent-red);
  padding-bottom: 16px;
  margin-bottom: 24px;
  display: inline-block;
}
.hero-stat .highlight { color: var(--accent-yellow); font-size: 1.2em; }
.hero-sub {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent-red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 4px;
  border: 2px solid var(--accent-red);
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary:hover { background: var(--accent-red-hover); color: #fff; border-color: var(--accent-red-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,27,27,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: #fff; }

/* Hero Form */
.hero-form-box {
  background: rgba(255,255,255,0.97);
  border-radius: 8px;
  padding: 34px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-form-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}
.hero-form-box .form-sub {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-main);
  color: #333;
  background: #fff;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent-red); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23999'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.btn-submit {
  width: 100%;
  background: var(--accent-red);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s;
}
.btn-submit:hover { background: var(--accent-red-hover); }
.form-note { font-size: 11px; color: #888; text-align: center; margin-top: 10px; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--accent-red);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-item i { font-size: 20px; opacity: 0.9; }
.trust-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.3); }

/* ============================================
   SECTION STYLES
   ============================================ */
.section { padding: 80px 0; }
.section-dark { background: var(--secondary-dark); }
.section-darker { background: #0a0a12; }
.section-light { background: var(--light-gray); color: #1a1a1a; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-light .section-header h2 { color: #1a1a1a; }
.section-header p { font-size: 17px; color: var(--text-light); max-width: 680px; margin: 0 auto; }
.section-light .section-header p { color: #555; }
.section-header h2 .yellow { color: var(--accent-yellow); }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(204,27,27,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(204,27,27,0.12);
  border: 1px solid rgba(204,27,27,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--accent-red);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.service-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ============================================
   CASE RESULTS
   ============================================ */
.results-section {
  background: linear-gradient(180deg, #0a0a12 0%, #111020 100%);
  padding: 80px 0;
}
.results-header { text-align: center; margin-bottom: 50px; }
.results-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; text-transform: uppercase; }
.results-header h2 .yellow { color: var(--accent-yellow); }
.total-recovery {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
}
.total-recovery .amount { font-size: clamp(42px, 7vw, 80px); font-weight: 900; color: var(--white); font-family: var(--font-heading); line-height: 1; }
.total-recovery .label { font-size: 14px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-top: 8px; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.result-card {
  background: #1a1a2e;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}
.result-card .case-type { font-size: 12px; color: var(--text-light); margin-bottom: 10px; line-height: 1.4; }
.result-card .case-amount { font-size: clamp(20px, 3vw, 28px); font-weight: 900; color: var(--accent-yellow); font-family: var(--font-heading); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; text-transform: uppercase; margin-bottom: 20px; color: var(--white); }
.why-content p { color: var(--text-light); font-size: 16px; margin-bottom: 24px; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 20px;
}
.why-item-icon {
  min-width: 44px; height: 44px;
  background: rgba(204,27,27,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-red);
  font-size: 18px;
}
.why-item-text h4 { font-size: 15px; margin-bottom: 4px; color: var(--white); }
.why-item-text p { font-size: 13px; color: var(--text-light); margin: 0; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 30px 24px;
  text-align: center;
  border-top: 3px solid var(--accent-red);
}
.stat-box .stat-num { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: var(--accent-red); font-family: var(--font-heading); line-height: 1; margin-bottom: 8px; }
.stat-box .stat-label { font-size: 13px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: #0d0d1a; padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 80px;
  color: rgba(204,27,27,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: var(--accent-yellow); font-size: 16px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-heading);
}
.author-info strong { font-size: 14px; color: var(--white); display: block; }
.author-info span { font-size: 12px; color: var(--text-light); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--accent-red);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; text-transform: uppercase; margin-bottom: 16px; }
.cta-section p { font-size: 17px; max-width: 600px; margin: 0 auto 32px; opacity: 0.9; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-white {
  background: white;
  color: var(--accent-red);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 4px;
  border: 2px solid white;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-white:hover { background: transparent; color: white; }
.btn-outline-white {
  background: transparent;
  color: white;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #060610;
  padding: 70px 0 0;
  border-top: 3px solid var(--accent-red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-about p { font-size: 14px; color: var(--text-light); line-height: 1.8; margin: 16px 0 24px; }
.footer-logo-text { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: var(--accent-red); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--border-gray);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--accent-red); color: white; transform: translateY(-2px); }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-red);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-light); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--accent-red); font-size: 16px; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--accent-red); font-size: 14px; margin-top: 2px; min-width: 16px; }
.footer-contact-item span { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.footer-contact-item a { color: var(--text-light); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border-gray);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: var(--mid-gray);
}
.footer-bottom a { color: var(--text-light); }
.footer-bottom a:hover { color: var(--white); }
.footer-disclaimer {
  background: rgba(255,255,255,0.03);
  padding: 20px;
  border-radius: 6px;
  font-size: 11px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 30px;
  border: 1px solid var(--border-gray);
}

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #0a0a14 0%, #160505 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--accent-red);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><rect width="40" height="40" fill="none"/><circle cx="20" cy="20" r="1" fill="rgba(204,27,27,0.06)"/></svg>');
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--text-light); margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent-red); }
.breadcrumb span { opacity: 0.5; }
.page-hero h1 { font-size: clamp(30px, 5vw, 52px); font-weight: 900; text-transform: uppercase; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--text-light); max-width: 680px; margin: 0 auto 28px; }

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.content-section { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: start; }
.content-main h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--white); margin-bottom: 16px; margin-top: 40px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; margin-top: 32px; }
.content-main p { font-size: 15px; color: var(--text-light); line-height: 1.85; margin-bottom: 18px; }
.content-main ul { margin: 0 0 18px 0; }
.content-main ul li {
  font-size: 15px; color: var(--text-light); line-height: 1.7;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.content-main ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-red); font-weight: 700; }
.highlight-box {
  background: rgba(204,27,27,0.08);
  border-left: 4px solid var(--accent-red);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.highlight-box p { margin: 0; font-size: 16px; color: var(--white); font-style: italic; }
.highlight-box strong { color: var(--accent-red); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  overflow: hidden;
}
.sidebar-card-header {
  background: var(--accent-red);
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sidebar-card-body { padding: 20px; }
.sidebar-form .form-group { margin-bottom: 12px; }
.sidebar-form .form-group input,
.sidebar-form .form-group select,
.sidebar-form .form-group textarea {
  width: 100%;
  padding: 11px 13px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.3s;
}
.sidebar-form .form-group input::placeholder,
.sidebar-form .form-group textarea::placeholder { color: #888; }
.sidebar-form .form-group input:focus,
.sidebar-form .form-group textarea:focus { border-color: var(--accent-red); }
.sidebar-form .form-group select { color: #888; }
.sidebar-form .form-group select option { background: #1a1a2e; color: white; }
.sidebar-form textarea { resize: vertical; min-height: 90px; }
.sidebar-phone {
  text-align: center;
  padding: 24px 20px;
}
.sidebar-phone .ph-icon { font-size: 30px; color: var(--accent-red); margin-bottom: 10px; }
.sidebar-phone .ph-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.sidebar-phone a { font-size: 22px; font-weight: 800; font-family: var(--font-heading); color: var(--white); display: block; }
.sidebar-phone a:hover { color: var(--accent-red); }
.sidebar-phone .ph-hours { font-size: 11px; color: #888; margin-top: 6px; }
.sidebar-services ul li { border-bottom: 1px solid var(--border-gray); }
.sidebar-services ul li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-light);
  transition: color 0.2s;
}
.sidebar-services ul li a:hover { color: var(--accent-red); }
.sidebar-services ul li a span { color: var(--accent-red); font-size: 16px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.team-img {
  height: 220px;
  background: linear-gradient(135deg, #1a1a2e, #2a1a2e);
  display: flex; align-items: center; justify-content: center;
  font-size: 70px;
  color: rgba(204,27,27,0.3);
}
.team-info { padding: 22px; }
.team-info h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-info span { font-size: 13px; color: var(--accent-red); font-weight: 600; display: block; margin-bottom: 10px; }
.team-info p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 42px; color: var(--accent-red); margin-bottom: 16px; }
.value-card h3 { font-size: 17px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-light); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form-wrap, .contact-info-wrap { }
.contact-form-wrap h2, .contact-info-wrap h2 { font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 24px; color: var(--white); }
.big-form .form-group { margin-bottom: 16px; }
.big-form .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.big-form .form-group input,
.big-form .form-group select,
.big-form .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border-gray);
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.3s;
}
.big-form .form-group input:focus,
.big-form .form-group textarea:focus { border-color: var(--accent-red); }
.big-form .form-group input::placeholder,
.big-form .form-group textarea::placeholder { color: #666; }
.big-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.big-form textarea { resize: vertical; min-height: 130px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  margin-bottom: 16px;
}
.contact-info-icon {
  min-width: 50px; height: 50px;
  background: rgba(204,27,27,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--accent-red);
}
.contact-info-text h4 { font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.contact-info-text p, .contact-info-text a { font-size: 15px; color: var(--text-light); line-height: 1.6; }
.contact-info-text a:hover { color: var(--accent-red); }
.map-embed { border-radius: 10px; overflow: hidden; border: 1px solid var(--border-gray); margin-top: 24px; }
.map-embed iframe { display: block; width: 100%; height: 300px; border: 0; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.hours-item { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-item .day { color: var(--text-light); }
.hours-item .time { color: var(--accent-red); font-weight: 600; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; position: relative; }
.process-step {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 16px; margin-bottom: 10px; color: var(--white); }
.process-step p { font-size: 13px; color: var(--text-light); }

/* ============================================
   PRACTICE AREA INTRO
   ============================================ */
.practice-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.practice-intro-img {
  background: linear-gradient(135deg, #1a1a2e, #2a0a0a);
  border-radius: 10px;
  height: 360px;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
  color: rgba(204,27,27,0.2);
  border: 1px solid var(--border-gray);
}

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--white);
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-question .faq-icon { color: var(--accent-red); font-size: 20px; min-width: 20px; }
.faq-answer { padding: 0 20px 18px; font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-form-box { max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .practice-intro { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn-review { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar-left { flex-direction: column; align-items: flex-start; gap: 4px; }
  .trust-bar .container { gap: 20px; }
  .trust-divider { display: none; }
  .hero { padding: 40px 0; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .big-form .form-row { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; }
  .results-grid { grid-template-columns: 1fr; }
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--nav-dark);
  z-index: 999;
  overflow-y: auto;
  padding: 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul li { border-bottom: 1px solid var(--border-gray); }
.mobile-nav ul li a {
  display: block;
  padding: 14px 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
}
.mobile-nav ul li.sub a {
  padding-left: 24px;
  font-size: 13px;
  color: var(--text-light);
  text-transform: none;
}
.mobile-nav ul li.sub a:hover { color: var(--accent-red); }
.mobile-nav .mobile-cta { margin-top: 20px; }
.mobile-nav .mobile-cta a { display: block; text-align: center; margin-bottom: 12px; }
