/* ═══════════════════════════════════════════
   Premium Overhead — main.css
   Extracted from design preview, adapted for WordPress.
   DO NOT edit compiled output — edit source here.
═══════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --primary:       #0f1923;
  --primary-light: #1a2d3f;
  --accent:        #e05c2a;
  --accent-hover:  #c44e20;
  --accent-light:  #fff0ea;
  --white:         #ffffff;
  --off-white:     #f7f6f3;
  --light:         #f2f1ed;
  --gray-100:      #e8e7e3;
  --gray-300:      #c0bfba;
  --gray-500:      #8a8880;
  --gray-700:      #4a4845;
  --text:          #1a1917;
  --text-muted:    #6b6a66;
  --border:        #e0dfd9;
  --teal:          #17a2b8;
  --font-head:     'Barlow Condensed', sans-serif;
  --font-body:     'Instrument Sans', sans-serif;
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     14px;
  --radius-xl:     22px;
  --max-w:         1200px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}
body.modal-open { overflow: hidden; }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { color: var(--text-muted); line-height: 1.7; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline-dark:hover { background: var(--accent-light); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── IMAGE PLACEHOLDER ─── */
.img-placeholder {
  background: var(--light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  gap: 10px;
  color: var(--gray-500);
  font-size: 13px;
  font-family: var(--font-body);
  border: 1px solid var(--border);
}
.img-placeholder svg { opacity: 0.4; }

/* ─── BLOCK LABEL (editor-only annotation) ─── */
.block-label {
  display: inline-flex;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ─── TOPBAR ─── */
.site-topbar { background: var(--primary); padding: 7px 0; }
.site-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
}
.site-topbar a { color: var(--white); font-weight: 700; font-size: 13px; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,25,35,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .name { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--white); line-height: 1.1; }
.logo-text .tagline { font-size: 11px; color: rgba(255,255,255,0.5); }
.site-header-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; display: block; }

/* ─── DESKTOP NAV ─── */
.site-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.site-nav li a {
  color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: all 0.15s; text-decoration: none;
}
.site-nav li a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.site-nav > li { position: relative; }

