/*
Theme Name: Dave's Canvas
Theme URI: https://davescomputers.com
Author: Dave's Computers
Author URI: https://davescomputers.com
Description: A minimal blank-canvas theme built for pasting custom HTML/CSS landing pages without theme styles overriding them. Strips default WordPress padding, margins, and content wrappers. Designed for Dave's Computers neighbor-city landing pages.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: daves-canvas
*/

/* =========================================================================
   INTENTIONALLY MINIMAL
   This theme provides almost no styling on purpose. All visual design comes
   from the HTML/CSS pasted into individual pages.

   The few rules below exist only to neutralize WordPress and browser
   defaults that would otherwise leak into your custom designs.
   ========================================================================= */

/* Modern CSS reset - just enough to give pasted designs a clean slate */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    /* No font-family, no color, no line-height set here.
       Your pasted CSS controls everything. */
}

/* Remove default image alignment quirks */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove WordPress admin bar push-down when logged in (optional - comment out if you want it) */
html { margin-top: 0 !important; }
* html body { margin-top: 0 !important; }

/* ==========================================================================
   IMPORTANT: Do NOT add p {}, h1 {}, .container {}, or any global
   element/class styles to this file. They will fight your pasted designs.
   Your landing pages should be fully self-contained.
   ========================================================================== */

/* =========================================================================
   HOMEPAGE STYLES (page ID 19 on test site)
   When deploying to live davescomputers.com, scope these to the real
   homepage page ID by adding `.page-id-XX` prefix to selectors that
   only apply on the homepage. For now they apply globally since the
   theme is only used on landing pages with similar structure.
   ========================================================================= */

:root {
  --blue-900: #0a2540;
  --blue-800: #0f3a66;
  --blue-700: #1452a3;
  --blue-600: #1d6fd8;
  --blue-500: #2e88ff;
  --blue-100: #e7f0fb;
  --blue-50: #f4f8fd;
  --ink: #0e1a2b;
  --ink-soft: #4a5b72;
  --ink-mute: #748397;
  --line: #dde6f1;
  --bg: #ffffff;
  --bg-alt: #f7faff;
  --gold: #ffb547;
  --green: #1a8754;
  --red: #d83a3a;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 1px 3px rgba(10,37,64,.04);
  --shadow-md: 0 4px 12px rgba(10,37,64,.08), 0 2px 4px rgba(10,37,64,.05);
  --shadow-lg: 0 12px 32px rgba(10,37,64,.12), 0 4px 8px rgba(10,37,64,.06);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-600); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--blue-900); line-height: 1.2; letter-spacing: -.01em; }

