/* ===================================
   CSS RESET & ROOT
   =================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1B1F4B;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
/* ===================================
   CSS VARIABLES
   =================================== */
:root {
  --navy:       #1B1F4B;
  --navy-dark:  #0F1230;
  --navy-light: #2E3471;
  --red:        #C41E2A;
  --red-hover:  #A51824;
  --white:      #FFFFFF;
  --gray-light: #F4F5F9;
  --gray-mid:   #6B7080;
  --border:     #E0E3EE;
}
/* ===================================
   UTILITIES
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 1;
  color: var(--white);
  margin-top: 3px;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.btn-secondary:hover { background: var(--white); color: var(--navy); }
@media (max-width: 768px) {
  .btn-secondary { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border-color: rgba(255,255,255,0.8); }
}
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 600px;
  margin-bottom: 40px;
}
/* ===================================
   ANNOUNCEMENT BAR
   =================================== */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.announcement-bar a {
  color: #FFD700;
  text-decoration: underline;
}
/* ===================================
   STICKY HEADER
   =================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27,31,75,0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px clamp(20px, 3vw, 48px);
  width: 100%;
  max-width: none;
  margin: 0 auto;
  gap: 18px;
}
.header-logo img {
  height: 68px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.header-nav a:not(.header-cta) {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  position: relative;
  white-space: nowrap;
}
.header-nav a:not(.header-cta):hover { background: var(--gray-light); color: var(--red); }
/* Mega dropdown navigation */
.nav-item { position: relative; }
.nav-item > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.65;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(27,31,75,0.18);
  border: 1px solid var(--border);
  z-index: 100;
  padding: 8px 0;
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--gray-light); color: var(--red); }
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu { display: block; }
.mega-menu {
  left: 50%;
  transform: translateX(-50%);
  width: min(780px, calc(100vw - 48px));
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  padding: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.mega-menu-residential {
  left: 0;
  transform: none;
}
.mega-menu.mega-menu-compact {
  width: min(560px, calc(100vw - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu { display: grid; }
.mega-menu::before,
.dropdown-compact::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.mega-menu-column {
  min-width: 0;
}
.mega-menu-heading {
  display: block;
  margin: 0 0 8px;
  padding: 0 10px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.mega-menu a {
  padding: 9px 10px;
  border-radius: 6px;
  line-height: 1.25;
  white-space: normal;
}
.mega-menu a:hover { background: var(--gray-light); color: var(--red); }
.dropdown-compact {
  border-radius: 8px;
  padding: 8px;
}
.dropdown-compact a {
  border-radius: 6px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  white-space: nowrap;
}
.header-phone-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.header-phone-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-mid);
  letter-spacing: 0.01em;
}
.header-phone:hover .header-phone-num { color: var(--red); }
.header-cta {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 9px 18px;
  margin-left: 10px;
}
/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-junk-removal-1800.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.32;
}
/* Desktop: anchor the hero photo to the bottom so the truck, junk pile,
   and flag sit above the fold instead of being cropped off. Mobile keeps
   the default centered crop. */
@media (min-width: 769px) {
  .hero-bg { background-position: center bottom; }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  padding: 100px 80px 100px 80px;
}
.hero-text-block {
  max-width: 640px;
}
@media (max-width: 1100px) {
  .hero-content { padding: 80px 60px; }
}
@media (max-width: 768px) {
  .hero-bg { background-image: url('/images/hero-junk-removal-1200.jpg'); }
  /* Hero layout */
  .hero { min-height: auto; }
  .hero-content {
    padding: 56px 24px 80px !important;
    max-width: 100% !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text-block { max-width: 100%; text-align: center; }
  .hero-badge { margin: 0 auto 20px; }
  .hero h1 { white-space: normal !important; font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  .hero-sub { margin: 0 auto 28px; text-align: center; }

  /* Buttons — stacked, full width */
  .hero-ctas {
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
    max-width: 100% !important;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: nowrap;
    text-align: center;
  }

  /* Trust — 2 columns centered */
  .hero-trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    flex-wrap: unset !important;
    gap: 10px 16px !important;
    width: 100%;
    max-width: 320px !important;
    margin: 0 auto !important;
    justify-items: center;
  }
  .hero-trust .trust-item {
    font-size: 0.75rem !important;
    font-weight: 700;
    gap: 5px !important;
    white-space: nowrap;
    justify-content: center;
  }
  .hero-trust .trust-item .icon {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0;
  }

  .hero-phone-display { margin: 0 auto; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,30,42,0.15);
  border: 1px solid rgba(196,30,42,0.4);
  color: #FF6B74;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero h1 .accent { color: var(--red); display: block; }
@media (max-width: 600px) {
  .hero h1 { white-space: normal; font-size: clamp(1.8rem, 7vw, 2.4rem); }
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: nowrap;
  margin-bottom: 36px;
  width: 100%;
  max-width: 800px;
}
.hero-ctas .btn-primary,
.hero-ctas .btn-secondary {
  white-space: nowrap;
  flex: 1;
  text-align: center;
}
.hero-trust {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  max-width: 800px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-item .icon {
  width: 20px;
  height: 20px;
  color: #FFD700;
  flex-shrink: 0;
}
.hero-phone-display {
  background: rgba(27,31,75,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.hero-phone-display .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.hero-phone-display .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero-phone-display .number:hover { color: #FFD700; }
/* ===================================
   TRUST BADGES BAR
   =================================== */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.trust-badge span { white-space: nowrap; }
.trust-badge:hover { color: #FFD700; }
.trust-badge:last-child { border-right: none; }
.trust-badge svg {
  flex-shrink: 0;
  color: #FFD700;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
  }
  .trust-badge {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding: 14px 6px;
    font-size: 0.68rem;
    justify-content: center;
    white-space: nowrap;
    gap: 5px;
    letter-spacing: -0.01em;
  }
  .trust-badge svg, .trust-badge img { width: 16px !important; height: 16px !important; flex-shrink: 0; }
  .trust-badge:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.10); }
  .trust-badge:nth-last-child(-n+2) { border-bottom: none; }
}
/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
  padding: 80px 0;
  background: var(--gray-light);
}
.how-it-works .container { text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.666% + 30px);
  right: calc(16.666% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 16px rgba(27,31,75,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(27,31,75,0.12); }
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.95rem; color: var(--gray-mid); line-height: 1.6; }
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}
/* ===================================
   SERVICES SECTION
   =================================== */
.services {
  padding: 90px 0;
  background: var(--white);
}
.services .section-title,
.services .section-label,
.services .section-subtitle { text-align: center; }
.services .section-subtitle { margin: 0 auto 48px; }
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.service-category {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,31,75,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-category:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,31,75,0.14); }
.service-cat-header {
  background: var(--navy);
  padding: 28px 32px;
  color: var(--white);
}
.service-cat-header.commercial { background: var(--red); }
.service-cat-header .cat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 8px;
}
.service-cat-header h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.service-cat-header p { font-size: 0.9rem; color: rgba(255,255,255,0.92); margin-top: 6px; }
.service-cat-body {
  background: var(--white);
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-cat-body .service-list {
  flex: 1;
}
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 24px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-cat-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.service-cat-link:hover { gap: 10px; }
@media (max-width: 768px) {
  .services-split { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
}
/* ===================================
   ZIP CODE CHECKER
   =================================== */
.availability-section {
  padding: 70px 0;
  background: var(--navy);
}
.availability-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.availability-inner .section-label { color: rgba(255,255,255,0.5); }
.availability-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.availability-inner p { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 1rem; }
.zip-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 20px;
}
@media (max-width: 480px) {
  .zip-form { flex-direction: column; }
  .zip-input { text-align: left; }
  #zipBtn { width: 100%; }
}
.zip-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  letter-spacing: 0.05em;
  text-align: center;
  transition: border-color 0.2s;
  outline: none;
}
.zip-input::placeholder { color: rgba(255,255,255,0.35); font-weight: 400; letter-spacing: 0; }
.zip-input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.12); }
.zip-result {
  font-size: 1rem;
  font-weight: 700;
  padding: 12px;
  border-radius: 4px;
  margin-top: 12px;
  display: none;
}
.zip-result.success {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: #4ade80;
}
.zip-result.error {
  background: rgba(196,30,42,0.15);
  border: 1px solid rgba(196,30,42,0.4);
  color: #F87171;
}
.zip-result.show { display: block; }
/* Service Area Modal */
.service-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 31, 75, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.service-modal.show { display: flex; }
.service-modal-content {
  background: white;
  border-radius: 12px;
  padding: 40px 32px;
  max-width: 500px;
  margin: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(27, 31, 75, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.service-modal h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-modal p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 24px;
  line-height: 1.6;
}
.service-modal .modal-phone {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  margin: 16px 0 24px;
  display: block;
}
.service-modal .modal-phone:hover { text-decoration: underline; }
.modal-close {
  background: var(--gray-light);
  color: var(--navy);
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: #E0E3EE; }
.success-modal-content {
  background: white;
  border-radius: 12px;
  padding: 40px 32px;
  max-width: 500px;
  margin: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(27, 31, 75, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}
.success-modal-content .modal-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.success-modal-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #166534;
  margin-bottom: 12px;
}
.success-modal-content p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 24px;
  line-height: 1.6;
}
.modal-cta-green {
  display: inline-block;
  background: #16a34a;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
  width: 100%;
  transition: background 0.2s;
}
.modal-cta-green:hover { background: #15803d; }
.availability-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  margin: 20px auto;
  max-width: 460px;
}
.availability-divider::before,
.availability-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.38);
}
.llm-rw-author-date, .llm-rw-powered, .llm-rw-powered * { color: #4B5563 !important; }
/* ===================================
   SOCIAL PROOF / REVIEWS
   =================================== */
.social-proof {
  padding: 90px 0;
  background: var(--white);
}
.social-proof .section-title,
.social-proof .section-label { text-align: center; }
.stars-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
}
.stars-badge .stars { color: #F59E0B; font-size: 1.4rem; letter-spacing: 2px; }
.stars-badge .review-count {
  font-size: 0.9rem;
  color: var(--gray-mid);
  font-weight: 600;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: 0 6px 24px rgba(27,31,75,0.10); }
.review-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.review-author span {
  font-weight: 400;
  color: var(--gray-mid);
  display: block;
  font-size: 0.8rem;
  margin-top: 2px;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-mid);
  margin-bottom: 40px;
}
.google-badge svg { color: #4285F4; }
.reviews-cta { text-align: center; margin-top: 40px; }
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
/* ===================================
   SERVICE AREAS
   =================================== */
.service-areas {
  padding: 80px 0;
  background: var(--gray-light);
}
.service-areas .section-title,
.service-areas .section-label,
.service-areas .section-subtitle { text-align: center; }
.service-areas .section-subtitle { margin: 0 auto 40px; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.city-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
}
.city-chip:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-areas-cta { text-align: center; }
@media (max-width: 768px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===================================
   ABOUT BLURB
   =================================== */
.about-blurb {
  padding: 90px 0;
  background: var(--white);
}
.about-blurb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image-stack {
  position: relative;
}
.about-img-main {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 56%;
  border-radius: 10px;
  border: 4px solid var(--white);
  box-shadow: 0 8px 30px rgba(27,31,75,0.15);
  aspect-ratio: 3/2;
  object-fit: cover;
}
.veteran-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(27,31,75,0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}
.veteran-badge .flag { font-size: 1.2rem; }
.about-content .section-title { text-align: left; }
.about-content .section-label { text-align: left; }
.about-body {
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-points {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-icon::after {
  content: '✓';
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
}
@media (max-width: 900px) {
  .about-blurb-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-secondary { display: none; }
  .veteran-badge { top: 12px; left: 12px; }
}
/* ===================================
   BOTTOM CTA BAND
   =================================== */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2E1A1A 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5" x="0" y="0" width="100" height="100"/></svg>');
}
.cta-band-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* "Call Us" CTA only makes sense on mobile (tap-to-call); hide on desktop.
   The remaining "Book Your Free Estimate" button stays centered via
   justify-content: center above. */
@media (min-width: 769px) {
  .cta-band-buttons .cta-call-mobile { display: none; }
}
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.cta-phone-big:hover { color: #FFD700; }
/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(10) grayscale(1);
  opacity: 0.9;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.footer-contact-item a { color: var(--white); font-weight: 600; }
.footer-contact-item a:hover { color: #FFD700; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}
.social-icon:hover { background: var(--red); color: var(--white); }
.social-icon svg { width: 18px; height: 18px; display: block; fill: currentColor; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.footer-heading {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.72); }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* ===================================
   MOBILE STICKY CALL BAR
   =================================== */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--navy);
  box-shadow: 0 -4px 20px rgba(27,31,75,0.3);
}
.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: opacity 0.15s;
}
.mobile-sticky-btn:hover { opacity: 0.9; }
.mobile-sticky-btn.call { background: var(--red); }
.mobile-sticky-btn.text { background: var(--navy-light); }
@media (max-width: 900px) {
  .mobile-sticky { display: block; }
  body { padding-bottom: 60px; }
}
/* ===================================
   HAMBURGER (MOBILE NAV)
   =================================== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-header {
  background: var(--gray-light);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: block; }
}
@media (max-width: 900px) {
  .header-phone-sub { display: none; }
  .header-phone-num { font-size: 1.05rem; }
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--navy:#1B1F4B;--navy-dark:#0F1230;--navy-light:#2E3471;--red:#C41E2A;--red-hover:#A51824;--white:#FFFFFF;--gray-light:#F4F5F9;--gray-mid:#6B7080;--border:#E0E3EE}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.btn-outline{display:inline-block;background:transparent;color:var(--white);font-weight:700;font-size:1rem;padding:15px 30px;border-radius:4px;text-transform:uppercase;letter-spacing:.05em;border:2px solid var(--white);cursor:pointer;transition:background .2s,color .2s;text-align:center}
.btn-outline:hover{background:var(--white);color:var(--navy)}
/* Announcement */
.announcement-bar{background:var(--navy);color:var(--white);text-align:center;padding:10px 20px;font-size:.85rem;font-weight:600}
/* Header */
.site-header{position:sticky;top:0;z-index:1000;background:var(--white);box-shadow:0 2px 12px rgba(27,31,75,.10)}
.hamburger{display:none;background:none;border:none;cursor:pointer;padding:4px;flex-direction:column;gap:5px}
.mobile-nav.open{display:block}
/* Breadcrumb */
.breadcrumb{background:var(--gray-light);padding:12px 0;border-bottom:1px solid var(--border)}
.breadcrumb-inner{display:flex;align-items:center;flex-wrap:wrap;gap:6px;font-size:.85rem;color:var(--gray-mid)}
.breadcrumb-inner a{color:var(--navy);font-weight:500}
.breadcrumb-inner a:hover{color:var(--red)}
/* Page Hero */
.page-hero{background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%);padding:70px 0;text-align:center;color:var(--white)}
.page-hero .label{font-size:.78rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:12px}
.page-hero h1{font-size:clamp(1.8rem,4vw,3rem);font-weight:900;color:var(--white);margin-bottom:16px;line-height:1.15}
.page-hero p{font-size:1.05rem;color:rgba(255,255,255,.7);max-width:680px;margin:0 auto 32px}
.page-hero-ctas{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
/* Content sections */
.content-section{padding:70px 0}
.content-section.gray{background:var(--gray-light)}
.section-sub{font-size:1rem;color:var(--gray-mid);margin-bottom:36px}
/* Body text */
.body-text{color:#374151;line-height:1.8;font-size:1rem;margin-bottom:20px}
.body-text a{color:var(--red);text-decoration:underline}
/* Image placeholder */
.img-placeholder{background:var(--gray-light);border:2px dashed var(--border);border-radius:12px;overflow:hidden;width:100%;aspect-ratio:16/9;display:flex;align-items:center;justify-content:center;margin-bottom:8px}
.img-placeholder-inner{text-align:center;padding:32px}
.img-placeholder-icon{font-size:2.5rem;margin-bottom:10px}
.img-placeholder-label{font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:6px}
.img-placeholder-note{font-size:.82rem;color:var(--gray-mid)}
.img-caption{font-size:.8rem;color:var(--gray-mid);text-align:center;margin-top:6px;font-style:italic}
/* Service items list */
.items-list{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:32px}
.items-list li{display:flex;align-items:flex-start;gap:10px;font-size:.95rem;color:#374151;line-height:1.5}
.items-list li::before{content:'';width:8px;height:8px;min-width:8px;background:var(--red);border-radius:50%;margin-top:6px}
/* Two col */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
@media(max-width:768px){.two-col{grid-template-columns:1fr;gap:36px}}
/* Steps — always full width */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin:32px 0 0}
@media(max-width:640px){.steps{grid-template-columns:1fr}}
.step{background:var(--white);border-radius:10px;padding:28px 24px;box-shadow:0 2px 14px rgba(27,31,75,.07);text-align:center}
.step-num{width:52px;height:52px;border-radius:50%;background:var(--red);color:var(--white);font-size:1.3rem;font-weight:900;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.step h3{font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:8px}
.step p{font-size:.9rem;color:var(--gray-mid);line-height:1.6}
/* Trust points */
.trust-points{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:28px 0}
@media(max-width:480px){.trust-points{grid-template-columns:1fr}}
.trust-point{display:flex;align-items:flex-start;gap:12px}
.check{width:22px;height:22px;min-width:22px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:.72rem;font-weight:900;margin-top:2px}
.trust-point p{font-size:.92rem;color:var(--navy);font-weight:500;line-height:1.4}
/* Cards grid */
.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:36px}
@media(max-width:900px){.cards-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.cards-grid{grid-template-columns:1fr}}
.card{background:var(--white);border:1px solid var(--border);border-radius:10px;padding:28px 24px;transition:box-shadow .2s,transform .2s}
.card:hover{box-shadow:0 8px 28px rgba(27,31,75,.12);transform:translateY(-3px)}
.card h3{font-size:1.05rem;font-weight:700;color:var(--navy);margin-bottom:8px}
.card p{font-size:.88rem;color:var(--gray-mid);margin-bottom:16px;line-height:1.5}
.card-link{font-size:.88rem;font-weight:700;color:var(--red)}
.card-link:hover{text-decoration:underline}
/* FAQ */
.faq-list{display:flex;flex-direction:column;gap:12px;margin-top:36px}
.faq-item{background:var(--white);border:1px solid var(--border);border-radius:10px;overflow:hidden}
.faq-q{width:100%;text-align:left;background:none;border:none;padding:20px 24px;font-size:1rem;font-weight:700;color:var(--navy);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:12px}
.faq-q:hover{color:var(--red)}
.faq-arrow{font-size:.8rem;transition:transform .2s;flex-shrink:0}
.faq-item.open .faq-arrow{transform:rotate(180deg)}
.faq-a{display:none;padding:0 24px 20px;font-size:.95rem;color:#374151;line-height:1.75}
.faq-item.open .faq-a{display:block}
/* CTA band */
.cta-band{padding:70px 0;background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%);text-align:center}
.cta-band-phone{font-size:1.6rem;font-weight:900;color:var(--white);display:block;margin-bottom:24px}
.cta-band-phone:hover{color:#FFD700}
.cta-band-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
/* Cities */
.cities-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:36px}
@media(max-width:768px){.cities-grid{grid-template-columns:repeat(2,1fr)}}
/* Footer */
.site-footer{background:var(--navy-dark);color:rgba(255,255,255,.65);padding:60px 0 0}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.footer-grid{grid-template-columns:1fr}}
.footer-col h4{color:var(--white);font-size:.82rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:14px}
/* Mobile sticky */
.mobile-sticky{display:none;position:fixed;bottom:0;left:0;right:0;z-index:2000;background:var(--navy);box-shadow:0 -4px 20px rgba(27,31,75,.3)}
/* Related services */
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:24px}
@media(max-width:640px){.related-grid{grid-template-columns:1fr 1fr}}
.related-chip{display:block;background:var(--white);border:1px solid var(--border);border-radius:8px;padding:14px 18px;font-size:.88rem;font-weight:600;color:var(--navy);transition:all .15s;text-align:center}
.related-chip:hover{background:var(--navy);color:var(--white);border-color:var(--navy)}
@media(max-width:900px){
  .header-nav{display:none}
  .hamburger{display:flex}
  .mobile-sticky{display:block}
  body{padding-bottom:60px}
  .header-cta{display:none}
  .page-hero-ctas{flex-direction:column;align-items:center}
  .cta-band-btns{flex-direction:column;align-items:center}
}
@media (max-width:900px){.header-phone-sub{display:none}.header-phone-num{font-size:1.05rem}.mobile-sticky{display:block}body{padding-bottom:60px}}
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27,31,75,0.10);
}
.blog-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
  min-height: 470px;
  display: flex;
  align-items: stretch;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(15,18,48,0.95), rgba(15,18,48,0.85) 55%, rgba(15,18,48,0.55)), url('/images/IMG_6620.jpeg');
  background-size: cover;
  background-position: center;
}
.blog-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 82px;
  padding-bottom: 82px;
}
.blog-hero-content {
  max-width: 700px;
}
.blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,30,42,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  color: #FF7C85;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 20px;
}
.blog-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--white);
}
.blog-hero p {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: rgba(255,255,255,0.86);
}
.blog-shell {
  background: linear-gradient(180deg, var(--gray-light) 0, #fff 360px);
  padding: 70px 0 86px;
}
.blog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}
.blog-note {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  padding: 20px;
  color: var(--gray-mid);
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(27,31,75,0.08);
}
.blog-note strong {
  display: block;
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.blog-note-cta {
  display: inline-block;
  margin-top: 14px;
  color: var(--red);
  font-weight: 800;
  font-size: 0.92rem;
}
.blog-note-cta:hover { color: var(--navy); }
.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(27,31,75,0.11);
}
.post-card-image {
  aspect-ratio: 16 / 10;
  background-image: url('/images/IMG_0708.jpeg');
  background-size: cover;
  background-position: center;
}
.post-card-body {
  padding: 28px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--gray-mid);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.post-tag {
  color: var(--red);
}
.post-card h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.post-card p {
  color: var(--gray-mid);
  font-size: 1rem;
  margin-bottom: 22px;
}
.post-preview-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(27,31,75,0.09);
  padding: clamp(28px, 5vw, 48px);
}
.article-kicker {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.article-preview h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  color: var(--gray-mid);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.article-preview p {
  color: #2D315C;
  font-size: 1.04rem;
  line-height: 1.78;
  margin-bottom: 20px;
}
.article-preview h3 {
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.25;
  margin: 32px 0 12px;
}
.article-preview ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: #2D315C;
  margin: 0 0 22px;
}
.article-callout {
  background: var(--gray-light);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  padding: 22px;
  margin: 30px 0;
}
.article-callout p {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--navy);
}
.future-posts {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.future-card {
  border: 1px dashed #C6CAD8;
  border-radius: 8px;
  padding: 22px;
  min-height: 150px;
  background: rgba(255,255,255,0.72);
}
.future-card span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.future-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 10px 0 8px;
}
.future-card p {
  color: var(--gray-mid);
  font-size: 0.92rem;
}
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--navy);
  box-shadow: 0 -4px 20px rgba(27,31,75,0.3);
}
@media (max-width: 1000px) {
  .blog-intro,
  .blog-grid { grid-template-columns: 1fr; }
  .blog-note { max-width: 620px; }
}
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .future-posts { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .announcement-bar { font-size: 0.78rem; }
  .header-phone { font-size: 0.95rem; }
  .header-cta { display: none; }
  .blog-hero { min-height: auto; }
  .blog-hero::before {
    background-image: linear-gradient(180deg, rgba(15,18,48,0.94), rgba(15,18,48,0.72)), url('/images/IMG_6620.jpeg');
  }
  .blog-hero .container {
    padding-top: 58px;
    padding-bottom: 64px;
  }
  .blog-shell { padding: 48px 0 64px; }
  .post-card-body { padding: 22px; }
  .mobile-sticky { display: block; }
  body { padding-bottom: 60px; }
}
.blog-grid.blog-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; box-shadow: 0 18px 42px rgba(27,31,75,0.10); transition: transform 0.18s, box-shadow 0.18s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 22px 52px rgba(27,31,75,0.16); }
.blog-card-image { aspect-ratio: 16 / 10; background-size: cover; background-position: center; }
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 26px; }
.blog-card h2 { font-size: 1.45rem; line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 13px; }
.blog-card p { color: var(--gray-mid); font-size: 0.96rem; margin-bottom: 22px; }
.read-more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 800; font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase; }
.blog-card:hover .read-more { color: var(--red); }
.article-hero { background: linear-gradient(160deg, #1b2160 0%, var(--navy-dark) 62%); color: var(--white); padding: 74px 0; }
.article-hero .container { max-width: 960px; }
.article-hero h1 { max-width: 880px; font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 1.06; letter-spacing: -0.03em; font-weight: 900; margin: 16px 0 22px; color: var(--white); }
.article-hero p { max-width: 760px; color: rgba(255,255,255,0.82); font-size: 1.16rem; }
.article-layout { background: linear-gradient(180deg, var(--gray-light) 0, #fff 240px); padding: 62px 0 84px; }
.article-layout .article-preview { max-width: 880px; margin: 0 auto; }
.featured-image {
  margin: 0 0 28px;
}
.featured-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(27,31,75,0.12);
}
.featured-image figcaption {
  color: var(--gray-mid);
  font-size: 0.86rem;
  line-height: 1.55;
  margin-top: 10px;
}
.article-nav { max-width: 880px; margin: 0 auto 22px; }
.article-nav a { color: var(--red); font-weight: 800; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 1000px) { .blog-grid.blog-grid-three { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .blog-grid.blog-grid-three { grid-template-columns: 1fr; } .article-hero { padding: 52px 0; } }
@media (max-width: 1000px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.confirmation{width:100%;max-width:720px;background:#fff;border:1px solid #E0E3EE;border-radius:12px;padding:42px 34px;text-align:center;box-shadow:0 18px 48px rgba(15,18,48,.12)}
.logo{display:block;width:160px;height:auto;margin:0 auto 28px}
.eyebrow{font-size:.78rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#C41E2A;margin-bottom:12px}
h1{font-size:clamp(2rem,5vw,3.2rem);line-height:1.05;color:#1B1F4B;margin-bottom:18px;letter-spacing:0}
p{font-size:1.05rem;color:#4D5265;max-width:560px;margin:0 auto 26px}
.actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn{display:inline-block;border-radius:4px;padding:15px 24px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;text-decoration:none}
.fine-print{font-size:.86rem;color:#6B7080;margin-top:26px;margin-bottom:0}
.media-room-frame{background:var(--white);border:1px solid var(--border);border-radius:12px;box-shadow:0 8px 28px rgba(27,31,75,.08);padding:24px;min-height:520px}
.media-room-frame [id^="wa-intcode-media_room"]{min-height:420px}
@media(max-width:600px){.media-room-frame{padding:16px;border-radius:10px;min-height:420px}}
.btn-green{display:inline-block;background:var(--green);color:var(--white);font-weight:700;font-size:1rem;padding:16px 32px;border-radius:4px;text-transform:uppercase;letter-spacing:.05em;border:none;cursor:pointer;transition:background .2s;text-align:center}
.btn-green:hover{background:#15803d}
/* Content */
.content-section{padding:70px 0}
.body-text{color:#374151;line-height:1.8;font-size:1rem;margin-bottom:20px}
/* How pricing works */
.pricing-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin:36px 0}
@media(max-width:640px){.pricing-steps{grid-template-columns:1fr}}
.pricing-step{background:var(--white);border-radius:10px;padding:32px 24px;box-shadow:0 2px 14px rgba(27,31,75,.07);text-align:center;position:relative}
.pricing-step-num{width:52px;height:52px;border-radius:50%;background:var(--red);color:var(--white);font-size:1.3rem;font-weight:900;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.pricing-step h3{font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:8px}
.pricing-step p{font-size:.9rem;color:var(--gray-mid);line-height:1.6}
/* What affects price */
.factors-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin:32px 0}
@media(max-width:600px){.factors-grid{grid-template-columns:1fr}}
.factor-card{background:var(--white);border:1px solid var(--border);border-radius:10px;padding:24px;display:flex;gap:16px;align-items:flex-start}
.factor-icon{font-size:1.6rem;flex-shrink:0;margin-top:2px}
.factor-card h3{font-size:.95rem;font-weight:700;color:var(--navy);margin-bottom:6px}
.factor-card p{font-size:.88rem;color:var(--gray-mid);line-height:1.5}
/* Trust badges */
.trust-row{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:32px 0}
@media(max-width:768px){.trust-row{grid-template-columns:repeat(2,1fr)}}
.trust-badge-icon{font-size:1.8rem;margin-bottom:10px}
.trust-badge p{font-size:.82rem;font-weight:700;color:var(--navy);line-height:1.3}
/* Form section */
.form-section{background:var(--navy-dark);padding:70px 0}
.form-section .section-label{color:rgba(255,255,255,.4)}
.form-section .section-title{color:var(--white)}
.form-wrap{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
@media(max-width:768px){.form-wrap{grid-template-columns:1fr;gap:40px}}
.form-left p{color:rgba(255,255,255,.65);font-size:1rem;line-height:1.8;margin-bottom:20px}
.form-left .phone-big{font-size:1.6rem;font-weight:900;color:var(--white);display:block;margin-bottom:8px}
.form-left .phone-big:hover{color:#FFD700}
.form-left .sms-link{font-size:1rem;font-weight:700;color:rgba(255,255,255,.6);display:block;margin-bottom:28px}
.form-left .sms-link:hover{color:var(--white)}
.form-promises{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:32px}
.form-promises li{display:flex;align-items:center;gap:10px;font-size:.92rem;color:rgba(255,255,255,.75)}
.form-promises li::before{content:'✓';width:20px;height:20px;min-width:20px;background:var(--green);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:.72rem;font-weight:900}
/* Hero with inline form */
.pricing-hero{background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%);padding:60px 0}
.pricing-hero-wrap{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start}
@media(max-width:860px){.pricing-hero-wrap{grid-template-columns:1fr;gap:36px}}
.pricing-hero-left .label{font-size:.78rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:12px}
.pricing-hero-left h1{font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:900;color:var(--white);line-height:1.15;margin-bottom:16px}
.pricing-hero-left p{font-size:1rem;color:rgba(255,255,255,.7);line-height:1.75;margin-bottom:24px}
.hero-promises{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:28px}
.hero-promises li{display:flex;align-items:center;gap:10px;font-size:.92rem;color:rgba(255,255,255,.75)}
.hero-promises li::before{content:'✓';width:20px;height:20px;min-width:20px;background:var(--green);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:.72rem;font-weight:900}
.hero-phone{font-size:1.4rem;font-weight:900;color:var(--white);display:block;margin-bottom:6px}
.hero-phone:hover{color:#FFD700}
.hero-sms{font-size:.92rem;font-weight:700;color:rgba(255,255,255,.55)}
.hero-sms:hover{color:var(--white)}
/* The form itself */
.estimate-form{background:var(--white);border-radius:12px;padding:36px 32px}
@media(max-width:480px){.estimate-form{padding:24px 20px}}
.estimate-form h3{font-size:1.2rem;font-weight:800;color:var(--navy);margin-bottom:6px}
.estimate-form .form-sub{font-size:.88rem;color:var(--gray-mid);margin-bottom:28px}
.form-row{margin-bottom:18px}
.form-row label{display:block;font-size:.82rem;font-weight:700;color:var(--navy);margin-bottom:6px;text-transform:uppercase;letter-spacing:.05em}
.form-row input,.form-row select,.form-row textarea{width:100%;padding:14px 16px;border:1.5px solid var(--border);border-radius:6px;font-size:.95rem;color:var(--navy);background:var(--white);outline:none;transition:border-color .2s;font-family:inherit}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{border-color:var(--navy)}
.form-row textarea{resize:vertical;min-height:100px}
.form-row.two-col{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media(max-width:480px){.form-row.two-col{grid-template-columns:1fr}}
.form-submit{width:100%;background:var(--red);color:var(--white);font-weight:800;font-size:1.05rem;padding:18px;border-radius:4px;border:none;cursor:pointer;text-transform:uppercase;letter-spacing:.06em;transition:background .2s,transform .15s;margin-top:8px}
.form-submit:hover{background:var(--red-hover);transform:translateY(-1px)}
.form-disclaimer{font-size:.75rem;color:var(--gray-mid);text-align:center;margin-top:12px;line-height:1.5}
.form-success{display:none;background:var(--green-light);border:1px solid var(--green);border-radius:8px;padding:20px;text-align:center;margin-top:16px}
.form-success h4{color:#166534;font-size:1rem;font-weight:700;margin-bottom:6px}
.form-success p{color:#166534;font-size:.9rem}
.form-error{display:none;background:#fef2f2;border:1px solid #ef4444;border-radius:8px;padding:16px;text-align:center;margin-top:16px}
.form-error p{color:#991b1b;font-size:.9rem;font-weight:600}
.form-submit[disabled]{opacity:.7;cursor:not-allowed;transform:none}
.workiz-booking-frame{display:block;width:100%;height:700px;border:0;border-radius:8px;background:var(--white)}
/* Why section */
.why-list{list-style:none;display:flex;flex-direction:column;gap:12px;margin:24px 0}
.why-list li{display:flex;align-items:flex-start;gap:12px;font-size:.95rem;color:#374151;line-height:1.5}
.why-check{width:22px;height:22px;min-width:22px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:.72rem;font-weight:900;margin-top:2px}
@media(max-width:900px){
  .header-nav{display:none}
  .hamburger{display:flex}
  .mobile-sticky{display:block}
  body{padding-bottom:60px}
  .header-cta{display:none}
  .page-hero-ctas{flex-direction:column;align-items:center}
}
.legal-section{padding:70px 0;background:#fff}
.legal-wrap{max-width:900px;margin:0 auto;background:#fff;border:1px solid var(--border);border-radius:12px;padding:42px;box-shadow:0 2px 14px rgba(27,31,75,.06)}
.legal-wrap h2{font-size:1.35rem;line-height:1.25;color:var(--navy);margin:34px 0 12px;font-weight:800}
.legal-wrap h2:first-child{margin-top:0}
.legal-wrap p{color:#374151;line-height:1.8;margin-bottom:16px;font-size:1rem}
.legal-wrap ul{margin:0 0 20px 22px;color:#374151;line-height:1.8}
.legal-wrap li{margin-bottom:8px}
.legal-updated{font-size:.9rem;color:var(--gray-mid);margin-bottom:26px}
@media(max-width:640px){.legal-section{padding:42px 0}.legal-wrap{padding:28px 20px}}

/* ============================================================
   HEADER RESPONSIVE FIX (single-source override)
   Tighten the desktop header, then collapse to the mobile menu
   before the nav row can overlap the CTA/phone at mid widths.
   ============================================================ */
.header-inner { gap: 14px; }
.header-nav { gap: 0; }
.header-nav a:not(.header-cta) { padding: 8px 9px; }
.header-cta { padding: 9px 14px; margin-left: 6px; }
@media (max-width: 1200px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-sticky { display: block; }
  body { padding-bottom: 60px; }
}

/* Service "About" sections whose feature image was removed collapse to a single
   readable column instead of leaving an empty image column. */
.two-col:has(> :only-child){grid-template-columns:1fr}
.two-col:has(> :only-child) > *{max-width:760px}

/* ============================================================
   Standardized end-of-article CTA box (blog post pages)
   ============================================================ */
.article-cta {
  max-width: 880px;
  margin: 44px auto 0;
  background: linear-gradient(160deg, #1b2160 0%, var(--navy-dark) 64%);
  color: var(--white);
  border-radius: 14px;
  padding: clamp(30px, 4vw, 46px);
  text-align: center;
  box-shadow: 0 22px 52px rgba(15,18,48,0.20);
}
.article-cta h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.article-cta p {
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 24px;
}
.article-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .article-cta-actions { flex-direction: column; align-items: stretch; }
}

/* Blog + article hero subheadlines and the intro subtitle: align flush-left with
   their headings. The shared .section-subtitle / hero <p> styles auto-center (built
   for centered sections), but these blog layouts are left-aligned, so the centered
   paragraph reads as a random indent under a left-aligned heading. Force them left. */
.blog-hero p,
.article-hero p,
.blog-intro .section-subtitle {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

/* Article body copy: paragraphs were auto-centered (margin: 0 auto) inside the
   card while the headings, lists, and figure sit flush-left — so every paragraph
   indented ~110px to the right of its heading. Pin all body elements to the same
   left edge (keep a comfortable reading measure for line length). */
.article-preview p,
.article-preview ul,
.article-preview ol {
  margin-left: 0;
  margin-right: 0;
  max-width: 680px;
}