.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 240px;
  background: rgba(11,18,26,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
  z-index: 30;
  list-style: none;
}
.nav-dropdown li { list-style: none; }
.nav-dropdown li a, .nav-dropdown-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; color: rgba(255,255,255,0.82); font-size: 14px;
  padding: 10px 12px; border-radius: 10px;
  text-decoration: none; background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 500;
}
.nav-dropdown li a:hover, .nav-dropdown-trigger:hover { background: rgba(255,255,255,0.08); color: #fff; }
.site-nav > li.has-dropdown:hover > .nav-dropdown,
.site-nav > li.has-dropdown:focus-within > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown .has-submenu { position: relative; }
.nav-submenu {
  position: absolute; left: calc(100% + 10px); top: 0;
  min-width: 220px;
  background: rgba(11,18,26,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  padding: 8px; list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateX(8px);
  transition: all 0.18s ease; z-index: 31;
}
.has-submenu:hover > .nav-submenu,
.has-submenu:focus-within > .nav-submenu { opacity: 1; visibility: visible; transform: translateX(0); }
.nav-submenu a {
  display: block; width: 100%; color: rgba(255,255,255,0.82); font-size: 13.5px;
  padding: 9px 12px; border-radius: 10px; text-decoration: none;
}
.nav-submenu a:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ─── MOBILE NAV ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 116px 16px auto 16px;
  z-index: 2000;
  background: rgba(11,18,26,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  padding: 14px;
}
.mobile-menu.active { display: block; }
.mobile-menu a, .mobile-menu button {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; margin: 4px 0; border: 0;
  background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.9);
  border-radius: 12px; text-decoration: none; font: inherit; cursor: pointer;
  font-size: 14px; font-weight: 500;
}
.mobile-menu a:hover, .mobile-menu button:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-submenu { padding-left: 12px; }

/* ─── FOOTER ─── */
.pre-footer { background: var(--primary-light); padding: 64px 0; text-align: center; }
.pre-footer h2 { font-family: var(--font-head); color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.pre-footer p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.pre-footer .btn { background: var(--white); color: var(--primary); border-color: var(--white); font-weight: 700; }
.pre-footer .btn:hover { background: var(--off-white); }

.site-footer { background: #080f16; padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col h4 {
  color: var(--white); font-family: var(--font-head); font-size: 14px;
  font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-col p, .footer-col ul li a, .footer-col address { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { text-decoration: none; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col address { font-style: normal; }
.footer-phone { color: var(--accent) !important; font-weight: 600; font-size: 15px !important; display: block; margin-top: 6px; }
.footer-logo { margin-bottom: 14px; }
.footer-legal-nav { display: inline-flex; gap: 16px; list-style: none; margin-top: 6px; }
.footer-legal-nav a { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-legal-nav a:hover { color: rgba(255,255,255,0.6); }
.copyright-bar { padding: 20px 0; text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.3); }

.footer-map-wrap { width: 100%; height: 240px; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; filter: invert(90%) hue-rotate(180deg); }

/* ─── STICKY CTA BAR ─── */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--primary); border-top: 3px solid var(--accent);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.sticky-cta-bar .cta-left { display: flex; align-items: center; gap: 12px; }
.sticky-cta-bar .cta-label { font-size: 13px; color: rgba(255,255,255,0.55); }
.sticky-cta-bar .cta-phone {
  color: var(--accent); font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800; text-decoration: none; letter-spacing: 0.5px;
}
.sticky-cta-bar .cta-right { display: flex; align-items: center; gap: 10px; }
.sticky-cta-bar .cta-hours { font-size: 12px; color: rgba(255,255,255,0.4); text-align: right; line-height: 1.4; }

/* ─── HERO (full, homepage) ─── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--primary);
  background-image: url('../../public/hero-bg.webp');
  background-size: cover; background-position: center 40%;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,18,28,0.88) 0%, rgba(10,18,28,0.70) 50%, rgba(10,18,28,0.40) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 100%; margin: 0 auto; padding: 80px 24px 100px; width: 100%; }
.hero-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,0.85fr);
  gap: 36px; align-items: center;
}
.hero-copy { max-width: 700px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(224,92,42,0.15); border: 1px solid rgba(224,92,42,0.3); color: var(--accent);
  font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; max-width: 700px; font-weight: 800; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 560px; margin-bottom: 36px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero-form-card {
  background: rgba(53,53,53,0.82); border-radius: 28px; padding: 30px 28px 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28); backdrop-filter: blur(10px);
}
.hero-form-card h2 { color: var(--white); font-size: clamp(1.6rem,2vw,2.2rem); text-align: center; margin-bottom: 20px; }
.zip-checker { display: flex; flex-direction: column; gap: 8px; max-width: 400px; }
.zip-checker-label { font-size: 12px; color: rgba(255,255,255,0.45); }
.zip-checker-row {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; overflow: hidden; padding: 4px;
}
.zip-checker-row input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--white); font-family: var(--font-body); font-size: 14px; padding: 8px 16px;
}
.zip-checker-row input::placeholder { color: rgba(255,255,255,0.35); }
.zip-checker-row button {
  background: var(--accent); color: #fff; border: none; border-radius: 50px;
  padding: 8px 20px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; transition: background 0.15s;
  font-family: var(--font-body);
}
.zip-checker-row button:hover { background: var(--accent-hover); }

.hero-form-card .zip-checker { max-width: none; }
.hero-form-card .zip-checker-row {
  background: transparent; border: none; padding: 0; border-radius: 0;
  flex-direction: column; gap: 10px;
}
.hero-form-card .zip-checker-row input {
  background: var(--white); color: var(--text); border-radius: var(--radius-md); min-height: 52px;
}
.hero-form-card .zip-checker-row input::placeholder { color: var(--gray-500); }
.hero-form-card .zip-checker-row button { width: 100%; min-height: 52px; border-radius: var(--radius-md); font-size: 14px; }

/* ─── INNER PAGE HERO ─── */
.inner-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #162330 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0; position: relative; overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgb(10 18 28 / 81%) 0%, rgb(10 18 28 / 74%) 50%, rgba(10, 18, 28, 0.40) 100%);
  pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero-grid {
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,0.85fr);
  gap: 28px; align-items: center;
}
.inner-hero-copy { min-width: 0; }
.inner-hero-form { justify-self: end; width: 100%; max-width: 390px; }
.inner-hero-form .hero-form-card { margin: 0; width: 100%; }
.inner-hero-form .hero-form-card h2 { font-size: 1.65rem; }
.inner-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.inner-hero h1 { color: var(--white); margin-bottom: 16px; }
.inner-hero p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 560px; margin-bottom: 28px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 13px;
  color: rgba(255,255,255,0.5); margin-bottom: 18px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--primary); padding: 56px 0; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 800; color: var(--accent); display: block; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ─── SECTION COMMON ─── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section { padding: 40px 0; }
.section-sm { padding: 48px 0; }
.bg-off { background: var(--off-white); }
.bg-dark { background: var(--primary); }
.bg-light { background: var(--light); }

/* ─── FEATURES GRID ─── */
.features-section { background: var(--off-white); padding: 40px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: all 0.2s;
  text-align: center;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); border-color: var(--accent); }
.feature-icon {
  width: 64px; height: 64px;  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--accent); margin: 0 auto;
}
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { font-size: 14px; }

/* ─── SERVICES GRID ─── */
.services-section { padding: 40px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.2s; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.service-card-img {
  height: 160px; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 12px;
}
.service-card-body { padding: 20px; }
.service-card-body h3 { margin-bottom: 8px; font-size: 1.05rem; }
.service-card-body p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 12px; }
.service-card-body .read-more { color: var(--accent); font-weight: 600; font-size: 13.5px; }
.service-card-body .read-more:hover { color: var(--accent-hover); }