/* ============ TOP UTILITY BAR ============ */
.utility-bar {
  background: #061b3f;
  color: #fff;
  font-size: 14px;
  padding: 11px 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.utility-bar a { color: #fff; font-weight: 500; text-decoration: none; }
.utility-bar a:hover { color: #4ade80; text-decoration: none; }
.utility-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}
.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
}
.utility-item svg { width: 16px; height: 16px; color: #fff; flex-shrink: 0; }
.utility-item strong { font-weight: 700; }

/* ============ HEADER ============ */
.site-header {
  background: linear-gradient(180deg, #0e3a8c 0%, #0a2f73 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  position: relative;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 24px;
  max-width: 1400px;
  position: relative;
}

/* Logo: real Dave's Computers SVG */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 14px 0;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo svg.logo-svg {
  height: 56px;
  width: auto;
  display: block;
}

/* Nav */
.nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  padding: 24px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .15s;
  border: 0;
  position: relative;
}
.nav-link:hover { color: #4ade80; text-decoration: none; }
.nav-link::after {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px);
  margin-left: 2px;
  opacity: .85;
  transition: transform .2s;
}
.nav-item.no-arrow .nav-link::after { display: none; }
.nav-item:hover .nav-link::after { transform: rotate(225deg) translate(-2px,-2px); }

.nav-icon {
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-icon svg {
  width: 24px; height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}

/* Dropdown styling */
.dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  min-width: 280px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .18s ease;
  z-index: 50;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown a:hover { background: var(--blue-50); color: var(--blue-700); text-decoration: none; }
.dropdown-heading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-mute);
  padding: 12px 14px 6px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.dropdown-heading:first-child { margin-top: 0; border-top: 0; padding-top: 6px; }

/* Green TALK TO AN EXPERT CTA - extends to right edge */
.cta-header {
  background: #16a34a;
  color: #fff !important;
  padding: 24px 36px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .18s;
  text-decoration: none;
  align-self: stretch;
  margin-right: -24px;
  flex-shrink: 0;
}
.cta-header:hover { background: #15803d; text-decoration: none; color: #fff; }

.menu-toggle {
  display: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
}

/* Mobile-only phone CTA next to logo */
.header-phone-mobile {
  display: none;
  align-items: center;
  gap: 6px;
  background: #16a34a;
  color: #fff;
  padding: 9px 14px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .01em;
  text-decoration: none;
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(22,163,74,.4);
  transition: background .15s, transform .1s;
}
.header-phone-mobile:hover { background: #15803d; color: #fff; text-decoration: none; }
.header-phone-mobile:active { transform: scale(.97); }
.header-phone-mobile svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============ STICKY STACK WRAPPER ============ */
/* Wraps promo bar + utility bar + header so they all scroll-pin together as a column */
.site-stack {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ============ MOBILE FLOATING PROMO BAR ============ */
.promo-bar {
  display: none;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 44px 10px 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  animation: promoSlideDown .45s cubic-bezier(.2,.7,.3,1) .25s both;
  overflow: hidden;
}
.promo-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 12px, transparent 12px 24px);
  pointer-events: none;
}
.promo-bar:hover { color: #fff; text-decoration: none; }
.promo-bar:active { transform: scale(.99); }
.promo-bar .promo-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.3;
}
.promo-bar .promo-tag {
  background: #fff;
  color: #15803d;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .05em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.promo-bar .promo-arrow {
  font-weight: 800;
  margin-left: 2px;
  display: inline-block;
  animation: nudgeRight 1.6s ease-in-out infinite;
}
.promo-close {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
  z-index: 2;
  transition: background .15s;
  font-family: var(--font-display);
}
.promo-close:hover { background: rgba(255,255,255,.32); }
.promo-bar.dismissed { display: none !important; }

@keyframes promoSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes nudgeRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(46,136,255,.18), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(20,82,163,.22), transparent 60%),
    linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74,222,128,.25);
}
.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.hero h1 .accent { color: #7dd3fc; }
.hero-sub {
  font-size: 18px;
  color: #cfe1f7;
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-bottom: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #e6f0fb;
}
.check {
  width: 22px; height: 22px;
  background: rgba(74,222,128,.18);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.check::after {
  content: '';
  width: 6px; height: 10px;
  border-right: 2px solid #4ade80;
  border-bottom: 2px solid #4ade80;
  transform: rotate(45deg) translate(-1px,-1px);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
  letter-spacing: -.005em;
  transition: all .18s ease;
  cursor: pointer;
  border: 0;
}
.btn-primary {
  background: #fff;
  color: var(--blue-900);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.btn-primary:hover { background: var(--gold); color: var(--blue-900); transform: translateY(-1px); text-decoration: none; box-shadow: 0 8px 22px rgba(255,181,71,.4); }
.btn-secondary {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-secondary:hover { background: rgba(255,255,255,.16); text-decoration: none; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  font-weight: 800;
}
.hero-stats .stat span {
  font-size: 13px;
  color: #a8c4e6;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Hero card */
.hero-card {
  background: #fff;
  color: var(--ink);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  position: relative;
}
.hero-card-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-mute);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  font-size: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.hours-grid .day { color: var(--ink-soft); }
.hours-grid .time { font-weight: 600; color: var(--ink); }
.hours-now {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 16px;
}
.hours-now::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,135,84,.6); }
  50% { box-shadow: 0 0 0 6px rgba(26,135,84,0); }
}
.address-block { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.address-block strong { color: var(--ink); display: block; font-size: 15px; margin-bottom: 2px; }
.address-note { font-size: 13px; color: var(--ink-mute); font-style: italic; }
.address-link { display: inline-block; margin-top: 10px; font-weight: 600; font-size: 14px; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-strip .item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-strip .stars { color: var(--gold); font-size: 18px; letter-spacing: 1px; }
.trust-strip .item strong { color: var(--blue-900); font-size: 16px; }

/* ============ SECTIONS ============ */
section { padding: 72px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-700);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
}

/* INTRO BLURB */
.intro {
  background: #fff;
  padding: 56px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.intro h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 18px;
}
.intro p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 14px; }
.intro p a { font-weight: 600; }
.intro-card {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--radius);
  padding: 28px;
}
.intro-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.intro-card ul { list-style: none; }
.intro-card li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink);
}
.intro-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 18px; height: 18px;
  background: var(--blue-600);
  border-radius: 50%;
  display: grid; place-items: center;
}
.intro-card li::after {
  content: '';
  position: absolute;
  left: 5px; top: 16px;
  width: 4px; height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* SERVICES */
.services { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  border-color: var(--blue-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: all .25s;
}
.service-card:hover .service-icon {
  background: var(--blue-700);
  color: #fff;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service-card h3 a { color: inherit; }
.service-card h3 a:hover { color: var(--blue-700); text-decoration: none; }
.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 18px;
}
.service-link {
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-700);
}
.service-link::after {
  content: '→';
  transition: transform .2s;
}
.service-card:hover .service-link::after { transform: translateX(4px); }

/* PROCESS */
.process { background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-100), var(--blue-500), var(--blue-100));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue-600);
  color: var(--blue-700);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(29,111,216,.18);
}
.step h4 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* TESTIMONIALS */
.testimonials { background: var(--blue-50); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testi::before {
  content: '"';
  position: absolute;
  top: -8px; left: 18px;
  font-family: Georgia, serif;
  font-size: 88px;
  line-height: 1;
  color: var(--blue-100);
  font-weight: 700;
}
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; position: relative; }
.testi p {
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.65;
  flex-grow: 1;
  position: relative;
}
.testi-author {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.testi-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--blue-900);
  margin-bottom: 2px;
}
.testi-author span { font-size: 13px; color: var(--ink-mute); }

