/* ============================================================
   JIMMY ARDOIN & ASSOCIATES — GLOBAL STYLES
   ============================================================ */

/* --- Variables --- */
:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --gray: #8892a4;
  --light: #f8f9fb;
  --text: #1a2336;
  --border: #d1d9e6;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 8px 48px rgba(10, 22, 40, 0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.22s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { margin-bottom: 0.5rem; }
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* --- Layout Utilities --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 5rem 0;
}
.section-light { background: var(--light); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p,
.section-dark .section-sub { color: #a8b3c4; }
.section-dark .eyebrow { color: var(--gold); }
.section-navy-mid { background: var(--navy-mid); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* --- Top Bar --- */
.top-bar {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.top-bar a { color: var(--gold); }
.top-bar a:hover { color: var(--gold-light); }

/* --- Navigation --- */
.site-nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(10,22,40,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
  gap: 1rem;
}
.nav-logo img {
  height: 60px;
  width: auto;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav-firm-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  white-space: nowrap;
}
.nav-firm-name em {
  font-style: normal;
  color: var(--gold);
}
/* Honeypot anti-bot field */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li {
  position: relative;
}
.nav-links a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  display: block;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.06); }
.nav-phone {
  color: var(--navy) !important;
  font-size: 0.88rem;
  font-weight: 700;
}
.nav-phone:hover { color: var(--gold) !important; }

/* Dropdown */
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  z-index: 100;
  overflow: hidden;
}
.dropdown-menu a {
  padding: 0.75rem 1.25rem;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--light); }
.nav-links > li:hover .dropdown-menu,
.nav-links > li.open .dropdown-menu { display: block; }

/* CTA Nav Button */
.btn-nav {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
  transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.65rem 0;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-nav {
  display: block;
  margin-top: 1rem;
  text-align: center;
  padding: 0.75rem !important;
  border-radius: var(--radius) !important;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.03em;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--gold-light); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* --- Hero --- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content p { color: #a8b3c4; font-size: 1.08rem; margin-bottom: 2rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: #8892a4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  display: block;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}
.hero-form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.hero-form-card .form-sub {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

/* Sub-page hero (simpler) */
.hero-sub {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  position: relative;
}
.hero-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.hero-sub .container { position: relative; }
.hero-sub h1 { color: var(--white); margin-bottom: 1rem; }
.hero-sub p { color: #a8b3c4; font-size: 1.06rem; max-width: 720px; }
.hero-sub .btn-group { margin-top: 1.75rem; }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--navy-mid);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.stats-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: #8892a4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  display: block;
  max-width: 120px;
}

/* --- Cards --- */
.practice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.practice-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-card .card-icon { font-size: 2rem; margin-bottom: 1rem; }
.practice-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.practice-card p { color: var(--gray); font-size: 0.92rem; margin-bottom: 1.25rem; }
.practice-card a.card-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold);
}
.practice-card a.card-link:hover { color: var(--gold-light); }

.why-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
}
.why-card .card-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.why-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-card p { color: #8892a4; font-size: 0.9rem; }

.result-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--gold);
}
.result-card .result-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}
.result-card .result-label {
  font-size: 0.88rem;
  color: #8892a4;
}

.case-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 3px solid var(--gold);
}
.case-card h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.case-card p { color: #a8b3c4; font-size: 0.92rem; }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
}
.testimonial-card p { color: var(--gray); font-style: italic; padding-top: 1.5rem; }
.testimonial-card .t-name { font-weight: 700; color: var(--navy); font-size: 0.88rem; margin-top: 1rem; }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { font-size: 0.78rem; color: var(--gray); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 1rem; }
.blog-card a.read-more { font-size: 0.85rem; font-weight: 700; color: var(--gold); }

/* --- Media Bar --- */
.media-bar {
  background: var(--light);
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.media-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.media-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}
.media-outlet {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #8892a4;
  opacity: 0.75;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.media-outlet:hover { opacity: 1; color: var(--navy); }

/* --- Awards Bar --- */
.awards-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.award-badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* --- About Snippet --- */
.about-snippet {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: center;
}
.about-snippet img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea {
  min-height: 90px;
  resize: vertical;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892a4' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.03em;
}
.form-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.form-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}
.form-message.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #15803d;
}
.form-message.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  color: #b91c1c;
}
.form-privacy {
  font-size: 0.73rem;
  color: var(--gray);
  margin-top: 0.5rem;
  text-align: center;
}