/* ─── BENEFITS ─── */
.benefits-section { background: var(--white); padding: 40px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px 24px; margin-top: 48px; }
.benefit-item { text-align: center; padding: 0 12px; }
.benefit-icon-wrap { width: 88px; height: 88px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.benefit-icon-wrap img, .benefit-icon-wrap svg { width: 88px; height: 88px; object-fit: contain; display: block; }
.benefit-item h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.benefit-item p { font-size: 14.5px; line-height: 1.7; }

/* ─── REVIEWS ─── */
.reviews-section { background: var(--off-white); padding: 40px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.review-meta .name { font-weight: 700; font-size: 15px; color: var(--text); }
.review-meta .date { font-size: 12px; color: var(--text-muted); }
.google-badge { margin-left: auto; font-size: 11px; background: #4285f4; color: #fff; padding: 3px 8px; border-radius: 50px; font-weight: 600; }
.review-stars { color: #f59e0b; font-size: 15px; margin-bottom: 10px; }
.review-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #f16a2d 0%, var(--accent) 55%, #7f3fbf 100%);
  padding: 88px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.22), transparent 26%),
              radial-gradient(circle at 18% 80%, rgba(255,255,255,0.14), transparent 20%);
  pointer-events: none;
}
.cta-banner .cta-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.cta-banner .cta-backdrop {
  position: absolute; inset: 18px; border-radius: 36px;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.16), transparent 22%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 20%),
              rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(2px);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.cta-banner .phone-link {
  display: block; color: var(--white); font-family: var(--font-head);
  font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; margin-bottom: 24px;
}
.cta-banner .btn { background: var(--white); color: var(--accent); border-color: var(--white); font-weight: 700; position: relative; z-index: 1; }
.cta-banner .btn:hover { background: var(--off-white); }
.cta-visual {
  width: 120px; height: 120px; margin: 0 auto 18px; border-radius: 28px;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.18);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12); position: relative; z-index: 1;
}
.cta-visual img { width: 84px; height: 84px; object-fit: contain; }
.wpsr-reviews-loadmore{padding: 0!important;}
/* ─── PROCESS ─── */
.process-section { padding: 40px 0; background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.process-card { background: #faf9f6; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.process-card .num {
  width: 52px; height: 52px; border-radius: 50%; border: 2px dashed var(--accent); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 16px;
}
.process-card h3 { margin-bottom: 8px; }
.process-card p { font-size: 14px; }

/* ─── MODERN INFO GRID ─── */
.modern-info-section { padding: 40px 0; background: var(--white); }
.modern-info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; align-items: stretch; }
.modern-info-section.wide .modern-info-grid { grid-template-columns: 1.1fr 1fr; }
.modern-info-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 480px; box-shadow: 0 18px 40px rgba(0,0,0,0.08); background: var(--light); }
.modern-info-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modern-info-panel { display: grid; gap: 18px; align-items: stretch; }
.modern-info-card { height: 100%;background: #faf9f6; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.modern-info-card h3 { margin-bottom: 8px; }
.modern-info-card p { margin-bottom: 0; font-size: 14.5px; line-height: 1.7; }
.modern-info-card.simple { display: flex; align-items: center; gap: 14px; }
.modern-info-card.simple .card-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 22px; font-family: var(--font-head); font-weight: 700;
}
.modern-info-card.simple .card-copy { min-width: 0; }

/* ─── SERVICE AREA ─── */
.service-area-section { padding: 72px 0 0; background: var(--off-white); overflow: hidden; }
.service-area-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.service-area-map { min-height: 380px; position: relative; overflow: hidden; }
.service-area-map iframe { width: 100%; height: 100%; min-height: 380px; border: none; display: block; }
.service-area-overlay { position: absolute; inset: 0; pointer-events: none; }
.service-area-overlay svg { width: 100%; height: 100%; display: block; }
.service-area-content {
  padding: 52px 48px; background: var(--primary); color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.service-area-content h2 { color: var(--white); margin-bottom: 16px; }
.service-area-content p { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: 15px; }
.area-cities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.area-tag {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500; padding: 5px 14px; border-radius: 50px;
}

/* ─── TEXT + IMAGE BLOCKS ─── */
.text-image-block { padding: 56px 0; }
.text-image-block.bg-off { background: var(--off-white); }
.ti-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ti-grid.mirrored .ti-image { order: -1; }
.ti-content { min-width: 0; }
.ti-content h2 { margin-bottom: 20px; }
.ti-content h3 { margin-top: 24px; margin-bottom: 8px; color: var(--text); font-size: 1.05rem; }
.ti-content p, .ti-content li { font-size: 15px; line-height: 1.8; margin-bottom: 0; }
.ti-content ul, .ti-content ol { margin: 18px 0 0; padding-left: 20px; display: grid; gap: 10px; }
.ti-content li { color: var(--text-muted); }
.ti-content li::marker { color: var(--accent); font-weight: 700; }
.ti-content .section-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.ti-content .subheading { margin: -8px 0 8px; color: var(--text); font-weight: 600; }

/* ─── FAQ ─── */
.faq-section { padding: 40px 0; }
.faq-section h2 { margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--text);
  transition: background 0.15s; gap: 16px;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--accent-light); color: var(--accent); }