/* MAP / LOCATION */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: stretch;
}
.location-info {
  background: var(--blue-900);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.location-info h3 { color: #fff; font-size: 24px; margin-bottom: 8px; }
.location-info .sub { color: #a8c4e6; font-size: 14px; margin-bottom: 24px; }
.info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.info-row:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.info-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; color: #7dd3fc; }
.info-content strong { display: block; color: #fff; font-size: 15px; margin-bottom: 2px; }
.info-content span, .info-content a { color: #cfe1f7; font-size: 14px; }
.info-content a { color: #7dd3fc; }
.location-cta { margin-top: 24px; }
.location-cta .btn-primary { width: 100%; justify-content: center; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 420px;
  background: #e7eef7;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: #fff;
  text-align: center;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(125,211,252,.15), transparent 40%),
                    radial-gradient(circle at 80% 50%, rgba(255,181,71,.1), transparent 40%);
}
.cta-band .container { position: relative; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 12px;
}
.cta-band p { color: #cfe1f7; font-size: 17px; margin-bottom: 28px; }
.cta-band .btn-primary { font-size: 18px; padding: 17px 32px; }

/* ============ FOOTER (live-site style) ============ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0e3a8c 0%, #0a2f73 100%);
  color: #d6e4fb;
  padding: 64px 0 0;
  font-size: 14.5px;
  overflow: hidden;
}
/* Decorative diagonal stripes in the corners */
.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  background-image:
    linear-gradient(135deg, transparent 0%, transparent 48%, rgba(255,255,255,.05) 48%, rgba(255,255,255,.05) 50%, transparent 50%, transparent 56%, rgba(255,255,255,.04) 56%, rgba(255,255,255,.04) 58%, transparent 58%, transparent 64%, rgba(255,255,255,.03) 64%, rgba(255,255,255,.03) 66%, transparent 66%);
  pointer-events: none;
}
.site-footer::before { top: 0; right: -60px; }
.site-footer::after { bottom: 0; left: -60px; transform: rotate(180deg); }
.site-footer .container { position: relative; z-index: 2; }

/* Two-column shell: left (logo + map + contact)  |  right (3-col link grid + social) */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  padding-bottom: 48px;
}

/* ----- LEFT SIDE ----- */
.footer-left .footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  text-decoration: none;
}
.footer-left .footer-logo:hover { text-decoration: none; }
.footer-logo svg.logo-svg {
  height: 64px;
  width: auto;
  display: block;
}

.footer-tagline {
  color: #cfdcf2;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 540px;
}

.footer-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  margin-bottom: 28px;
  background: #e7eef7;
}
.footer-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.footer-left h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}
.footer-left h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4ade80 0%, #22d3a4 60%, transparent 100%);
  border-radius: 2px;
}

