/* Dumpster Rental Pros - Multi-Archetype Industrial Engine */
:root {
  --primary-navy: #0f172a;
  --primary-slate: #1e293b;
  --secondary-slate: #334155;
  --amber-accent: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fef3c7;
  --emerald-green: #10b981;
  --emerald-dark: #059669;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.12), 0 10px 10px -5px rgba(0,0,0,0.04);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
}

/* TOP ANNOUNCEMENT BAR */
.top-ticker {
  background: var(--theme-primary, #0f172a);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.top-ticker a {
  color: var(--theme-accent, #f59e0b);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--theme-primary, #0f172a);
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-title span {
  color: var(--theme-accent, #ea580c);
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-links a {
  color: var(--secondary-slate);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--theme-accent, #ea580c);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* PHONE BADGE - NEVER WRAPS TEXT */
.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--theme-badge-bg, #fff7ed);
  color: var(--theme-badge-text, #9a3412);
  padding: 9px 18px;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  border: 1px solid var(--theme-badge-border, #fed7aa);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.phone-badge:hover {
  background: var(--theme-badge-border, #fed7aa);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--theme-btn, #ea580c);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary:hover {
  background: var(--theme-btn-hover, #c2410c);
  transform: translateY(-1px);
}

/* HERO SECTION */
.hero {
  background: var(--theme-hero-bg, linear-gradient(135deg, #0f172a 0%, #1e293b 100%));
  color: #ffffff;
  padding: 56px 24px 68px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--theme-accent, #f59e0b);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--theme-accent, #f59e0b);
}

.hero p {
  font-size: 1.12rem;
  color: #e2e8f0;
  margin-bottom: 28px;
  max-width: 640px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-feature-item {
  display: flex;
  align-items: center;
}

.hero-photo-preview {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255, 255, 255, 0.14);
  margin-top: 24px;
  position: relative;
  max-height: 220px;
}

.hero-photo-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hero-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92), transparent);
  padding: 16px 20px 12px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-photo-tag {
  background: var(--theme-accent, #f59e0b);
  color: #0f172a;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* QUOTE CARD */
.quote-card {
  background: #ffffff;
  color: var(--text-dark);
  padding: 32px 28px;
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  border-top: 6px solid var(--theme-accent, #f59e0b);
}

.quote-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--theme-primary, #0f172a);
}

.quote-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-slate);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--theme-accent, #ea580c);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-quote {
  width: 100%;
  background: var(--theme-accent, #f59e0b);
  color: #ffffff;
  font-weight: 800;
  padding: 14px;
  font-size: 1.05rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
}

.btn-quote:hover {
  background: var(--theme-btn-hover, #c2410c);
  transform: translateY(-1px);
}

/* SECTION COMMON */
.section {
  padding: 72px 24px;
}

.section-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-subtitle {
  color: var(--theme-accent, #ea580c);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--theme-primary, #0f172a);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* SIZING GUIDE GRID */
.sizing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.sizing-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.sizing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--theme-accent, #ea580c);
}

.sizing-card.popular {
  border: 2px solid var(--theme-accent, #ea580c);
  background: #fffdfa;
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--theme-accent, #ea580c);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.sizing-img-wrap {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #e2e8f0;
}

.sizing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sizing-card:hover .sizing-img-wrap img {
  transform: scale(1.05);
}

.sizing-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sizing-header {
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.sizing-name {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--theme-primary, #0f172a);
}

.sizing-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--theme-accent, #ea580c);
  text-transform: uppercase;
}

.sizing-specs {
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--primary-slate);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.sizing-uses-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sizing-uses-list {
  list-style: none;
  font-size: 0.84rem;
  color: var(--secondary-slate);
  margin-bottom: 18px;
  flex-grow: 1;
}

.sizing-uses-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
}

.sizing-dispatch-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--theme-badge-bg, #ecfdf5);
  color: var(--theme-badge-text, #065f46);
  border: 1px solid var(--theme-badge-border, #a7f3d0);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 12px;
}

.sizing-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--theme-btn, #ea580c);
  color: #ffffff;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
  box-shadow: var(--shadow-sm);
}

.sizing-action-btn:hover {
  background: var(--theme-btn-hover, #c2410c);
  transform: translateY(-1px);
}

.stock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}


/* REAL JOB GALLERY SECTION */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-info {
  padding: 18px 20px;
}

.gallery-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--theme-primary, #0f172a);
  margin-bottom: 6px;
}

.gallery-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* LOCAL PAGE SPECIFIC NAP */
.local-hero-details {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 22px;
  box-shadow: var(--shadow-md);
  margin-top: 22px;
}

.local-nap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nap-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.nap-item svg {
  color: var(--theme-accent, #ea580c);
  flex-shrink: 0;
  margin-top: 2px;
}

.nap-label {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nap-val {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--theme-primary, #0f172a);
}

/* PROHIBITED MATERIALS BANNER */
.prohibited-box {
  background: #fef2f2;
  border-left: 5px solid #ef4444;
  padding: 24px;
  border-radius: 0 8px 8px 0;
}

.prohibited-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #991b1b;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.prohibited-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.prohibited-tag {
  background: #fee2e2;
  color: #b91c1c;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* 4-STEP RENTAL PROCESS (HOW ROLL-OFF WORKS) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 32px 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--theme-accent, #f59e0b);
}

.step-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--theme-accent, #f59e0b);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--theme-badge-bg, #fff7ed);
  border: 1px solid var(--theme-badge-border, #fed7aa);
  color: var(--theme-accent, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--theme-primary, #0f172a);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* LOCATIONS DIRECTORY & REGIONAL NEARBY DEPOTS */
.locations-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
}

.search-box-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto 44px;
}

.search-icon-inside {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 54px;
  border: 2px solid var(--border-color);
  border-radius: 9999px;
  font-size: 1.02rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.search-input:focus {
  border-color: var(--theme-accent, #f59e0b);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.state-group {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.state-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--theme-primary, #0f172a);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}

.city-link-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.city-link-card:hover {
  background: #ffffff;
  border-color: var(--theme-accent, #f59e0b);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.city-link-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--theme-primary, #0f172a);
}

.city-link-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 3px;
}

/* ARCHETYPE SPECIFIC ACCENTS */
body.arch-industrial .hero-badge {
  border-left: 4px solid var(--theme-accent);
}
body.arch-eco .hero-badge {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
}
body.arch-residential .hero-badge {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
}
body.arch-logistics .hero-badge {
  background: rgba(2, 132, 199, 0.15);
  border-color: rgba(2, 132, 199, 0.4);
}

/* LOCAL NEIGHBORHOODS SECTION */
.neighborhoods-wrap {
  margin-top: 28px;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.neighborhoods-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--theme-primary, #0f172a);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.neighborhoods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.neighborhood-pill {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--secondary-slate);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.neighborhood-pill:hover {
  border-color: var(--theme-accent);
  color: var(--theme-accent);
  transform: translateY(-1px);
}

/* MUNICIPAL PERMIT & RIGHT-OF-WAY SECTION */
.permit-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.permit-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.permit-card h4 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--theme-primary, #0f172a);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.permit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FACILITY & DIVERSION STANDARDS */
.facility-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--theme-accent, #ea580c);
  border-radius: 0 12px 12px 0;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  max-width: 960px;
  margin: 0 auto;
}

.facility-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--theme-primary, #0f172a);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.facility-notes {
  font-size: 0.94rem;
  color: var(--primary-slate);
  line-height: 1.6;
  margin-bottom: 14px;
}

.climate-note {
  background: var(--bg-light);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--secondary-slate);
  border: 1px solid var(--border-color);
}

/* LOCAL CITY FAQS SECTION */
.faqs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  border-color: var(--theme-accent, #ea580c);
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--theme-primary, #0f172a);
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: var(--theme-primary, #0f172a);
  color: #94a3b8;
  padding: 64px 24px 24px;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--theme-accent, #ea580c);
}

.footer-bottom {
  max-width: 1320px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    gap: 14px;
    font-size: 0.88rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 2.15rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .local-nap-grid {
    grid-template-columns: 1fr;
  }
  .top-ticker {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .phone-badge {
    padding: 7px 12px;
    font-size: 0.88rem;
  }
}