.faq-arrow { font-size: 18px; transition: transform 0.25s; flex-shrink: 0; color: var(--accent); }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }
.faq-answer.open { display: block; }
.faq-answer p { color: var(--text-muted); }
.faq-grid { display: grid; gap: 14px; margin-top: 32px; }
.faq-item-card { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); padding: 18px 20px; }
.faq-item-card h3 { margin-bottom: 8px; }

/* ─── TWO-COLUMN PAGE ─── */
.page-content { padding: 60px 0; background: var(--white); }
.content-sidebar-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.content-area { min-width: 0; }
.content-area h2 { margin-bottom: 16px; }
.content-area h3 { margin-bottom: 8px; margin-top: 28px; color: var(--text); }
.content-area p { margin-bottom: 16px; }

/* ─── SIDEBAR ─── */
.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--primary); border-radius: var(--radius-xl); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.sidebar-card h3 { color: var(--white); margin-bottom: 0; }
.sidebar-phone { color: var(--accent) !important; font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; display: block; }
.sidebar-hours { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.sidebar-btns { display: flex; flex-direction: column; gap: 8px; }
.sidebar-btns .btn { justify-content: center; text-align: center; }
.sidebar-trust { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.sidebar-trust li { font-size: 13px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; }
.sidebar-trust li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ─── CONTENT LIST STYLES ─── */
.bullet-list { list-style: none; }
.bullet-list li { display: flex; flex-direction: column; padding: 12px 0; border-bottom: 1px solid var(--border); }
.bullet-list li:last-child { border-bottom: none; }
.bullet-list .item-name { font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.bullet-list .item-name::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.bullet-list .item-desc { font-size: 13.5px; color: var(--text-muted); padding-left: 18px; }
.content-ul { list-style: none; padding: 0; margin: 16px 0; }
.content-ul li { position: relative; padding: 6px 0 6px 22px; font-size: 15px; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.content-ul li:last-child { border-bottom: none; }
.content-ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

/* ─── STEPS ─── */
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 24px; margin-top: 16px; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; color: var(--accent); line-height: 1; flex-shrink: 0; min-width: 50px; }
.step-content h4 { margin-bottom: 6px; }
.step-content p { font-size: 14px; }

/* ─── CAUSE CARDS ─── */
.cause-cards { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.cause-card { border-left: 4px solid var(--accent); background: var(--off-white); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 16px 20px; }
.cause-card h4 { margin-bottom: 6px; color: var(--accent); }
.cause-card p { font-size: 14px; }

/* ─── INTERLINKING ─── */
.interlinking-section { background: var(--off-white); padding: 56px 0; border-top: 1px solid var(--border); }
.interlinking-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 24px; }
.interlink-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 20px; display: flex; align-items: center; justify-content: space-between;
  font-size: 14.5px; font-weight: 600; color: var(--text); text-decoration: none; transition: all 0.15s;
}
.interlink-card:hover { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.interlink-card.parent-link {
  border-color: var(--primary); background: var(--primary); color: var(--white); grid-column: 1 / -1; font-weight: 700;
}
.interlink-card.parent-link:hover { background: var(--primary-light); color: var(--white); border-color: var(--primary-light); }

/* ─── VALUES GRID ─── */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.value-card h3 { color: var(--accent); margin-bottom: 8px; }
.value-card p { font-size: 14px; }

/* ─── CERTIFICATIONS ─── */
.certs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cert-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.cert-logo-placeholder { height: 80px; background: var(--light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 12px; color: var(--gray-500); }
.cert-card h4 { font-size: 13.5px; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; align-items: start; padding: 60px 0; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-icon-box { width: 44px; height: 44px; background: var(--accent-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item h4 { margin-bottom: 4px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-weight: 700; }
.contact-item p { font-size: 14.5px; color: var(--text); }
.trust-pills { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; }
.trust-pill { display: flex; align-items: center; gap: 8px; background: var(--off-white); border: 1px solid var(--border); border-radius: 50px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--text); }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.contact-form-card h3 { margin-bottom: 24px; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; font-family: var(--font-body); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 14.5px; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md); color: var(--text); background: var(--white);
  outline: none; transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 100px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0 20px; font-size: 13.5px; color: var(--text-muted); }
.checkbox-row input { accent-color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.checkbox-row a { color: var(--accent); }

/* ─── MODALS ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.72);
  z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--white); border-radius: 18px; padding: 2.5rem; width: 100%; max-width: 520px;
  position: relative; max-height: 90vh; overflow-y: auto; animation: slideUp 0.25s ease;
}
.modal-box-sm { max-width: 460px; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 18px; right: 20px; width: 34px; height: 34px;
  background: var(--light); border: none; border-radius: 50%; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center; color: var(--gray-700); transition: all 0.15s;
}
.modal-close:hover { background: var(--gray-100); }
.progress-bar-wrap { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 28px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width 0.35s ease; }

/* ─── WIZARD ─── */
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-step h2 { font-size: 1.4rem; margin-bottom: 20px; }
.radio-list { display: flex; flex-direction: column; gap: 10px; }
.radio-opt {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md); cursor: pointer;
  transition: all 0.15s; font-size: 15px; font-weight: 500; color: var(--text); font-family: var(--font-body);
}
.radio-opt:hover { border-color: var(--accent); background: var(--accent-light); }
.radio-opt input[type="radio"] { accent-color: var(--accent); pointer-events: none; }
.icon-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 20px; }
.icon-opt {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 8px;
  border: 2px solid var(--border); border-radius: var(--radius-md); cursor: pointer;
  transition: all 0.15s; text-align: center; font-size: 12px; font-weight: 600;
  color: var(--text-muted); background: var(--white); font-family: var(--font-body);
}
.icon-opt:hover { border-color: var(--accent); background: var(--accent-light); }
.icon-opt.selected { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.icon-opt .icon-emoji { font-size: 24px; }
.wizard-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; gap: 12px; }
.btn-back { background: none; border: none; color: var(--gray-500); font-family: var(--font-body); font-size: 14px; cursor: pointer; padding: 8px 0; transition: color 0.15s; }
.btn-back:hover { color: var(--text); }
.step6-heading { font-family: var(--font-head); font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 6px; }
.step6-sub { color: var(--teal); font-size: 1rem; font-weight: 600; text-align: center; margin-bottom: 6px; }
.step6-small { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 24px; }
.success-modal { text-align: center; }
.success-modal p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.simple-modal-intro { font-size: 14.5px; color: var(--text-muted); margin-bottom: 20px; }

/* ─── RESPONSIVE BREAKPOINTS ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .certs-grid { grid-template-columns: repeat(2,1fr); }
  .content-sidebar-grid { grid-template-columns: 1fr 300px; }
}

@media (max-width: 900px) {
  .features-grid, .services-grid, .reviews-grid, .interlinking-grid { grid-template-columns: repeat(2,1fr); }
  .content-sidebar-grid { grid-template-columns: 1fr; }
  .ti-grid, .ti-grid.mirrored { grid-template-columns: 1fr; }
  .ti-grid.mirrored .ti-image { order: 0; }
  .inner-hero-grid { grid-template-columns: 1fr; }
  .inner-hero-form { justify-self: stretch; max-width: none; }
  .stats-bar .container { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .modern-info-grid, .modern-info-section.wide .modern-info-grid { grid-template-columns: 1fr; }
  .modern-info-media { min-height: 320px; }
  .service-area-inner { grid-template-columns: 1fr; }
  .service-area-map { min-height: 260px; }
  .service-area-content { padding: 36px 24px; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .features-grid, .services-grid, .reviews-grid, .interlinking-grid, .certs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: repeat(3,1fr); }
  .hero-btns { flex-direction: column; }
  .hero { min-height: auto; padding: 56px 0 48px; background-position: center top; }
  .hero-grid, .inner-hero-grid { grid-template-columns: 1fr; }
  .hero-copy, .inner-hero-copy { max-width: none; }
  .hero-form-card { width: 100%; }
  .hero-form-card h2 { font-size: 1.45rem; }
  .inner-hero-grid { gap: 18px; }
  .stats-bar .container { grid-template-columns: repeat(2,1fr); }
  .interlink-card.parent-link { grid-column: 1; }
  .site-header .container { height: 68px; }
  .site-topbar .container { font-size: 11.5px; }
  .sticky-cta-bar { flex-direction: column; gap: 10px; padding: 10px 16px; }
  .sticky-cta-bar .cta-hours { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .site-logo img{height: 35px!important;}
}

/* ═══════════════════════════════════════════
   BLOG — ARCHIVE (home.php)
═══════════════════════════════════════════ */

/* Filter bar */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.blog-filter-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  text-decoration: none;
  transition: all 0.15s;
}
.blog-filter-tag:hover,
.blog-filter-tag.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.blog-card-img-wrap { display: block; overflow: hidden; height: 220px; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.blog-card:hover .blog-card-img { transform: scale(1.03); }
.blog-card-img-placeholder {
  height: 220px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
}
.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card-cats { display: flex; flex-wrap: wrap; gap: 6px; }
.blog-cat-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 50px;
  text-decoration: none;
}
.blog-cat-tag:hover { background: var(--accent); color: #fff; }
.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.blog-card-title a { color: var(--text); text-decoration: none; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.blog-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.author-avatar { border-radius: 50%; width: 28px; height: 28px; object-fit: cover; }
.blog-card-date { font-size: 12px; color: var(--text-muted); }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
}
.blog-read-more:hover { color: var(--accent-hover); }

/* Pagination */
.blog-pagination { display: flex; justify-content: center; margin-top: 16px; }
.blog-pagination .nav-links { display: flex; gap: 6px; align-items: center; }
.blog-pagination .page-numbers {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; color: var(--text);
  text-decoration: none; transition: all 0.15s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current { background: var(--accent); border-color: var(--accent); color: #fff; }
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next { width: auto; padding: 0 14px; }

/* Empty state */
.no-posts { text-align: center; padding: 40px 0; }
.no-posts p { font-size: 17px; margin-bottom: 24px; }

/* ═══════════════════════════════════════════
   BLOG — SINGLE POST (single.php)
═══════════════════════════════════════════ */
.post-hero { padding-bottom: 0; }

.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.post-meta-author { font-size: 14px; font-weight: 600; color: var(--white); }
.post-meta-sep { color: rgba(255,255,255,0.3); }
.post-meta-date { font-size: 13px; color: rgba(255,255,255,0.55); }
.post-read-time { font-size: 13px; color: rgba(255,255,255,0.55); }
.author-avatar-lg { border-radius: 50%; width: 48px; height: 48px; object-fit: cover; flex-shrink: 0; }

.post-featured-img-wrap {
  max-height: 520px;
  overflow: hidden;
  background: var(--primary-light);
}
.post-featured-img { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 520px; }

/* Two-column layout */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}
.post-content-area { min-width: 0; }

/* Post body typography */
.post-body { line-height: 1.8; }
.post-body h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin: 36px 0 14px; color: var(--text); }
.post-body h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--text); }
.post-body p  { margin-bottom: 18px; font-size: 16px; color: var(--text-muted); }
.post-body ul, .post-body ol { margin: 0 0 18px 20px; display: grid; gap: 8px; }
.post-body li { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.post-body li::marker { color: var(--accent); font-weight: 700; }
.post-body img { max-width: 100%; border-radius: var(--radius-lg); margin: 24px 0; display: block; }
.post-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 16px;
  color: var(--text);
  font-style: italic;
}
.post-body a { color: var(--accent); text-decoration: underline; }
.post-body a:hover { color: var(--accent-hover); }
.post-body table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.post-body th, .post-body td { padding: 10px 14px; border: 1px solid var(--border); font-size: 14px; }
.post-body th { background: var(--primary); color: var(--white); text-align: left; }

/* Tags */
.post-tags { margin: 28px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.post-tags strong { font-size: 13px; color: var(--text-muted); }
.post-tag {
  font-size: 12px; font-weight: 600; padding: 4px 12px;
  border: 1.5px solid var(--border); border-radius: 50px;
  color: var(--text-muted); text-decoration: none; transition: all 0.15s;
}
.post-tag:hover { border-color: var(--accent); color: var(--accent); }

/* Author box */
.post-author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 32px 0;
}
.post-author-name { font-weight: 700; font-size: 15px; margin-bottom: 6px; color: var(--text); }
.post-author-bio  { font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* Post navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.15s;
}
.post-nav-link:hover { border-color: var(--accent); background: var(--accent-light); }
.post-nav-next { text-align: right; }
.post-nav-dir { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-weight: 700; }
.post-nav-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.35; }

/* Post sidebar */
.post-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-related { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.sidebar-related-heading { font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; color: var(--text-muted); margin-bottom: 14px; }
.related-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.related-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-post-item:hover .related-post-title { color: var(--accent); }
.related-post-thumb { width: 52px; height: 52px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.related-post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.related-post-title { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.35; transition: color 0.15s; }

.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.sidebar-widget-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; color: var(--text-muted); margin-bottom: 14px; }
.sidebar-cat-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.15s;
}
.sidebar-cat-list li a:hover { background: var(--accent-light); color: var(--accent); }
.cat-count { font-size: 12px; color: var(--text-muted); background: var(--light); padding: 2px 8px; border-radius: 50px; }

/* Responsive blog */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr 300px; gap: 36px; }
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   BEFORE & AFTER GALLERY BLOCK
═══════════════════════════════════════════ */
.before-after-section { padding: 40px 0; }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.ba-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
}
.ba-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Split image row */
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 220px;
  position: relative;
}

