/*
Theme Name: Lightning Legal
Theme URI: https://lightning-legal.com
Author: Lightning Legal
Author URI: https://lightning-legal.com
Description: Professional WordPress theme for Lightning Legal Process Service – South Florida's premier process serving company.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lightning-legal
Tags: legal, business, professional, one-page
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --white: #ffffff;
  --off: #f8f9fb;
  --navy: #0d1f3c;
  --gold: #e8a020;
  --gold-lt: #fef3e0;
  --blue: #1d4ed8;
  --blue-lt: #eff6ff;
  --text: #1a2535;
  --muted: #6b7a93;
  --border: #e4e8f0;
  --green: #16a34a;
  --green-lt: #f0fdf4;
  --red: #dc2626;
  --shadow-sm: 0 1px 12px rgba(13,31,60,0.06);
  --shadow-md: 0 4px 24px rgba(13,31,60,0.1);
  --shadow-lg: 0 8px 40px rgba(13,31,60,0.14);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 { line-height: 1.15; font-weight: 700; }

.fraunces {
  font-family: "Fraunces", Georgia, serif;
}

/* =============================================
   ALERT BAR
   ============================================= */
.alert-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.alert-bar a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.alert-pill {
  background: var(--gold);
  color: var(--navy);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 64px;
  max-width: 1440px;
  margin: 0 auto;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 32px;
}
.main-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--navy);
}

.nav-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-tel {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.nav-tel:hover { color: var(--gold); }

.nav-btn {
  background: var(--navy);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-btn:hover { background: #1a3a6a; color: var(--white); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  padding: 80px 64px 70px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

/* Full-width centered single-column hero (panel removed) */
.hero-section--full {
  grid-template-columns: 1fr !important;
  max-width: 100% !important;
  padding: 90px 0 80px !important;
}
.hero-section--full .hero-text {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.hero-section--full .hero-h1    { text-align: center; font-size: clamp(3rem, 6vw, 5.5rem); }
.hero-section--full .hero-desc  { text-align: center; max-width: 600px; font-size: 1.15rem; margin-left: auto; margin-right: auto; }
.hero-section--full .hero-ctas  { justify-content: center; }
.hero-section--full .trust-row  { justify-content: center; gap: 24px; }
.hero-section--full .hero-eyebrow { align-self: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-lt);
  border: 1px solid rgba(22,163,74,0.2);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 26px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.0;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-h1 .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
  display: inline-block;
}
.btn-navy:hover { background: #1a3a6a; color: var(--white); }

.btn-border {
  border: 1.5px solid var(--border);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-border:hover { border-color: var(--navy); }

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-chip .check { color: var(--green); font-weight: 700; }

/* Hero Panel */
.hero-panel {
  background: var(--off);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.panel-header {
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-header span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.panel-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 600;
}
.panel-body { padding: 24px 28px; }

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.stat-item { text-align: center; }
.stat-n {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
}
.stat-l {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.panel-divider { height: 1px; background: var(--border); margin: 0 0 20px; }

.svc-quick { display: flex; flex-direction: column; gap: 10px; }
.svc-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
  cursor: default;
}
.svc-quick-item:hover { border-color: var(--gold); }
.svc-icon { font-size: 1.2rem; }
.svc-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.svc-tag { font-size: 0.68rem; color: var(--muted); }
.svc-arrow { margin-left: auto; color: var(--muted); font-size: 0.9rem; }

/* =============================================
   RIBBON / FEATURES STRIP
   ============================================= */
.ribbon-section {
  background: var(--gold-lt);
  border-top: 1px solid rgba(232,160,32,0.2);
  border-bottom: 1px solid rgba(232,160,32,0.2);
  padding: 18px 64px;
}
.ribbon-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
}
.ribbon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.ribbon-icon { font-size: 1.1rem; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 90px 64px;
  background: var(--white);
}
.services-inner { max-width: 1440px; margin: 0 auto; }

.sec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.sec-h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 50px;
  letter-spacing: -0.02em;
}

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

.svc-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: default;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--gold);
}
.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.svc-em { font-size: 2rem; }
.svc-pill {
  background: var(--blue-lt);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}
.svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* =============================================
   COVERAGE SECTION
   ============================================= */
.coverage-section {
  padding: 90px 64px;
  background: var(--off);
}
.coverage-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.county-tabs { display: flex; flex-direction: column; gap: 14px; }
.county-tab {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s;
}
.county-tab:hover { border-color: var(--gold); }
.county-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.county-name { font-weight: 700; font-size: 0.97rem; color: var(--navy); }
.county-count {
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--off);
  padding: 2px 8px;
  border-radius: 4px;
}
.city-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.city-chip {
  background: var(--gold-lt);
  color: #92580a;
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 0.71rem;
  font-weight: 500;
}

.cov-visual {
  background: linear-gradient(135deg, var(--blue-lt) 0%, var(--gold-lt) 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 0.9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  gap: 14px;
  text-align: center;
  padding: 40px;
}
.cov-visual-icon { font-size: 4rem; }
.cov-visual h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
}
.cov-visual p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
  padding: 90px 64px;
  background: var(--white);
}
.process-inner { max-width: 1440px; margin: 0 auto; }