.footer-contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 24px;
  text-decoration: none;
}
.footer-contact-info svg { width: 14px; height: 14px; color: #cfdcf2; }
.footer-contact-info:hover { color: #4ade80; text-decoration: none; }

.footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}
.footer-address svg { width: 14px; height: 14px; color: #cfdcf2; flex-shrink: 0; }
.footer-address:hover { color: #4ade80; text-decoration: none; }

/* ----- RIGHT SIDE ----- */
.footer-right { display: flex; flex-direction: column; }

.footer-social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.footer-social-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
}
.social-row {
  display: flex;
  gap: 14px;
}
.social-row a {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  color: #fff;
  transition: all .2s ease;
}
.social-row a svg { width: 20px; height: 20px; }
.social-row a:hover {
  color: #4ade80;
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4ade80 0%, #22d3a4 60%, transparent 100%);
  border-radius: 2px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a,
.footer-col ul li {
  color: #cfdcf2;
  font-size: 14.5px;
  text-decoration: none;
  transition: color .15s;
}
.footer-col ul a:hover {
  color: #4ade80;
  text-decoration: none;
}
.footer-col ul li.spacer { height: 6px; }

.see-more-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  background: #06204a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .2s;
}
.see-more-btn:hover {
  background: #4ade80;
  color: #06204a;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Hidden expanded areas list */
.areas-served {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease, margin .3s ease;
  padding: 0;
  margin: 0;
  grid-column: 1 / -1;
}
.areas-served.open {
  max-height: 800px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.areas-served ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 18px;
}

/* ----- BOTTOM BAR ----- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: #cfdcf2;
}
.footer-bottom-links {
  display: flex;
  gap: 0;
  align-items: center;
}
.footer-bottom-links a {
  color: #cfdcf2;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,.18);
  font-size: 13.5px;
}
.footer-bottom-links a:last-child { border-right: 0; padding-right: 0; }
.footer-bottom-links a:first-child { padding-left: 0; }
.footer-bottom-links a:hover { color: #4ade80; text-decoration: none; }

/* ============ STICKY MOBILE CALL ============ */
.sticky-call {
  position: fixed;
  bottom: 16px;
  left: 16px; right: 16px;
  background: var(--blue-700);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(20,82,163,.45);
  display: none;
  z-index: 90;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sticky-call:hover { background: var(--blue-800); text-decoration: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-link-grid { gap: 32px; }
  .areas-served ul { grid-template-columns: repeat(3, 1fr); }
  .footer-social-bar { justify-content: center; }
  .footer-social-title { flex: none; text-align: left; }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #0a2f73; flex-direction: column; align-items: stretch; padding: 12px; box-shadow: 0 12px 32px rgba(0,0,0,.3); border-top: 1px solid rgba(255,255,255,.08); z-index: 50; }
  .nav.open { display: flex; }
  .nav-link { width: 100%; padding: 14px 16px; }
  .dropdown { position: static; box-shadow: none; border: 0; opacity: 1; visibility: visible; transform: none; padding-left: 16px; display: none; background: rgba(255,255,255,.04); }
  .dropdown a { color: #cfdcf2; }
  .dropdown a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .nav-item.open .dropdown { display: block; }
  .menu-toggle { display: inline-block; }
  .cta-header { display: none; }
  .utility-bar { display: none; }
  .header-phone-mobile { display: inline-flex; }
  .promo-bar { display: block; }
  .sticky-call { display: none; }
  .site-header .container { padding: 0 16px; gap: 10px; }
  .logo { padding: 10px 0; }
  .logo svg.logo-svg { height: 40px; }
  body { padding-bottom: 0; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-link-grid { grid-template-columns: 1fr; gap: 28px; }
  .areas-served ul { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom-links { flex-wrap: wrap; }
  .hero { padding: 48px 0 56px; }
  section { padding: 56px 0; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat strong { font-size: 22px; }
}

/* =========================================================================
   WORDPRESS PAGE OVERRIDES
   Kill default WordPress wrapper padding so the design fills the viewport.
   ========================================================================= */
.page-id-19 div#page,
.page-id-14 div#page { padding: 0; }

.page-id-19 .entry-content,
.page-id-14 .entry-content {
    margin: 0;
    padding: 0;
    max-width: none;
}

.page-id-19 .entry-content > *,
.page-id-14 .entry-content > * {
    max-width: none;
}

/* The hero already has its own background — keep its container transparent */
header.hero > .container { background: transparent; }