/* Divider line between halves */
.ba-images::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.55);
  z-index: 2;
  transform: translateX(-50%);
}

.ba-half {
  position: relative;
  overflow: hidden;
}
.ba-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.ba-card:hover .ba-half img { transform: scale(1.04); }

.ba-placeholder {
  width: 100%;
  height: 100%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* BEFORE / AFTER badges */
.ba-badge {
  position: absolute;
  top: 10px;
  z-index: 3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  pointer-events: none;
}
.ba-badge-before {
  left: 10px;
  background: rgba(30, 40, 52, 0.88);
}
.ba-badge-after {
  right: 10px;
  background: var(--accent);
}

/* Caption */
.ba-caption {
  padding: 18px 20px 20px;
}
.ba-caption h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.ba-caption p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-images { height: 200px; }
}
@media (max-width: 600px) {
  .ba-images { height: 170px; }
  .ba-badge { font-size: 10px; padding: 3px 8px; }
}

/* ─── CONTACT FORM 7 — inside hero card ─── */
.hero-cf7-wrap { width: 100%; }

/* Labels */
.hero-cf7-wrap .wpcf7-form p { margin: 0 0 10px; }
.hero-cf7-wrap label,
.hero-cf7-wrap .wpcf7-form label { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 600; display: block; margin-bottom: 4px; }