.proc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 40px;
}
.proc-header p {
  max-width: 300px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: var(--off);
  border-radius: 14px;
  padding: 28px 22px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.step:hover { border-color: var(--gold); }
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.step h4 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  padding: 90px 64px;
  background: var(--off);
}
.testimonials-inner { max-width: 1440px; margin: 0 auto; }

.testi-header { margin-bottom: 48px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.2s;
}
.testi:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testi-role { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }

/* =============================================
   CTA / CONTACT SECTION
   ============================================= */
.cta-section {
  padding: 80px 64px 80px;
}
.cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta-inner h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.cta-contact { display: flex; flex-direction: column; gap: 12px; }
.cta-contact a {
  color: var(--white);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: color 0.2s;
}
.cta-contact a:hover { color: var(--gold); }
.cta-address {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

/* Contact Form */
.cta-form {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.cf-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.cf-field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--gold); }
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.cf-field select option { background: var(--navy); color: var(--white); }

.cf-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 13px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s, transform 0.15s;
}
.cf-submit:hover { opacity: 0.9; transform: translateY(-1px); }

/* Form success / error */
.form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-top: 12px;
  display: none;
}
.form-message.success {
  background: var(--green-lt);
  color: var(--green);
  border: 1px solid rgba(22,163,74,0.25);
  display: block;
}
.form-message.error {
  background: #fef2f2;
  color: var(--red);
  border: 1px solid rgba(220,38,38,0.25);
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--off);
  border-top: 1.5px solid var(--border);
  padding: 30px 64px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img { height: 40px; width: auto; }
.footer-copy { color: var(--muted); font-size: 0.8rem; text-align: center; }
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--navy); }

/* =============================================
   INNER PAGE HERO (for sub-pages)
   ============================================= */
.page-hero {
  background: var(--navy);
  padding: 70px 64px;
  text-align: center;
}
.page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* =============================================
   SINGLE PAGE / CONTENT
   ============================================= */
.entry-content {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 40px;
  line-height: 1.8;
  color: var(--text);
}
.entry-content h2, .entry-content h3 {
  color: var(--navy);
  margin: 32px 0 12px;
  font-family: "Fraunces", Georgia, serif;
}
.entry-content p { margin-bottom: 18px; color: var(--muted); }
.entry-content a { color: var(--blue); text-decoration: underline; }

/* =============================================
   WORDPRESS ADMIN BAR OFFSET
   ============================================= */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* =============================================
   RESPONSIVE – TABLET
   ============================================= */
@media (max-width: 1100px) {
  .nav-inner { padding: 16px 32px; }
  .main-nav ul { gap: 20px; }
  .hero-section { padding: 60px 32px; gap: 40px; grid-template-columns: 1fr 400px; }
  .ribbon-section { padding: 16px 32px; }
  .ribbon-inner { gap: 32px; }
  .services-section,
  .coverage-section,
  .process-section,
  .testimonials-section { padding: 70px 32px; }
  .cta-section { padding: 0 32px 70px; }
  .cta-inner { padding: 50px 40px; }
  .site-footer { padding: 28px 32px; }
}

/* =============================================
   RESPONSIVE – MOBILE
   ============================================= */