/* Dark-bg form */
.form-dark .form-group label { color: #a8b3c4; }
.form-dark .form-group input,
.form-dark .form-group select,
.form-dark .form-dark textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.form-dark .form-group input::placeholder { color: #8892a4; }

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  gap: 1rem;
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* --- What We Handle Grid --- */
.handle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.handle-item {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.handle-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.handle-item span { color: #a8b3c4; font-size: 0.9rem; }

/* --- Contact Two-Column --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-detail .detail-icon {
  font-size: 1.25rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.contact-detail .detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-detail .detail-value {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}
.contact-detail a.detail-value { color: var(--navy); }
.contact-detail a.detail-value:hover { color: var(--gold); }

/* --- Results Page --- */
.results-category { margin-bottom: 3rem; }
.results-category h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.result-list { display: flex; flex-direction: column; gap: 1rem; }
.result-entry {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.result-entry .result-verdict {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.result-entry .result-desc { color: #a8b3c4; font-size: 0.9rem; }

/* --- Credentials List --- */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  font-size: 0.9rem;
  color: #a8b3c4;
}
.credential-item::before { content: '⚖️'; font-size: 0.8rem; flex-shrink: 0; }

/* --- Disclaimer --- */
.disclaimer {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: #8892a4;
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: #8892a4; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: #8892a4;
  font-size: 0.87rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col .footer-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.35rem;
}
.footer-col .footer-email { font-size: 0.87rem; color: #8892a4; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: #8892a4;
}
.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 0.73rem;
  color: #8892a4;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* --- Urgency / When to Call Section --- */
.urgency-section {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 2rem;
}
.urgency-section h3 { color: var(--white); margin-bottom: 1rem; }
.urgency-list { margin: 1rem 0; }
.urgency-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: #a8b3c4;
}
.urgency-item::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.urgency-quote {
  font-style: italic;
  color: var(--gold-light);
  margin-top: 1.25rem;
  font-size: 0.92rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--gold);
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--navy); margin-bottom: 0.75rem; }
.cta-section p { color: rgba(10,22,40,0.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-section .btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.cta-section .btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}
.cta-section .btn-outline {
  color: var(--navy);
  border-color: rgba(10,22,40,0.4);
}
.cta-section .btn-outline:hover {
  background: rgba(10,22,40,0.1);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-form-card {
    position: static;
    max-width: 540px;
    margin: 0 auto;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .about-snippet {
    grid-template-columns: 1fr;
  }
  .about-snippet img {
    max-width: 320px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .handle-grid {
    grid-template-columns: 1fr 1fr;
  }
  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone-desktop { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-stats { gap: 1.25rem; }
  .stats-bar-inner { gap: 2rem; }
  .handle-grid { grid-template-columns: 1fr; }
  .result-entry { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0.75rem 1.25rem; }
  .section { padding: 3.5rem 0; }
  .hero-stats { justify-content: space-between; }
  .hero-stat-num { font-size: 1.5rem; }
  .awards-bar .award-badge { font-size: 0.72rem; padding: 0.4rem 0.9rem; }
  .media-bar-inner { gap: 1.25rem; }
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-detail-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}
.contact-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.contact-value-link {
  color: var(--navy);
  font-size: 1.05rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-value-link:hover { color: var(--gold); }
.contact-value-text {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== BLOG PAGE ===== */
.blog-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--gold);
  border-radius: 2px;
  padding: 2rem 2rem 1.75rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.blog-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.blog-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-tag.trucking { background: #fff3e0; color: #b45309; }
.blog-tag.federal  { background: #ede9fe; color: #5b21b6; }
.blog-tag.business { background: #e0f2fe; color: #0369a1; }
.blog-date  { color: var(--gray); }
.blog-author { color: var(--gray); font-style: italic; }
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-excerpt {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.blog-read-more {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.55rem 1.25rem;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE: CONTACT & BLOG ===== */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}