/* Text / email / tel / textarea inputs */
.hero-cf7-wrap input[type="text"],
.hero-cf7-wrap input[type="email"],
.hero-cf7-wrap input[type="tel"],
.hero-cf7-wrap input[type="url"],
.hero-cf7-wrap select,
.hero-cf7-wrap textarea {
  width: 100%; box-sizing: border-box;
  background: var(--white); color: var(--text);
  border: none; border-radius: var(--radius-md);
  padding: 14px 16px; font-size: 15px; font-family: var(--font-body);
  min-height: 50px; outline: none; margin-bottom: 2px;
}
.hero-cf7-wrap textarea { min-height: 100px; resize: vertical; }
.hero-cf7-wrap input::placeholder,
.hero-cf7-wrap textarea::placeholder { color: var(--gray-500); }
.hero-cf7-wrap input:focus,
.hero-cf7-wrap textarea:focus { box-shadow: 0 0 0 2px var(--accent); }

/* Submit button */
.hero-cf7-wrap input[type="submit"],
.hero-cf7-wrap .wpcf7-submit {
  width: 100%; background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-md);
  padding: 15px 24px; font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer; transition: background 0.15s; font-family: var(--font-body);
  min-height: 52px; margin-top: 6px;
}
.hero-cf7-wrap input[type="submit"]:hover,
.hero-cf7-wrap .wpcf7-submit:hover { background: var(--accent-hover); }