@media (max-width: 768px) {
  .alert-bar { font-size: 0.75rem; gap: 8px; padding: 8px 16px; }

  .nav-inner { padding: 14px 20px; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1.5px solid var(--border); padding: 16px 20px; box-shadow: var(--shadow-md); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 10px 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav-right { gap: 8px; }
  .nav-btn { padding: 8px 14px; font-size: 0.8rem; }
  .nav-tel { font-size: 0.85rem; }
  .nav-toggle { display: flex; }

  .hero-section { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-panel { display: none; }

  .ribbon-inner { flex-direction: column; gap: 14px; align-items: flex-start; }
  .ribbon-section { padding: 20px; }

  .services-section,
  .process-section,
  .testimonials-section { padding: 50px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .coverage-section { padding: 50px 20px; }
  .coverage-inner { grid-template-columns: 1fr; gap: 30px; }
  .cov-visual { display: none; }

  .cta-section { padding: 0 20px 50px; }
  .cta-inner { grid-template-columns: 1fr; padding: 36px 24px; gap: 32px; }
  .cf-row { grid-template-columns: 1fr; }

  .site-footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .page-hero { padding: 50px 20px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
}

/* =============================================
   CITY LANDING PAGES
   ============================================= */

/* ── HERO ───────────────────────────────────── */
.city-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162848 100%);
  padding: 70px 64px 60px;
  position: relative;
  overflow: hidden;
}
.city-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.08), transparent 70%);
  pointer-events: none;
}
.city-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.city-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.3);
  color: #4ade80;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.city-hero-h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.city-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 28px;
}
.city-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.city-cta-call {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-size: 1rem;
  padding: 13px 28px;
}
.city-cta-call:hover { opacity: 0.9; }
.city-cta-form {
  border-color: rgba(255,255,255,0.3) !important;
  color: var(--white) !important;
}
.city-cta-form:hover { border-color: var(--gold) !important; color: var(--gold) !important; }

/* ── BREADCRUMB ─────────────────────────────── */
.city-breadcrumb {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 10px 64px;
  font-size: 0.82rem;
  color: var(--muted);
}
.city-breadcrumb-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}
.city-breadcrumb a:hover { text-decoration: underline; }

/* ── MAIN LAYOUT ────────────────────────────── */
.city-main { padding: 60px 64px 80px; }
.city-content-wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* ── ARTICLE CONTENT ────────────────────────── */
.city-entry-content { color: var(--text); }
.city-entry-content h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.city-entry-content h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--navy);
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.city-entry-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.city-entry-content p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 680px;
}
.city-entry-content a { color: var(--blue); }
.city-entry-content ul, .city-entry-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.city-entry-content li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.city-entry-content hr {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 36px 0;
}

/* ── SIDEBAR ────────────────────────────────── */
.city-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.city-sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.city-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
}

/* Sidebar form */
.city-form .cf-field { margin-bottom: 12px; }
.city-form .cf-field label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 5px;
}
.city-form .cf-field input,
.city-form .cf-field select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--off);
  color: var(--text);
  padding: 9px 12px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.city-form .cf-field input:focus,
.city-form .cf-field select:focus { border-color: var(--gold); }
.city-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s;
}
.city-submit:hover { background: #1a3a6a; }

/* Sidebar contact info */
.city-contact-info { background: var(--gold-lt); border-color: rgba(232,160,32,0.25); }
.city-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 10px;
}
.city-contact-item:last-child { margin-bottom: 0; }
.city-contact-item a { color: var(--navy); font-weight: 600; }
.city-contact-item a:hover { color: var(--gold); }

/* Sidebar service list */
.city-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.city-services-list li a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.city-services-list li:last-child a { border-bottom: none; }
.city-services-list li a:hover { color: var(--navy); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .city-hero { padding: 50px 32px 44px; }
  .city-main { padding: 40px 32px 60px; }
  .city-content-wrap { grid-template-columns: 1fr; }
  .city-sidebar { position: static; }
  .city-breadcrumb { padding: 10px 32px; }
}
@media (max-width: 640px) {
  .city-hero { padding: 40px 20px 36px; }
  .city-main { padding: 30px 20px 50px; }
  .city-hero-ctas { flex-direction: column; }
  .city-breadcrumb { padding: 10px 20px; }
}

/* =============================================
   HERO PANEL — ADDITIONAL ELEMENTS (#1 fix)
   ============================================= */
.stat-row { display: flex; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.panel-coverage-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 8px; font-weight: 700;
}
.panel-coverage-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.panel-chip {
  background: var(--gold-lt); border: 1px solid rgba(232,160,32,0.3);
  color: #92580a; padding: 3px 10px; border-radius: 5px; font-size: 0.72rem; font-weight: 600;
}
.panel-call-btn {
  display: block; width: 100%;
  background: var(--navy); color: var(--white) !important;
  text-align: center; padding: 11px 16px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.88rem; text-decoration: none !important;
  transition: background 0.2s; margin-top: 4px;
}
.panel-call-btn:hover { background: #1a3a6a; }

/* =============================================
   REVIEWS MARQUEE SECTION (#2 fix)
   ============================================= */
.reviews-section {
  padding: 80px 0 70px;
  background: var(--off);
  overflow: hidden;
}
.reviews-header {
  text-align: center;
  padding: 0 64px;
  margin-bottom: 40px;
}
.reviews-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.reviews-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.reviews-score { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.reviews-count { font-size: 0.9rem; color: var(--muted); }
.reviews-link {
  font-size: 0.85rem; font-weight: 600; color: var(--blue);
  text-decoration: none; margin-left: 4px;
}
.reviews-link:hover { text-decoration: underline; }

/* Marquee track */
.reviews-marquee-wrap {
  position: relative;
  width: 100%;
  cursor: default;
}
/* fade edges */
.reviews-marquee-wrap::before,
.reviews-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off), transparent);
}
.reviews-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off), transparent);
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ll-scroll 55s linear infinite;
  padding: 12px 20px;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes ll-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual review cards */
