/*
Theme Name: National Window Experts
Theme URI: https://nationalwindowexperts.com
Author: S&M Telecommunications LLC
Author URI: https://smtelecommunications.com/website-design
Description: Custom window installation theme — Architectural Glass design
Version: 3.0.0
License: Proprietary
*/

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #e0e6f0;
  background: #07111f;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --navy:        #07111f;
  --navy-mid:    #0d1f35;
  --navy-light:  #122b5a;
  --blue-glow:   #1a6bff;
  --blue-light:  #3d8bff;
  --gold:        #f0a500;
  --gold-dark:   #d49000;
  --white:       #ffffff;
  --text-light:  #e0e6f0;
  --text-muted:  #8a9bbf;
  --border:      rgba(26, 107, 255, 0.2);
  --border-gold: rgba(240, 165, 0, 0.2);
  --card-bg:     rgba(13, 31, 53, 0.85);
  --glass:       rgba(255,255,255,0.03);
  --frame-color: #1a3a6a;
  --frame-light: #2a5090;
  --pane-color:  rgba(100, 180, 255, 0.06);
  --pane-shine:  rgba(255, 255, 255, 0.04);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1,h2,h3,h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); }
p  { color: var(--text-muted); line-height: 1.75; }
em { color: var(--gold); font-style: normal; }
strong { color: #fff; }

/* ============================================================
   UTILITY
============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-glow);
  background: rgba(26, 107, 255, 0.1);
  border: 1px solid rgba(26, 107, 255, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 580px; margin: 0 auto; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #07111f;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 4px 24px rgba(240,165,0,0.25);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240,165,0,0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.btn-outline:hover {
  border-color: var(--blue-glow);
  background: rgba(26,107,255,0.1);
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(26,107,255,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(26,107,255,0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}
@keyframes floatPane {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes bubbleFloat {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50%      { transform: translateY(-8px) scale(1.1); opacity: 1; }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal.visible, .reveal-instant.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-instant {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(16px);
}

/* ============================================================
   GRID BACKGROUND
============================================================ */
.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   DOTS
============================================================ */
.dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  box-shadow: 0 0 6px #22c55e;
}
.green-dot { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.red-dot   { background: #ef4444; box-shadow: 0 0 6px #ef4444; }
.pulse-dot {
  animation: glowPulse 2s infinite;
}

/* ============================================================
   TOP BAR
============================================================ */
#top-bar {
  background: var(--blue-glow);
  color: #fff;
  padding: 9px 0;
  font-size: 0.82rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3px;
}
#top-bar a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   NAVIGATION
============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,17,31,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
  height: 70px;
}
.site-logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo-top {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo-top span { color: var(--gold); }
.logo-bottom {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.header-phone {
  background: var(--gold);
  color: #07111f;
  font-weight: 900;
  font-size: 0.98rem;
  padding: 10px 22px;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s, transform 0.15s;
}
.header-phone:hover { background: var(--gold-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-phone {
  display: block;
  background: var(--gold);
  color: #07111f;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 14px;
  border-radius: 6px;
  text-align: center;
  margin-top: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: -150px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,107,255,0.14) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -200px; left: -50px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,165,0,0.07) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}
.hero-text .section-label { margin-bottom: 20px; }
.hero-text h1 { margin-bottom: 22px; }
.hero-text > p { font-size: 1.08rem; color: #b0c0d8; max-width: 540px; margin-bottom: 36px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}
.trust-check {
  color: #22c55e;
  font-size: 0.9rem;
  font-weight: 900;
}

/* Hero right column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============================================================
   WINDOW FRAME VISUAL (Hero decoration)
============================================================ */
.window-frame-visual {
  position: relative;
  background: var(--frame-color);
  border-radius: 4px;
  padding: 12px;
  box-shadow:
    0 0 0 3px var(--frame-light),
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(26,107,255,0.15);
  animation: floatPane 6s ease-in-out infinite;
}
.wf-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  margin-bottom: 8px;
  position: relative;
}
.wf-header-bar {
  width: 60%;
  height: 6px;
  background: var(--frame-light);
  border-radius: 3px;
}
.wf-latch {
  position: absolute;
  right: 20px;
  width: 18px; height: 10px;
  background: rgba(240,165,0,0.7);
  border-radius: 3px;
}
.wf-panes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 180px;
}
.wf-pane {
  background: var(--pane-color);
  border: 1px solid rgba(100,180,255,0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.wf-pane::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.wf-shine {
  position: absolute;
  top: 8px; left: 8px;
  width: 30%; height: 20%;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  animation: shimmer 4s ease-in-out infinite;
  transform: skewX(-10deg);
}
.wf-sill {
  height: 14px;
  background: var(--frame-light);
  border-radius: 0 0 4px 4px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Window stats overlay */
.wf-stats {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7,17,31,0.92);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  width: calc(100% - 40px);
  justify-content: center;
}
.wf-stat { display: flex; flex-direction: column; align-items: center; }
.wf-num {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.wf-num sup { font-size: 0.7rem; color: var(--gold); }
.wf-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.wf-divider { width: 1px; height: 36px; background: var(--border); }

/* ============================================================
   HERO CTA BOX
============================================================ */
.hero-cta-box {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
}
.cta-online-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.hero-cta-box h3 { font-size: 1.05rem; color: #fff; margin-bottom: 18px; line-height: 1.4; }
.cta-phone-big {
  display: block;
  background: var(--gold);
  color: #07111f;
  font-size: 1.6rem;
  font-weight: 900;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 28px rgba(240,165,0,0.3);
  margin-bottom: 16px;
}
.cta-phone-big:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(240,165,0,0.5); }
.cta-hours {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: rgba(26,107,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 14px;
}
.cta-hours p {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.cta-zip-link {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px;
  transition: border-color 0.2s, color 0.2s;
}
.cta-zip-link:hover { border-color: var(--blue-glow); color: #fff; }

/* ============================================================
   ZIP LOOKUP
============================================================ */
#zip-lookup {
  background: var(--navy-mid);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#zip-lookup::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(26,107,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.zip-lookup-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.zip-lookup-inner h2 { color: #fff; margin-bottom: 10px; }
.zip-lookup-inner .sub { color: var(--text-muted); margin-bottom: 32px; font-size: 1rem; }
.zip-form-wrap {
  display: flex;
  max-width: 480px;
  margin: 0 auto 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.zip-form-wrap:focus-within {
  box-shadow: 0 0 0 3px rgba(26,107,255,0.2);
  border-color: var(--blue-glow);
}
.zip-form-wrap input[type="text"] {
  flex: 1;
  padding: 17px 22px;
  font-size: 1.15rem;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 3px;
  font-weight: 700;
}
.zip-form-wrap input::placeholder { color: var(--text-muted); letter-spacing: 1px; font-weight: 400; }
.zip-form-wrap button {
  background: var(--blue-glow);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 17px 26px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s;
  white-space: nowrap;
}
.zip-form-wrap button:hover { background: #1559d9; }
#zip-result, #zip-result-2 {
  display: none;
  background: var(--card-bg);
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  animation: popIn 0.35s ease;
}
.result-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.35);
  color: #22c55e;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.result-area { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 14px; }
.result-phone-link {
  display: block;
  background: var(--gold);
  color: #07111f;
  font-size: 1.8rem;
  font-weight: 900;
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 12px;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(240,165,0,0.3);
}
.result-phone-link:hover { background: var(--gold-dark); transform: translateY(-2px); }
.result-cta { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.result-hours { font-size: 0.75rem; color: var(--text-muted); margin-top: 5px; }
#zip-error, #zip-error-2 {
  display: none;
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 12px;
  padding: 18px 24px;
  max-width: 480px;
  margin: 0 auto;
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.92rem;
  animation: popIn 0.35s ease;
}
#zip-error a, #zip-error-2 a { color: var(--gold); font-weight: 900; }
#zip-result-2 { margin: 14px auto 0; }
#zip-error-2  { margin: 14px auto 0; }

/* ============================================================
   WINDOW TYPES SHOWCASE
============================================================ */
#window-types {
  background: var(--navy);
  padding: 90px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#window-types::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), var(--gold), transparent);
}
.window-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.window-type-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.window-type-card:hover {
  border-color: rgba(240,165,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(240,165,0,0.08);
}
.window-type-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-glow), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.window-type-card:hover::after { opacity: 1; }
.window-type-card h3 { color: #fff; font-size: 0.95rem; margin: 14px 0 8px; }
.window-type-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* CSS Window Icons */
.wt-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}
.wt-frame {
  border: 3px solid var(--frame-light);
  border-radius: 2px;
  background: var(--pane-color);
  position: relative;
  box-shadow: 0 0 12px rgba(26,107,255,0.2);
}
/* Double-hung */
.double-hung { width: 42px; height: 58px; }
.double-hung .wt-rail {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 3px;
  background: var(--frame-light);
  transform: translateY(-50%);
}
.double-hung .wt-top, .double-hung .wt-bottom {
  position: absolute;
  left: 3px; right: 3px;
  height: calc(50% - 5px);
  background: rgba(100,180,255,0.08);
}
.double-hung .wt-top  { top: 3px; }
.double-hung .wt-bottom { bottom: 3px; }
/* Casement */
.casement { width: 36px; height: 58px; }
.casement .wt-full { position: absolute; inset: 4px; background: rgba(100,180,255,0.08); }
.casement .wt-hinge {
  position: absolute;
  left: 2px; top: 10px; bottom: 10px;
  width: 3px;
  background: var(--gold);
  opacity: 0.6;
}
/* Sliding */
.sliding { width: 58px; height: 38px; }
.sliding .wt-left, .sliding .wt-right {
  position: absolute;
  top: 3px; bottom: 3px;
  width: calc(50% - 5px);
  background: rgba(100,180,255,0.08);
}
.sliding .wt-left  { left: 3px; }
.sliding .wt-right { right: 3px; }
.sliding .wt-track {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 4px;
  background: var(--frame-light);
}
/* Picture */
.picture { width: 52px; height: 52px; }
.picture .wt-full { position: absolute; inset: 4px; background: rgba(100,180,255,0.1); }
.wt-large { background: rgba(100,180,255,0.12) !important; }
/* Bay */
.bay { width: 60px; height: 50px; display: flex; align-items: stretch; border: none; background: transparent; }
.bay .wt-bay-left, .bay .wt-bay-center, .bay .wt-bay-right {
  background: rgba(100,180,255,0.08);
  border: 2px solid var(--frame-light);
}
.bay .wt-bay-left  { width: 16px; border-radius: 2px 0 0 2px; transform: skewY(8deg); }
.bay .wt-bay-center{ flex: 1; border-left: none; border-right: none; }
.bay .wt-bay-right { width: 16px; border-radius: 0 2px 2px 0; transform: skewY(-8deg); }
/* Awning */
.awning { width: 52px; height: 40px; }
.awning .wt-full { position: absolute; inset: 4px; background: rgba(100,180,255,0.08); clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%); }
.awning .wt-awning-hinge {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  opacity: 0.6;
}
/* Egress */
.egress { width: 42px; height: 52px; }
.egress .wt-full { position: absolute; inset: 4px; background: rgba(100,180,255,0.08); }
.egress .wt-egress-label {
  position: absolute;
  bottom: 5px; right: 5px;
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
}
/* Garden */
.garden { width: 60px; height: 46px; display: flex; align-items: flex-end; border: none; background: transparent; }
.garden .wt-garden-main {
  flex: 1;
  height: 100%;
  background: rgba(100,180,255,0.08);
  border: 2px solid var(--frame-light);
  border-radius: 2px;
}
.garden .wt-garden-side {
  width: 14px;
  height: 80%;
  background: rgba(100,180,255,0.08);
  border: 2px solid var(--frame-light);
}
.garden .wt-garden-side.left  { border-right: none; border-radius: 2px 0 0 2px; }
.garden .wt-garden-side.right { border-left: none; border-radius: 0 2px 2px 0; }

/* ============================================================
   ENERGY SAVINGS BAND
============================================================ */
#energy-band {
  background: var(--navy-mid);
  padding: 90px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#energy-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.energy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.energy-text .section-label { margin-bottom: 16px; }
.energy-text h2 { margin-bottom: 18px; }
.energy-text > p { font-size: 0.98rem; line-height: 1.85; margin-bottom: 28px; }
.energy-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ef-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.ef-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Glass diagram */
.glass-diagram {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}
.gd-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
.gd-panes {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.gd-pane {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 0 0 22%;
}
.gd-pane.outer { background: rgba(100,180,255,0.12); }
.gd-pane.middle { background: rgba(100,180,255,0.09); flex: 0 0 22%; }
.gd-pane.inner { background: rgba(100,180,255,0.12); }
.gd-pane-label { font-size: 0.62rem; color: var(--text-muted); text-align: center; letter-spacing: 0.5px; }
.gd-lowe-line {
  width: 2px;
  height: 60%;
  background: linear-gradient(to bottom, var(--blue-glow), var(--gold));
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(26,107,255,0.5);
}
.gd-gap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(26,107,255,0.04);
  border-left: 1px dashed rgba(26,107,255,0.2);
  border-right: 1px dashed rgba(26,107,255,0.2);
}
.gd-gap-label { font-size: 0.58rem; color: var(--blue-light); text-align: center; letter-spacing: 0.3px; font-weight: 600; }
.gd-bubbles { display: flex; gap: 3px; }
.gd-bubbles span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-glow);
  opacity: 0.5;
}
.gd-bubbles span:nth-child(1) { animation: bubbleFloat 2.0s ease-in-out infinite; }
.gd-bubbles span:nth-child(2) { animation: bubbleFloat 2.3s ease-in-out infinite 0.2s; }
.gd-bubbles span:nth-child(3) { animation: bubbleFloat 1.8s ease-in-out infinite 0.4s; }
.gd-bubbles span:nth-child(4) { animation: bubbleFloat 2.5s ease-in-out infinite 0.1s; }
.gd-bubbles span:nth-child(5) { animation: bubbleFloat 2.1s ease-in-out infinite 0.3s; }

.gd-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.gd-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  border-right: 1px solid var(--border);
  background: rgba(26,107,255,0.04);
}
.gd-stat:last-child { border-right: none; }
.gd-val {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.gd-desc { font-size: 0.65rem; color: var(--text-muted); text-align: center; margin-top: 4px; letter-spacing: 0.5px; }

/* ============================================================
   SERVICES
============================================================ */
#services {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-glow), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(26,107,255,0.45); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: rgba(26,107,255,0.1);
  border: 1px solid rgba(26,107,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(26,107,255,0.22); }
.service-card h3 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.service-card p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   STATS BAR
============================================================ */
#stats-bar {
  background: var(--navy-mid);
  padding: 55px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-card {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: none; }
.stat-big {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-big span { color: var(--gold); }
.stat-desc { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* ============================================================
   WHY US
============================================================ */
#why-us { background: var(--navy); padding: 90px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(240,165,0,0.35); transform: translateY(-4px); }
.why-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.why-card h3 { color: #fff; margin-bottom: 10px; font-size: 0.98rem; }
.why-card p  { font-size: 0.87rem; }

/* ============================================================
   HOW IT WORKS
============================================================ */
#how-it-works {
  background: var(--navy-mid);
  padding: 90px 0;
  border-top: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-glow), var(--gold));
  opacity: 0.25;
}
.step-card { text-align: center; padding: 20px 16px; position: relative; z-index: 1; }
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--blue-glow);
  color: var(--blue-glow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(26,107,255,0.2);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.step-card:hover .step-number { background: var(--blue-glow); color: #fff; box-shadow: 0 0 30px rgba(26,107,255,0.5); }
.step-card h3 { color: #fff; margin-bottom: 10px; font-size: 0.93rem; }
.step-card p  { font-size: 0.84rem; }

/* ============================================================
   SERVICE AREAS / STATES GRID
============================================================ */
#service-areas {
  background: var(--navy);
  padding: 90px 0;
  border-top: 1px solid var(--border);
}
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.state-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 12px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-decoration: none;
}
.state-pill:hover {
  border-color: rgba(240,165,0,0.45);
  background: rgba(240,165,0,0.05);
  transform: translateY(-2px);
}
.state-code {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 22px;
}
.state-name {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.state-pill:hover .state-name { color: #fff; }

/* ============================================================
   BOTTOM CTA
============================================================ */
#bottom-cta {
  background: var(--navy-mid);
  padding: 90px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bottom-cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Window decoration behind CTA */
.bottom-window-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 400px;
  opacity: 0.04;
  pointer-events: none;
}
.bwd-pane {
  position: absolute;
  background: rgba(26,107,255,0.5);
  border: 2px solid rgba(26,107,255,0.8);
}
.bwd-pane.tl { top: 0; left: 0; width: 48%; height: 48%; }
.bwd-pane.tr { top: 0; right: 0; width: 48%; height: 48%; }
.bwd-pane.bl { bottom: 0; left: 0; width: 48%; height: 48%; }
.bwd-pane.br { bottom: 0; right: 0; width: 48%; height: 48%; }
.bwd-cross-h { position: absolute; top: 50%; left: 0; right: 0; height: 3%; background: rgba(26,107,255,0.8); transform: translateY(-50%); }
.bwd-cross-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 2%; background: rgba(26,107,255,0.8); transform: translateX(-50%); }

.bottom-cta-content { position: relative; z-index: 1; }
.bottom-cta-content h2 { margin-bottom: 14px; }
.bottom-cta-content > p { max-width: 500px; margin: 0 auto 36px; font-size: 1rem; }
.bottom-phone-btn {
  display: inline-block;
  background: var(--gold);
  color: #07111f;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 18px 40px;
  border-radius: 8px;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 28px rgba(240,165,0,0.3);
  margin-bottom: 36px;
}
.bottom-phone-btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(240,165,0,0.5); }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: #050e1a;
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-col p, .footer-col li { color: var(--text-muted); font-size: 0.87rem; line-height: 1.9; }
.footer-col ul { list-style: none; }
.footer-col a { color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-logo-top { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.15rem; font-weight: 900; color: #fff; margin-bottom: 4px; }
.footer-logo-top span { color: var(--gold); }
.footer-logo-sub { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 16px; font-weight: 600; }
.footer-phone-link {
  display: block;
  background: var(--gold);
  color: #07111f;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 12px 18px;
  border-radius: 6px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s;
  margin-top: 12px;
}
.footer-phone-link:hover { background: var(--gold-dark); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text-muted); font-size: 0.76rem; margin: 0; }
.footer-badges { display: flex; gap: 16px; }
.footer-badge { font-size: 0.74rem; color: var(--text-muted); font-weight: 600; }
.footer-designer { text-align: center; padding: 12px 0 20px; font-size: 0.7rem; color: rgba(138,155,191,0.4); }
.footer-designer a { color: rgba(138,155,191,0.5); text-decoration: underline; }
.footer-designer a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width: 1024px) {
  .window-types-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .steps-grid        { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before{ display: none; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-card:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .energy-inner      { grid-template-columns: 1fr; gap: 40px; }
}
@media(max-width: 768px) {
  .hero-inner        { grid-template-columns: 1fr; padding: 50px 24px; }
  #hero              { min-height: auto; }
  .window-types-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links         { display: none; }
  .header-phone      { display: none; }
  .hamburger         { display: flex; }
  .footer-top        { grid-template-columns: 1fr; gap: 32px; }
  .services-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .states-grid       { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
@media(max-width: 480px) {
  .hero-text h1      { font-size: 2rem; }
  .hero-btns         { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }
  .window-types-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid        { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: 1fr; }
  .stat-card         { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-card:last-child { border-bottom: none; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .states-grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FAQ SECTION
============================================================ */
#faq {
  background: var(--navy-mid);
  padding: 90px 0;
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
  backdrop-filter: blur(8px);
}
.faq-item.open {
  border-color: rgba(240,165,0,0.35);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.faq-question span:first-child {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.4;
}
.faq-icon {
  color: var(--blue-glow);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-icon {
  color: var(--gold);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
  margin: 0;
  padding-top: 16px;
}

@media(max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG — SHARED
============================================================ */
.post-cat-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.post-cat-badge.large { font-size: 0.78rem; padding: 7px 18px; }
.post-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.post-date, .post-read { font-size: 0.8rem; color: var(--text-muted); }
.post-updated { color: var(--blue-light); }

/* No-thumbnail placeholder — window motif */
.post-no-thumb, .featured-no-thumb {
  width: 100%; height: 100%;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.post-no-thumb::before, .featured-no-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,107,255,0.08) 0%, transparent 60%);
}
/* Small window icon for no-thumb */
.pnt-window, .fnt-window {
  position: relative;
  border: 3px solid rgba(26,107,255,0.3);
  border-radius: 2px;
}
.pnt-window { width: 48px; height: 56px; }
.fnt-window { width: 80px; height: 96px; }
.pnt-pane, .fnt-pane {
  position: absolute;
  background: rgba(100,180,255,0.07);
  border: 1px solid rgba(26,107,255,0.15);
}
.pnt-pane.tl { top:4px; left:4px; width:calc(50% - 6px); height:calc(50% - 6px); }
.pnt-pane.tr { top:4px; right:4px; width:calc(50% - 6px); height:calc(50% - 6px); }
.pnt-pane.bl { bottom:4px; left:4px; width:calc(50% - 6px); height:calc(50% - 6px); }
.pnt-pane.br { bottom:4px; right:4px; width:calc(50% - 6px); height:calc(50% - 6px); }
.fnt-pane.tl { top:6px; left:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.fnt-pane.tr { top:6px; right:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.fnt-pane.bl { bottom:6px; left:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.fnt-pane.br { bottom:6px; right:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.pnt-cross-h, .fnt-cross-h { position:absolute; top:50%; left:0; right:0; height:3px; background:rgba(26,107,255,0.3); transform:translateY(-50%); }
.pnt-cross-v, .fnt-cross-v { position:absolute; left:50%; top:0; bottom:0; width:3px; background:rgba(26,107,255,0.3); transform:translateX(-50%); }

/* Post card — shared across index, archive, related */
.post-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.post-card:hover {
  border-color: rgba(240,165,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.post-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--navy-mid);
  flex-shrink: 0;
}
.post-thumb { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.post-card:hover .post-thumb { transform: scale(1.04); }
.post-card-cat {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #07111f;
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 20px;
}
.post-card-body {
  padding: 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.post-card-body h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.2s;
}
.post-card:hover .post-card-body h3 { color: var(--gold); }
.post-card-body p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.post-card-footer {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   BLOG HERO / ARCHIVE HERO
============================================================ */
#blog-hero, #archive-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.06) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}
.blog-hero-glow {
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,107,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero-inner {
  max-width: 860px;
  position: relative; z-index: 1;
}
.blog-hero-inner h1 { margin: 16px 0 14px; }
.blog-hero-inner > p { font-size: 1rem; color: var(--text-muted); max-width: 600px; margin-bottom: 32px; }
.archive-icon { font-size: 2.5rem; margin-bottom: 10px; }
.archive-count {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* Category filter tabs */
.blog-cat-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 8px;
}
.cat-tab {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}
.cat-tab:hover { color: #fff; border-color: rgba(26,107,255,0.5); }
.cat-tab.active {
  color: #07111f;
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   BLOG FEATURED POST
============================================================ */
#blog-featured {
  background: var(--navy-mid);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.featured-post-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.featured-post-card:hover {
  border-color: rgba(240,165,0,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transform: translateY(-4px);
}
.featured-post-image {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--navy);
}
.featured-thumb { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.featured-post-card:hover .featured-thumb { transform: scale(1.03); }
.featured-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #07111f;
  background: var(--blue-glow);
  padding: 5px 12px;
  border-radius: 20px;
}
.featured-post-content {
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.featured-post-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.2s;
}
.featured-post-card:hover .featured-post-content h2 { color: var(--gold); }
.featured-excerpt { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 22px; }
.featured-read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-glow);
  letter-spacing: 0.5px;
  margin-top: auto;
  transition: color 0.2s, gap 0.2s;
}
.featured-post-card:hover .featured-read-more { color: var(--gold); gap: 12px; }

/* ============================================================
   BLOG GRID
============================================================ */
#blog-grid {
  background: var(--navy);
  padding: 72px 0 90px;
}
.blog-section-label { margin-bottom: 32px; }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-pagination {
  margin-top: 52px;
  display: flex; justify-content: center;
}
.blog-pagination ul {
  display: flex; gap: 6px; list-style: none; flex-wrap: wrap; justify-content: center;
}
.blog-pagination li a,
.blog-pagination li span {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.blog-pagination li a:hover { color: #fff; border-color: var(--blue-glow); }
.blog-pagination li span.current {
  color: #07111f;
  background: var(--gold);
  border-color: var(--gold);
}

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 80px 24px;
}
.blog-empty-window {
  width: 80px; height: 96px;
  border: 3px solid rgba(26,107,255,0.3);
  margin: 0 auto 28px;
  border-radius: 2px;
  position: relative;
}
.bew-pane { position:absolute; background:rgba(100,180,255,0.07); border:1px solid rgba(26,107,255,0.15); }
.bew-pane.tl { top:6px;left:6px; width:calc(50%-9px); height:calc(50%-9px); }
.bew-pane.tr { top:6px;right:6px; width:calc(50%-9px); height:calc(50%-9px); }
.bew-pane.bl { bottom:6px;left:6px; width:calc(50%-9px); height:calc(50%-9px); }
.bew-pane.br { bottom:6px;right:6px; width:calc(50%-9px); height:calc(50%-9px); }
.bew-cross-h { position:absolute;top:50%;left:0;right:0;height:3px;background:rgba(26,107,255,0.3);transform:translateY(-50%); }
.bew-cross-v { position:absolute;left:50%;top:0;bottom:0;width:3px;background:rgba(26,107,255,0.3);transform:translateX(-50%); }
.blog-empty h2 { margin-bottom: 12px; }
.blog-empty p  { color: var(--text-muted); max-width: 400px; margin: 0 auto; }

/* ============================================================
   BLOG CTA STRIP
============================================================ */
#blog-cta-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.blog-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 32px 36px;
}
.blog-cta-text h3 { font-size: 1.2rem; color: #fff; margin-bottom: 6px; }
.blog-cta-text p  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.blog-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   SINGLE POST
============================================================ */
#post-hero {
  position: relative;
  background: var(--navy);
  padding: 72px 0 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.post-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.05) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}
.post-hero-glow {
  position: absolute; top: -80px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,107,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.post-hero-inner { max-width: 820px; position: relative; z-index: 1; }
.post-hero-inner h1 { margin: 16px 0 20px; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.post-hero-meta {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.post-meta-item { font-size: 0.82rem; color: var(--text-muted); }
.post-meta-sep   { color: var(--border); font-size: 0.8rem; }

/* Breadcrumb */
.post-breadcrumb {
  display: flex; gap: 8px; flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.78rem;
}
.post-breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.post-breadcrumb a:hover { color: var(--gold); }
.post-breadcrumb span { color: rgba(138,155,191,0.4); }

/* Post body layout */
#post-body {
  background: var(--navy);
  padding: 60px 0 80px;
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.post-featured-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 36px;
  border: 1px solid var(--border);
}
.post-hero-img { width: 100%; height: auto; display: block; }

/* Article body typography */
.post-content-body {
  color: #c8d5e8;
  font-size: 1rem;
  line-height: 1.9;
}
.post-content-body h2 {
  font-size: 1.5rem; color: #fff;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.post-content-body h3 {
  font-size: 1.15rem; color: #fff;
  margin: 32px 0 12px;
}
.post-content-body h4 { font-size: 1rem; color: var(--gold); margin: 24px 0 10px; }
.post-content-body p  { margin-bottom: 20px; }
.post-content-body a  { color: var(--blue-light); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.post-content-body a:hover { color: var(--gold); }
.post-content-body ul,
.post-content-body ol {
  margin: 16px 0 24px 24px;
}
.post-content-body li { margin-bottom: 8px; color: #c8d5e8; }
.post-content-body strong { color: #fff; }
.post-content-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background: rgba(26,107,255,0.07);
  border-left: 3px solid var(--blue-glow);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-muted);
}
.post-content-body img {
  max-width: 100%; border-radius: 10px;
  margin: 24px 0;
  border: 1px solid var(--border);
}
.post-content-body table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0; font-size: 0.9rem;
}
.post-content-body th {
  background: rgba(26,107,255,0.1);
  color: #fff; font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}
.post-content-body td {
  padding: 11px 16px; border: 1px solid var(--border);
  color: var(--text-muted);
}
.post-content-body tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* Tags */
.post-tags {
  display: flex; flex-wrap: wrap;
  gap: 8px; align-items: center;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.tags-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; margin-right: 4px; }
.post-tag {
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 20px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.post-tag:hover { color: #fff; border-color: var(--blue-glow); }

/* Post nav */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.post-nav-item {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.post-nav-item:hover { border-color: rgba(240,165,0,0.4); background: rgba(240,165,0,0.04); }
.post-nav-item.next { text-align: right; }
.nav-dir { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.nav-title { font-size: 0.88rem; font-weight: 700; color: #fff; line-height: 1.4; }

/* ============================================================
   SIDEBAR
============================================================ */
.post-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-cta-box {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 24px 20px;
}
.sidebar-cta-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 10px;
}
.sidebar-cta-box h3 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.sidebar-cta-box p  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.sidebar-phone {
  display: block;
  background: var(--gold);
  color: #07111f;
  font-size: 1.25rem;
  font-weight: 900;
  padding: 13px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  margin-bottom: 14px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(240,165,0,0.25);
}
.sidebar-phone:hover { background: var(--gold-dark); transform: translateY(-1px); }
.sidebar-hours { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.sidebar-hours p { font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 7px; margin: 0; }
.sidebar-zip-link {
  display: block; text-align: center;
  font-size: 0.76rem; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 8px; transition: border-color 0.2s, color 0.2s;
}
.sidebar-zip-link:hover { border-color: var(--blue-glow); color: #fff; }
.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.sidebar-widget-title {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-cat-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 10px; border-radius: 6px;
  font-size: 0.84rem; color: var(--text-muted);
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.sidebar-cat-list a:hover, .sidebar-cat-list a.active { background: rgba(240,165,0,0.08); color: var(--gold); }
.cat-count { font-size: 0.72rem; color: rgba(138,155,191,0.5); }
.sidebar-states { display: flex; flex-direction: column; gap: 6px; }
.sidebar-state-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem; color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.sidebar-state-pill:hover { border-color: rgba(240,165,0,0.3); color: #fff; background: rgba(240,165,0,0.04); }
.sidebar-state-pill .state-code { font-weight: 900; color: var(--gold); font-size: 0.72rem; min-width: 24px; }
.sidebar-all-states {
  display: block; text-align: center;
  font-size: 0.78rem; font-weight: 700;
  color: var(--blue-light);
  text-decoration: none; padding: 8px 0;
  border-top: 1px solid var(--border); margin-top: 4px;
  transition: color 0.2s;
}
.sidebar-all-states:hover { color: var(--gold); }

/* ============================================================
   RELATED POSTS
============================================================ */
#related-posts {
  background: var(--navy-mid);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.related-header { margin-bottom: 36px; }
.related-header h2 { margin-top: 10px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ============================================================
   BLOG RESPONSIVE
============================================================ */
@media(max-width: 1024px) {
  .posts-grid      { grid-template-columns: repeat(2, 1fr); }
  .related-grid    { grid-template-columns: repeat(2, 1fr); }
  .post-layout     { grid-template-columns: 1fr; }
  .post-sidebar    { position: static; }
  .post-nav        { grid-template-columns: 1fr; }
  .post-nav-item.next { text-align: left; }
}
@media(max-width: 768px) {
  .featured-post-card  { grid-template-columns: 1fr; }
  .featured-post-image { min-height: 220px; }
  .posts-grid          { grid-template-columns: 1fr; }
  .related-grid        { grid-template-columns: 1fr; }
  .blog-cta-inner      { flex-direction: column; text-align: center; }
  .blog-cta-actions    { justify-content: center; }
  .blog-cat-tabs       { gap: 6px; }
  .cat-tab             { font-size: 0.72rem; padding: 6px 14px; }
}

/* ============================================================
   BLOG — SHARED COMPONENTS
============================================================ */
.post-cat-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.post-cat-badge.large { font-size: 0.78rem; padding: 7px 18px; }
.post-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.post-date, .post-read { font-size: 0.8rem; color: var(--text-muted); }
.post-updated { color: var(--blue-light); }

/* No-thumbnail window placeholder */
.post-no-thumb, .featured-no-thumb {
  width: 100%; height: 100%;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.post-no-thumb::before, .featured-no-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,107,255,0.08) 0%, transparent 60%);
}
.pnt-window, .fnt-window {
  position: relative;
  border: 3px solid rgba(26,107,255,0.3);
  border-radius: 2px;
}
.pnt-window { width: 48px; height: 56px; }
.fnt-window { width: 80px; height: 96px; }
.pnt-pane, .fnt-pane {
  position: absolute;
  background: rgba(100,180,255,0.07);
  border: 1px solid rgba(26,107,255,0.15);
}
.pnt-pane.tl { top:4px; left:4px; width:calc(50% - 6px); height:calc(50% - 6px); }
.pnt-pane.tr { top:4px; right:4px; width:calc(50% - 6px); height:calc(50% - 6px); }
.pnt-pane.bl { bottom:4px; left:4px; width:calc(50% - 6px); height:calc(50% - 6px); }
.pnt-pane.br { bottom:4px; right:4px; width:calc(50% - 6px); height:calc(50% - 6px); }
.fnt-pane.tl { top:6px; left:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.fnt-pane.tr { top:6px; right:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.fnt-pane.bl { bottom:6px; left:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.fnt-pane.br { bottom:6px; right:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.pnt-cross-h, .fnt-cross-h { position:absolute; top:50%; left:0; right:0; height:3px; background:rgba(26,107,255,0.3); transform:translateY(-50%); }
.pnt-cross-v, .fnt-cross-v { position:absolute; left:50%; top:0; bottom:0; width:3px; background:rgba(26,107,255,0.3); transform:translateX(-50%); }

/* Shared post card */
.post-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.post-card:hover {
  border-color: rgba(240,165,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.post-card-image {
  position: relative;
  height: 200px; overflow: hidden;
  background: var(--navy-mid); flex-shrink: 0;
}
.post-thumb { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.post-card:hover .post-thumb { transform: scale(1.04); }
.post-card-cat {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #07111f; background: var(--gold);
  padding: 4px 10px; border-radius: 20px;
}
.post-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card-body h3 { font-size: 1rem; color: #fff; margin-bottom: 10px; line-height: 1.4; transition: color 0.2s; }
.post-card:hover .post-card-body h3 { color: var(--gold); }
.post-card-body p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.post-card-footer {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 14px; border-top: 1px solid var(--border);
}

/* ============================================================
   BLOG HERO / ARCHIVE HERO
============================================================ */
#blog-hero, #archive-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.06) 1px, transparent 1px);
  background-size: 55px 55px; pointer-events: none;
}
.blog-hero-glow {
  position: absolute; top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,107,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero-inner { max-width: 860px; position: relative; z-index: 1; }
.blog-hero-inner h1 { margin: 16px 0 14px; }
.blog-hero-inner > p { font-size: 1rem; color: var(--text-muted); max-width: 600px; margin-bottom: 32px; }
.archive-icon { font-size: 2.5rem; margin-bottom: 10px; }
.archive-count { display: inline-block; font-size: 0.76rem; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 24px; }

/* Category tabs */
.blog-cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.cat-tab {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); background: var(--card-bg);
  border: 1px solid var(--border); padding: 8px 18px;
  border-radius: 6px; transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}
.cat-tab:hover { color: #fff; border-color: rgba(26,107,255,0.5); }
.cat-tab.active { color: #07111f; background: var(--gold); border-color: var(--gold); }

/* ============================================================
   FEATURED POST
============================================================ */
#blog-featured {
  background: var(--navy-mid);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.featured-post-card {
  display: grid; grid-template-columns: 1.1fr 1fr;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.featured-post-card:hover {
  border-color: rgba(240,165,0,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transform: translateY(-4px);
}
.featured-post-image {
  position: relative; min-height: 340px;
  overflow: hidden; background: var(--navy);
}
.featured-thumb { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.featured-post-card:hover .featured-thumb { transform: scale(1.03); }
.featured-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.65rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
  color: #07111f; background: var(--blue-glow); padding: 5px 12px; border-radius: 20px;
}
.featured-post-content { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.featured-post-content h2 { font-size: clamp(1.2rem,2.5vw,1.7rem); color: #fff; margin-bottom: 16px; line-height: 1.3; transition: color 0.2s; }
.featured-post-card:hover .featured-post-content h2 { color: var(--gold); }
.featured-excerpt { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 22px; }
.featured-read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700; color: var(--blue-glow); margin-top: auto; transition: color 0.2s, gap 0.2s; }
.featured-post-card:hover .featured-read-more { color: var(--gold); gap: 12px; }

/* ============================================================
   BLOG / ARCHIVE GRID
============================================================ */
#blog-grid {
  background: var(--navy);
  padding: 72px 0 90px;
}
.blog-section-label { margin-bottom: 32px; }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-pagination { margin-top: 52px; display: flex; justify-content: center; }
.blog-pagination ul { display: flex; gap: 6px; list-style: none; flex-wrap: wrap; justify-content: center; }
.blog-pagination li a,
.blog-pagination li span {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 14px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-muted); background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 6px;
  text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.blog-pagination li a:hover { color: #fff; border-color: var(--blue-glow); }
.blog-pagination li span.current { color: #07111f; background: var(--gold); border-color: var(--gold); }

/* Empty state */
.blog-empty { text-align: center; padding: 80px 24px; }
.blog-empty-window {
  width: 80px; height: 96px;
  border: 3px solid rgba(26,107,255,0.3);
  margin: 0 auto 28px; border-radius: 2px; position: relative;
}
.bew-pane { position:absolute; background:rgba(100,180,255,0.07); border:1px solid rgba(26,107,255,0.15); }
.bew-pane.tl { top:6px;left:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.bew-pane.tr { top:6px;right:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.bew-pane.bl { bottom:6px;left:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.bew-pane.br { bottom:6px;right:6px; width:calc(50% - 9px); height:calc(50% - 9px); }
.bew-cross-h { position:absolute;top:50%;left:0;right:0;height:3px;background:rgba(26,107,255,0.3);transform:translateY(-50%); }
.bew-cross-v { position:absolute;left:50%;top:0;bottom:0;width:3px;background:rgba(26,107,255,0.3);transform:translateX(-50%); }
.blog-empty h2 { margin-bottom: 12px; }
.blog-empty p  { color: var(--text-muted); max-width: 400px; margin: 0 auto; }

/* ============================================================
   BLOG CTA STRIP
============================================================ */
#blog-cta-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.blog-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 14px; padding: 32px 36px;
}
.blog-cta-text h3 { font-size: 1.2rem; color: #fff; margin-bottom: 6px; }
.blog-cta-text p  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.blog-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   SINGLE POST HERO
============================================================ */
#post-hero {
  position: relative;
  background: var(--navy); padding: 72px 0 56px;
  overflow: hidden; border-bottom: 1px solid var(--border);
}
.post-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.05) 1px, transparent 1px);
  background-size: 55px 55px; pointer-events: none;
}
.post-hero-glow {
  position: absolute; top: -80px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,107,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.post-hero-inner { max-width: 820px; position: relative; z-index: 1; }
.post-hero-inner h1 { margin: 16px 0 20px; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.post-hero-meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.post-meta-item { font-size: 0.82rem; color: var(--text-muted); }
.post-meta-sep   { color: var(--border); font-size: 0.8rem; }

.post-breadcrumb {
  display: flex; gap: 8px; flex-wrap: wrap;
  align-items: center; margin-bottom: 20px; font-size: 0.78rem;
}
.post-breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.post-breadcrumb a:hover { color: var(--gold); }
.post-breadcrumb span { color: rgba(138,155,191,0.4); }

/* ============================================================
   SINGLE POST BODY + SIDEBAR
============================================================ */
#post-body { background: var(--navy); padding: 60px 0 80px; }
.post-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 48px; align-items: start;
}
.post-featured-image { border-radius: 12px; overflow: hidden; margin-bottom: 36px; border: 1px solid var(--border); }
.post-hero-img { width: 100%; height: auto; display: block; }

/* Article body typography */
.post-content-body { color: #c8d5e8; font-size: 1rem; line-height: 1.9; }
.post-content-body h2 { font-size: 1.5rem; color: #fff; margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.post-content-body h3 { font-size: 1.15rem; color: #fff; margin: 32px 0 12px; }
.post-content-body h4 { font-size: 1rem; color: var(--gold); margin: 24px 0 10px; }
.post-content-body p  { margin-bottom: 20px; }
.post-content-body a  { color: var(--blue-light); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.post-content-body a:hover { color: var(--gold); }
.post-content-body ul,
.post-content-body ol { margin: 16px 0 24px 24px; }
.post-content-body li { margin-bottom: 8px; color: #c8d5e8; }
.post-content-body strong { color: #fff; }
.post-content-body blockquote {
  margin: 28px 0; padding: 20px 24px;
  background: rgba(26,107,255,0.07);
  border-left: 3px solid var(--blue-glow);
  border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--text-muted);
}
.post-content-body img { max-width: 100%; border-radius: 10px; margin: 24px 0; border: 1px solid var(--border); }
.post-content-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
.post-content-body th { background: rgba(26,107,255,0.1); color: #fff; font-weight: 700; padding: 12px 16px; text-align: left; border: 1px solid var(--border); }
.post-content-body td { padding: 11px 16px; border: 1px solid var(--border); color: var(--text-muted); }
.post-content-body tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.tags-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; margin-right: 4px; }
.post-tag { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); background: var(--card-bg); border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.post-tag:hover { color: #fff; border-color: var(--blue-glow); }

/* Prev/Next nav */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.post-nav-item { display: flex; flex-direction: column; gap: 6px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.post-nav-item:hover { border-color: rgba(240,165,0,0.4); background: rgba(240,165,0,0.04); }
.post-nav-item.next { text-align: right; }
.nav-dir   { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.nav-title { font-size: 0.88rem; font-weight: 700; color: #fff; line-height: 1.4; }

/* ============================================================
   SIDEBAR
============================================================ */
.post-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-cta-box { background: var(--card-bg); border: 1px solid var(--border-gold); border-radius: 14px; padding: 24px 20px; }
.sidebar-cta-badge { display: flex; align-items: center; gap: 7px; font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.sidebar-cta-box h3 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.sidebar-cta-box p  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.sidebar-phone { display: block; background: var(--gold); color: #07111f; font-size: 1.25rem; font-weight: 900; padding: 13px; border-radius: 8px; text-align: center; font-family: 'Montserrat', Arial, sans-serif; letter-spacing: 1px; margin-bottom: 14px; transition: background 0.2s, transform 0.15s; box-shadow: 0 4px 20px rgba(240,165,0,0.25); }
.sidebar-phone:hover { background: var(--gold-dark); transform: translateY(-1px); }
.sidebar-hours { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.sidebar-hours p { font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 7px; margin: 0; }
.sidebar-zip-link { display: block; text-align: center; font-size: 0.76rem; color: var(--text-muted); border: 1px solid var(--border); border-radius: 6px; padding: 8px; transition: border-color 0.2s, color 0.2s; }
.sidebar-zip-link:hover { border-color: var(--blue-glow); color: #fff; }
.sidebar-widget { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.sidebar-widget-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-cat-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-list a { display: flex; justify-content: space-between; align-items: center; padding: 9px 10px; border-radius: 6px; font-size: 0.84rem; color: var(--text-muted); text-decoration: none; transition: background 0.2s, color 0.2s; }
.sidebar-cat-list a:hover, .sidebar-cat-list a.active { background: rgba(240,165,0,0.08); color: var(--gold); }
.cat-count { font-size: 0.72rem; color: rgba(138,155,191,0.5); }
.sidebar-states { display: flex; flex-direction: column; gap: 6px; }
.sidebar-state-pill { display: flex; align-items: center; gap: 8px; padding: 7px 10px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 6px; font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.sidebar-state-pill:hover { border-color: rgba(240,165,0,0.3); color: #fff; background: rgba(240,165,0,0.04); }
.sidebar-state-pill .state-code { font-weight: 900; color: var(--gold); font-size: 0.72rem; min-width: 24px; }
.sidebar-all-states { display: block; text-align: center; font-size: 0.78rem; font-weight: 700; color: var(--blue-light); text-decoration: none; padding: 8px 0; border-top: 1px solid var(--border); margin-top: 4px; transition: color 0.2s; }
.sidebar-all-states:hover { color: var(--gold); }

/* ============================================================
   RELATED POSTS
============================================================ */
#related-posts { background: var(--navy-mid); padding: 72px 0; border-top: 1px solid var(--border); }
.related-header { margin-bottom: 36px; }
.related-header h2 { margin-top: 10px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ============================================================
   FAQ SECTION
============================================================ */
#faq {
  background: var(--navy-mid);
  padding: 90px 0;
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(240,165,0,0.35); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
}
.faq-question span:first-child { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: #fff; font-size: 0.92rem; line-height: 1.4; }
.faq-icon { color: var(--blue-glow); font-size: 1.4rem; font-weight: 300; flex-shrink: 0; transition: transform 0.3s, color 0.3s; line-height: 1; width: 24px; text-align: center; }
.faq-item.open .faq-icon { color: var(--gold); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; padding: 16px 24px 20px; border-top: 1px solid var(--border); margin: 0; }

/* ============================================================
   BLOG RESPONSIVE
============================================================ */
@media(max-width: 1024px) {
  .posts-grid    { grid-template-columns: repeat(2, 1fr); }
  .related-grid  { grid-template-columns: repeat(2, 1fr); }
  .post-layout   { grid-template-columns: 1fr; }
  .post-sidebar  { position: static; }
  .post-nav      { grid-template-columns: 1fr; }
  .post-nav-item.next { text-align: left; }
  .faq-grid      { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
  .featured-post-card  { grid-template-columns: 1fr; }
  .featured-post-image { min-height: 220px; }
  .posts-grid    { grid-template-columns: 1fr; }
  .related-grid  { grid-template-columns: 1fr; }
  .blog-cta-inner { flex-direction: column; text-align: center; }
  .blog-cta-actions { justify-content: center; }
  .blog-cat-tabs { gap: 6px; }
  .cat-tab       { font-size: 0.72rem; padding: 6px 14px; }
}

/* ============================================================
   BLOG HERO — REDESIGNED (split layout, no category tabs)
============================================================ */
#blog-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-hero-glow-2 {
  position: absolute;
  bottom: -120px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,165,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-gold { color: var(--gold); }
.blog-hero-text .section-label { margin-bottom: 18px; }
.blog-hero-text h1 { margin-bottom: 18px; line-height: 1.15; }
.blog-hero-text > p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; max-width: 560px; margin-bottom: 32px; }

/* Hero stats row */
.blog-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: inline-flex;
}
.bhs-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 28px; gap: 4px;
}
.bhs-num {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1;
}
.bhs-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.bhs-divider { width: 1px; height: 48px; background: var(--border); }

/* Blog hero CTA card */
.blog-hero-cta {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 28px 24px;
}
.bhc-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
}
.blog-hero-cta h3 { font-size: 1rem; color: #fff; margin-bottom: 16px; line-height: 1.4; }
.bhc-phone {
  display: block;
  background: var(--gold); color: #07111f;
  font-size: 1.3rem; font-weight: 900;
  padding: 14px; border-radius: 8px;
  text-align: center; letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(240,165,0,0.25);
}
.bhc-phone:hover { background: var(--gold-dark); transform: translateY(-2px); }
.bhc-hours { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.bhc-hours p { font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 7px; margin: 0; }
.bhc-zip {
  display: block; text-align: center;
  font-size: 0.76rem; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 8px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.bhc-zip:hover { border-color: var(--blue-glow); color: #fff; }

/* ============================================================
   FEATURED POST — redesigned with divider label
============================================================ */
.featured-label {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.feat-line { flex: 1; height: 1px; background: var(--border); }
.feat-text {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted);
  white-space: nowrap;
}
.featured-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,17,31,0) 60%, rgba(7,17,31,0.3) 100%);
  pointer-events: none;
}
.featured-meta-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   BLOG LAYOUT — sidebar + main
============================================================ */
#blog-grid { background: var(--navy); padding: 60px 0 90px; }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.blog-main {}
.blog-main-header { margin-bottom: 28px; }

/* 2-column post grid inside the main column */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ============================================================
   BLOG SIDEBAR
============================================================ */
.blog-sidebar {
  position: sticky;
  top: 90px;
  display: flex; flex-direction: column; gap: 20px;
}

/* Sidebar phone CTA */
.blog-sidebar-cta {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
}
.bsc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px;
}
.bsc-label { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.bsc-phone {
  display: block;
  background: var(--gold); color: #07111f;
  font-size: 1.15rem; font-weight: 900;
  padding: 13px; border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px; margin-bottom: 10px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(240,165,0,0.25);
}
.bsc-phone:hover { background: var(--gold-dark); transform: translateY(-1px); }
.bsc-zip {
  display: block; font-size: 0.76rem; color: var(--text-muted);
  text-decoration: none; padding: 8px;
  border: 1px solid var(--border); border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.bsc-zip:hover { border-color: var(--blue-glow); color: #fff; }

/* Sidebar widget */
.blog-sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  overflow: hidden;
}
.bsw-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* Category list */
.bsw-cat-list { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.bsw-cat-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.bsw-cat-item:hover {
  background: rgba(26,107,255,0.07);
  border-color: rgba(26,107,255,0.2);
}
.bsw-cat-item.active-cat {
  background: rgba(240,165,0,0.08);
  border-color: rgba(240,165,0,0.25);
}
.bsw-cat-icon { font-size: 1rem; flex-shrink: 0; width: 22px; text-align: center; }
.bsw-cat-name { flex: 1; font-size: 0.84rem; color: var(--text-muted); font-weight: 600; transition: color 0.2s; }
.bsw-cat-item:hover .bsw-cat-name,
.bsw-cat-item.active-cat .bsw-cat-name { color: #fff; }
.bsw-cat-count {
  font-size: 0.7rem; font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 20px;
  min-width: 28px; text-align: center;
}
.bsw-cat-item.active-cat .bsw-cat-count { color: var(--gold); border-color: rgba(240,165,0,0.3); background: rgba(240,165,0,0.08); }

/* State pills in sidebar */
.bsw-states { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.bsw-state {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  font-size: 0.8rem; color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.bsw-state:hover { border-color: rgba(240,165,0,0.3); color: #fff; background: rgba(240,165,0,0.04); }
.bsw-state-code { font-weight: 900; color: var(--gold); font-size: 0.72rem; min-width: 24px; }
.bsw-state-name { font-size: 0.8rem; }
.bsw-all-states {
  display: block; text-align: center;
  font-size: 0.78rem; font-weight: 700;
  color: var(--blue-light); text-decoration: none;
  padding: 8px 0;
  border-top: 1px solid var(--border); margin-top: 4px;
  transition: color 0.2s;
}
.bsw-all-states:hover { color: var(--gold); }

/* ============================================================
   BLOG RESPONSIVE — UPDATED
============================================================ */
@media(max-width: 1100px) {
  .blog-hero-split { grid-template-columns: 1fr; }
  .blog-hero-cta   { display: none; }
  .blog-layout     { grid-template-columns: 1fr; }
  .blog-sidebar    { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media(max-width: 768px) {
  .blog-sidebar  { grid-template-columns: 1fr; }
  .posts-grid    { grid-template-columns: 1fr; }
  .blog-hero-stats { flex-wrap: wrap; }
  .featured-post-card  { grid-template-columns: 1fr; }
  .featured-post-image { min-height: 220px; }
  .featured-meta-row   { flex-direction: column; align-items: flex-start; }
}