/* Validation messages */
.hero-cf7-wrap .wpcf7-not-valid-tip { color: #ffb3b3; font-size: 12px; margin-top: 2px; }
.hero-cf7-wrap .wpcf7-response-output {
  border: none; border-radius: var(--radius-md); padding: 10px 14px;
  font-size: 13px; margin-top: 8px; background: rgba(255,255,255,0.1); color: var(--white);
}
.hero-cf7-wrap .wpcf7-mail-sent-ok { background: rgba(39,174,96,0.25); }
.hero-cf7-wrap .wpcf7-validation-errors { background: rgba(224,92,42,0.2); }

/* Spinner */
.hero-cf7-wrap .wpcf7-spinner { display: inline-block; margin-left: 8px; }

/* ─── CONTACT FORM 7 — inside content / page ─── */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%; box-sizing: border-box;
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  padding: 12px 16px; font-size: 15px; font-family: var(--font-body);
  background: #fff; color: var(--text); outline: none;
}
.wpcf7-form input[type="submit"] {
  background: var(--accent); color: #fff; border: none;
  border-radius: var(--radius-md); padding: 14px 28px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: var(--font-body); transition: background 0.15s;
}
.wpcf7-form input[type="submit"]:hover { background: var(--accent-hover); }

/* ══════════════════════════════════════════════════════════════
   PO WIZARD — [po_wizard id="X"] multi-step CF7 wrapper
══════════════════════════════════════════════════════════════ */
.po-wizard-wrap {
  --wiz-accent: var(--accent, #e05c2a);
  --wiz-radius: var(--radius-md, 12px);
  width: 100%;
}

/* Progress bar track */
.po-wizard-progress { margin-bottom: 22px; }
.po-wizard-progress-bar {
  height: 4px; background: rgba(255,255,255,0.12); border-radius: 99px;
  overflow: hidden; margin-bottom: 14px;
}
.po-wizard-progress-fill {
  height: 100%; background: var(--wiz-accent);
  border-radius: 99px; transition: width 0.35s ease;
}

/* Step dots */
.po-wizard-steps-nav {
  display: flex; gap: 10px; align-items: center; justify-content: center;
}
.po-wizard-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.po-wizard-dot.active   { background: var(--wiz-accent); transform: scale(1.3); cursor: default; }
.po-wizard-dot.complete { background: rgba(255,255,255,0.55); }

/* Step title */
.po-wizard-step-title {
  color: var(--white, #fff); font-size: 15px; font-weight: 700;
  text-align: center; margin-bottom: 18px; letter-spacing: 0.2px;
  min-height: 1.4em;
}

/* Hide all steps by default (JS shows active) */
.po-wizard-wrap .po-step { display: none; }

/* Form fields inside wizard */
.po-wizard-form-wrap .wpcf7-form p { margin: 0 0 10px; }

.po-wizard-wrap input[type="text"],
.po-wizard-wrap input[type="email"],
.po-wizard-wrap input[type="tel"],
.po-wizard-wrap input[type="url"],
.po-wizard-wrap select,
.po-wizard-wrap textarea {
  width: 100%; box-sizing: border-box;
  background: var(--white, #fff); color: var(--text, #0a121c);
  border: 2px solid transparent; border-radius: var(--wiz-radius);
  padding: 13px 16px; font-size: 15px; font-family: var(--font-body);
  min-height: 50px; outline: none; margin-bottom: 8px;
  transition: border-color 0.15s;
}
.po-wizard-wrap input:focus,
.po-wizard-wrap textarea:focus { border-color: var(--wiz-accent); }
.po-wizard-wrap textarea { min-height: 90px; resize: vertical; }

/* Validation highlight */
.po-wizard-wrap input.po-wizard-invalid,
.po-wizard-wrap textarea.po-wizard-invalid {
  border-color: #e05c5c;
}
.po-wizard-wrap .po-wizard-invalid { outline: 2px solid #e05c5c; border-radius: var(--wiz-radius); }

/* Radio options as big clickable tiles */
.po-wizard-wrap .wpcf7-radio .wpcf7-list-item {
  display: block; margin: 0 0 8px; list-style: none;
}
.po-wizard-wrap .wpcf7-radio .wpcf7-list-item-label {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--wiz-radius);
  padding: 13px 16px; cursor: pointer; font-size: 15px; font-weight: 500;
  color: var(--white, #fff); transition: background 0.15s, border-color 0.15s;
}
.po-wizard-wrap .wpcf7-radio .wpcf7-list-item-label:hover {
  background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.3);
}
.po-wizard-wrap .wpcf7-radio input[type="radio"] { accent-color: var(--wiz-accent); width: 18px; height: 18px; }
.po-wizard-wrap .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label,
.po-wizard-wrap .wpcf7-radio .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label {
  background: rgba(224,92,42,0.18); border-color: var(--wiz-accent);
}

/* Submit button */
.po-wizard-wrap input[type="submit"],
.po-wizard-wrap .wpcf7-submit {
  display: block; width: 100%;
  background: var(--wiz-accent); color: #fff; border: none;
  border-radius: var(--wiz-radius); padding: 15px 24px;
  font-size: 15px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; cursor: pointer; font-family: var(--font-body);
  min-height: 52px; margin-top: 6px; transition: background 0.15s;
}
.po-wizard-wrap input[type="submit"]:hover { background: var(--accent-hover, #c04e24); }

/* Prev / Next nav row */
.po-wizard-nav {
  display: flex; gap: 10px; margin-top: 14px;
}
.po-wizard-nav .po-wizard-btn-next { flex: 1; }
.po-wizard-nav .po-wizard-btn-prev {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.7);
  background: transparent; border-radius: var(--wiz-radius);
  padding: 13px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); transition: background 0.15s;
}
.po-wizard-nav .po-wizard-btn-prev:hover { background: rgba(255,255,255,0.08); }

/* CF7 response */
.po-wizard-wrap .wpcf7-response-output {
  border: none; border-radius: var(--wiz-radius); padding: 10px 14px;
  font-size: 13px; margin-top: 10px; color: var(--white, #fff);
}
.po-wizard-wrap .wpcf7-mail-sent-ok       { background: rgba(39,174,96,0.25); }
.po-wizard-wrap .wpcf7-validation-errors  { background: rgba(224,92,42,0.2); }

/* Error note for missing id */
.po-wizard-error {
  background: rgba(224,92,42,0.15); border: 1px solid rgba(224,92,42,0.4);
  color: #fff; border-radius: var(--wiz-radius, 12px);
  padding: 12px 16px; font-size: 14px;
}

/* ── Wizard inside light-background content areas ── */
.entry-content .po-wizard-wrap,
.page-content .po-wizard-wrap {
  --wiz-bg: #f9f9fb;
}
.entry-content .po-wizard-wrap .po-wizard-step-title { color: var(--text); }
.entry-content .po-wizard-wrap .po-wizard-dot { background: var(--gray-200, #e0e0e0); }
.entry-content .po-wizard-wrap .po-wizard-dot.active { background: var(--wiz-accent); }
.entry-content .po-wizard-wrap .po-wizard-progress-bar { background: var(--gray-200, #e0e0e0); }
.entry-content .po-wizard-wrap .wpcf7-radio .wpcf7-list-item-label {
  background: #f3f3f3; border-color: var(--gray-200); color: var(--text);
}
.entry-content .po-wizard-wrap .wpcf7-radio .wpcf7-list-item-label:hover { background: #ebebeb; }
.entry-content .po-wizard-wrap .po-wizard-btn-prev {
  border-color: var(--gray-200); color: var(--text);
}
.entry-content .po-wizard-wrap input[type="text"],
.entry-content .po-wizard-wrap input[type="email"],
.entry-content .po-wizard-wrap input[type="tel"],
.entry-content .po-wizard-wrap textarea {
  border-color: var(--gray-200, #e0e0e0); background: #fff;
}

/* ─── .po-page-content wrapper (Gutenberg branch) ─── */
.po-page-content { /* no extra margin — blocks handle their own spacing */ }