.review-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.review-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.review-author { font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-top: 4px; }
.review-role   { font-size: 0.75rem; color: var(--muted); }

@media (max-width: 768px) {
  .reviews-header { padding: 0 20px; }
  .reviews-marquee-wrap::before,
  .reviews-marquee-wrap::after { width: 40px; }
}

/* =============================================
   FIX #3 — HERO PANEL: COMPACT 2x2 STAT GRID
   ============================================= */
.stat-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.stat-grid-2x2 .stat-item {
  background: var(--white);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat-grid-2x2 .stat-n {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-grid-2x2 .stat-l {
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
/* Compact service list — no arrow, tighter padding */
.svc-quick .svc-quick-item {
  padding: 9px 12px;
}
/* Panel body tighter */
.hero-panel .panel-body {
  padding: 18px 20px;
}

/* =============================================
   FIX #5 — COVERAGE MAP SVG STYLING
   ============================================= */
.cov-visual {
  background: linear-gradient(160deg, #e0f2fe 0%, #dcfce7 60%, #fef3e0 100%);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 16px;
  gap: 12px;
}
.cov-visual svg {
  filter: drop-shadow(0 4px 12px rgba(13,31,60,0.1));
}
.cov-visual-caption {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.cov-visual-caption strong { color: var(--navy); }

/* =============================================
   FIX #6 — NAV PHONE / BUTTON SPACING
   ============================================= */
.nav-right {
  gap: 20px; /* was 12px */
}
/* Add a subtle separator between phone and button */
.nav-tel {
  position: relative;
  padding-right: 20px;
}
.nav-tel::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background: var(--border);
}

/* =============================================
   FIX: HERO — CENTERED FULL WIDTH (overrides moved to base section above)
   ============================================= */
/* All .hero-section--full rules are co-located with .hero-section above */

/* =============================================
   FIX: COVERAGE — SINGLE COLUMN CENTERED
   ============================================= */
.coverage-section .sec-label { display: block; text-align: center; }
.coverage-section .sec-h2   { text-align: center; }
.coverage-section .coverage-text > p { text-align: center; }
.coverage-inner {
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  grid-template-columns: unset !important;
}
.coverage-section .coverage-text { text-align: center; }
.county-tabs { max-width: 860px; margin: 0 auto; }
/* Remove the old cov-visual styles that are no longer used */
.cov-visual { display: none; }

/* Duplicate rules removed — centering handled above */

/* =============================================
   SERVICE LANDING PAGES
   ============================================= */
.svc-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6a 100%);
  padding: 60px 64px 56px;
  text-align: center;
}
.svc-page-hero-inner { max-width: 760px; margin: 0 auto; }
.svc-page-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.svc-page-icon { font-size: 3rem; margin-bottom: 12px; }
.svc-page-h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.svc-page-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.svc-page-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.svc-cta-call {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* Main layout — reuse city page layout */
.svc-page-main { padding: 60px 64px 80px; }
.svc-page-wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.svc-page-content { color: var(--text); }
.svc-page-content h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.svc-page-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 8px;
}
.svc-page-content p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 680px;
}
.svc-page-content ul, .svc-page-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.svc-page-content li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.svc-page-content hr {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 36px 0;
}
.svc-page-content a { color: var(--blue); }

/* Handle the sidebar form for service pages */
#ll-svc-form .cf-field { margin-bottom: 12px; }
#ll-svc-form .cf-field label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 5px;
}
#ll-svc-form .cf-field input,
#ll-svc-form .cf-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--off);
  color: var(--text);
  padding: 9px 12px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
#ll-svc-form .cf-field input:focus,
#ll-svc-form .cf-field textarea:focus { border-color: var(--gold); }

@media (max-width: 1024px) {
  .svc-page-hero { padding: 50px 32px 44px; }
  .svc-page-main { padding: 40px 32px 60px; }
  .svc-page-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .svc-page-hero { padding: 40px 20px 36px; }
  .svc-page-main { padding: 30px 20px 50px; }
  .svc-page-ctas { flex-direction: column; align-items: center; }
}

/* =============================================
   SERVICE CARDS — LINKED VERSION
   ============================================= */
a.svc-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
a.svc-card-link:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--gold);
  color: inherit;
}
.svc-card-cta {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
