/* ============================================================
   Home Check Inspector — Stylesheet
   Professional. Navy & Red. Florida-focused. SEO-ready.
   ============================================================ */

:root {
  --navy:         #1B2B6B;
  --navy-mid:     #152358;
  --navy-dark:    #0f1a45;
  --navy-deeper:  #0a1230;
  --red:          #C41E3A;
  --red-dark:     #a01830;
  --red-light:    #fdf0f3;
  --bg:           #ffffff;
  --bg-alt:       #f5f7fb;
  --bg-section:   #f9fafd;
  --white:        #ffffff;
  --text:         #0f1a45;
  --text-body:    #3a4468;
  --text-muted:   #6b7494;
  --text-inv:     rgba(255,255,255,0.93);
  --text-inv-muted: rgba(255,255,255,0.65);
  --border:       #dde3f0;
  --border-dark:  rgba(255,255,255,0.12);
  --grad:         linear-gradient(135deg, #1B2B6B 0%, #C41E3A 100%);
  --grad-subtle:  linear-gradient(135deg, #f0f3ff 0%, #fff5f7 100%);
  --shadow-sm:    0 2px 12px rgba(27,43,107,.06);
  --shadow:       0 6px 32px rgba(27,43,107,.10);
  --shadow-lg:    0 16px 56px rgba(27,43,107,.14);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   all .3s ease;
  --max-width:    1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red); }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-weight: 400; line-height: 1.05; letter-spacing: .02em;
  color: var(--text);
}
ul { list-style: none; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .8rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
  border: 2px solid transparent; text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff; border: none;
  box-shadow: 0 4px 18px rgba(196,30,58,.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,30,58,.40); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: #fff; color: var(--navy-dark); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 42px; font-size: .84rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .88rem; letter-spacing: .5px;
  transition: var(--transition);
}
.btn-phone:hover { color: rgba(255,255,255,.75); }

/* ── Section Headers ── */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-title-row { justify-content: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-family: 'Montserrat', sans-serif;
  font-size: .68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 8px;
}
.section-tag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--red); }
.section-title-row { display: flex; align-items: center; overflow: hidden; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  color: var(--text); white-space: nowrap; flex-shrink: 0;
  line-height: 1; letter-spacing: .03em;
}
.section-title.inv { color: #fff; }
.section-title-line { flex: 1; height: 2px; background: var(--grad); margin-left: 22px; min-width: 40px; }
.section-subtitle { font-size: .92rem; color: var(--text-muted); max-width: 580px; margin-top: 14px; line-height: 1.75; }
.section-header.centered .section-subtitle { margin: 14px auto 0; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
header.scrolled .nav-link { color: var(--text); }
header.scrolled .nav-link:hover { color: var(--red); background: var(--red-light); }
header.scrolled .menu-toggle span { background: var(--text); }
header.scrolled .logo-text { color: var(--navy); }
body.inner-page header {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
body.inner-page header .nav-link { color: var(--text); }
body.inner-page header .nav-link:hover { color: var(--red); background: var(--red-light); }
body.inner-page header .menu-toggle span { background: var(--text); }
body.inner-page header .btn-call { color: var(--navy); }
body.inner-page header .btn-call:hover { color: var(--red); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 36px; max-width: var(--max-width); margin: 0 auto; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 70px; width: auto; }

/* ── NAV ── */
#main-nav {
  display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;
}
.nav-link {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .9rem;
  letter-spacing: 1px; text-transform: uppercase; color: #ffffff;
  padding: 9px 14px; border-radius: var(--radius); transition: var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: var(--radius); min-width: 230px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); z-index: 200;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 11px 18px;
  font-family: 'Montserrat', sans-serif; font-size: .76rem; font-weight: 600;
  color: var(--text-body); letter-spacing: .5px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--red); background: var(--red-light); padding-left: 24px; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--transition); border-radius: 2px; }
.menu-close {
  display: none; background: none; border: none; font-size: 1.4rem;
  color: var(--text); cursor: pointer; align-self: flex-end; padding: 8px;
}

.header-cta {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.header-cta .btn { padding: 11px 24px; font-size: .72rem; }
.btn-call {
  display: flex; align-items: center; gap: 7px;
  color: #ffffff; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .8rem; letter-spacing: .5px;
  transition: var(--transition); white-space: nowrap;
}
.btn-call:hover { color: #fff; }
.btn-call svg { width: 16px; height: 16px; fill: currentColor; }
header.scrolled .btn-call { color: var(--navy); }
header.scrolled .btn-call:hover { color: var(--red); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 58vh;
  display: flex; align-items: center;
  background: var(--navy-deeper);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  overflow: hidden; padding-top: 88px;
  background-size: cover; background-position: center 20%;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center;
}
.hero-bg-fallback {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(145deg, #0a1230 0%, #1B2B6B 50%, #2d1020 100%);
}
/* Animated subtle pattern overlay */
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(196,30,58,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(27,43,107,.4) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(10,18,48,.60) 0%, rgba(15,22,50,.45) 60%, rgba(60,10,20,.35) 100%);
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--max-width); margin: 0 auto;
  padding: 32px 36px 64px;
  display: grid; grid-template-columns: 1fr 520px; gap: 48px;
  align-items: center; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(196,30,58,.15); border: 1px solid rgba(196,30,58,.30);
  color: #f06070; font-family: 'Montserrat', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 8px; height: 8px; background: #C41E3A; border-radius: 50%; }
.hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 7.5vw, 6.5rem);
  color: #fff; line-height: 1; letter-spacing: .04em;
  margin-bottom: 22px;
}
.hero-text h1 span { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.hero-sub {
  font-size: 1rem; color: var(--text-inv-muted); max-width: 520px;
  line-height: 1.75; margin-bottom: 36px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: .5px; color: var(--text-inv-muted);
}
.hero-trust-item .icon { color: #5de06a; font-style: normal; }

/* Hero Form Card */
.hero-form-card {
  border-radius: 30px;
}
.hero-form-card iframe { display: block; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 0;
}
.trust-bar-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.5rem; flex-shrink: 0; }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong {
  font-family: 'Montserrat', sans-serif; font-size: .8rem;
  font-weight: 700; color: #fff; letter-spacing: .5px;
}
.trust-text span { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ── SERVICES SECTION ── */
.services-section { background: var(--bg); }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
/* Service card photo header */
.service-card-photo {
  position: relative; height: 190px; overflow: hidden;
  background: var(--navy-deeper);
}
.service-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-photo img { transform: scale(1.05); }
.service-card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,48,.25) 0%, rgba(10,18,48,.60) 100%);
}
.service-card-icon {
  position: absolute; bottom: 16px; left: 20px;
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(196,30,58,.35);
}
.service-card-icon svg { width: 22px; height: 22px; fill: #fff; }
.service-card-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem;
  color: var(--text); letter-spacing: .04em; margin-bottom: 8px;
  padding: 18px 20px 0;
}
.service-card-body {
  padding: 8px 20px 24px; flex: 1; display: flex; flex-direction: column;
}
.service-card-desc {
  font-size: .87rem; color: var(--text-body); line-height: 1.7; margin-bottom: 18px;
}
.service-card-list {
  flex: 1; margin-bottom: 24px;
}
.service-card-list li {
  font-size: .82rem; color: var(--text-body); padding: 5px 0;
  display: flex; align-items: flex-start; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.service-card-list li:last-child { border-bottom: none; }
.service-card-list li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif; font-size: .76rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--red);
  margin-top: auto; transition: var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--red-dark); }

/* Additional services row */
.additional-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px;
}
.additional-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 22px;
  text-align: center; transition: var(--transition);
}
.additional-card:hover { background: #fff; transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.additional-icon { font-size: 1.8rem; margin-bottom: 12px; }
.additional-title {
  font-family: 'Montserrat', sans-serif; font-size: .8rem;
  font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: .3px;
}
.additional-desc { font-size: .76rem; color: var(--text-muted); line-height: 1.6; }

/* ── HOME REPAIRS LIFESPAN ── */
.repairs-section { background: var(--navy-deeper); position: relative; overflow: hidden; padding: 96px 0; }
.repairs-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(196,30,58,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(27,43,107,.4) 0%, transparent 60%);
}
.repairs-section > .container { padding-left: 0; }
.repairs-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.repairs-img-wrap { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; overflow: hidden; box-shadow: 0 24px 72px rgba(0,0,0,.5); }
.repairs-img-wrap img { width: 100%; display: block; object-fit: cover; }
.repairs-img-caption { margin-top: 14px; font-size: .78rem; color: rgba(255,255,255,.4); font-family: 'Montserrat', sans-serif; font-style: italic; text-align: center; padding-left: 24px; }
.repairs-content-col { padding-right: 32px; }
.repairs-content-col .section-tag { color: #f06070; }
.repairs-content-col .section-tag::before { background: var(--red); }
.repairs-content-col h2 { color: #fff; margin-bottom: 14px; }
.repairs-intro { color: var(--text-inv-muted); font-size: .88rem; line-height: 1.8; margin-bottom: 24px; }
.repairs-list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
.repairs-list li {
  display: flex; align-items: baseline; gap: 6px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  font-family: 'Montserrat', sans-serif; font-size: .8rem;
}
.repairs-list li:last-child { border-bottom: none; }
.repairs-item { color: #fff; font-weight: 600; white-space: nowrap; }
.repairs-dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,.2); margin: 0 6px; position: relative; top: -4px; min-width: 12px; }
.repairs-years { color: var(--red); font-weight: 700; white-space: nowrap; }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--navy-deeper); position: relative; overflow: hidden; }
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(196,30,58,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(27,43,107,.4) 0%, transparent 60%);
}
.why-inner { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-photo-wrap { position: relative; }
.why-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,.45);
}
.why-photo img { width: 100%; height: 520px; object-fit: cover; }
.why-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--grad); border-radius: 16px;
  padding: 22px 28px; box-shadow: 0 12px 36px rgba(196,30,58,.35);
  text-align: center; color: #fff;
}
.why-badge-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.2rem; line-height: 1;
  color: #fff;
}
.why-badge-label { font-size: .72rem; font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 1px; opacity: .85; }
.why-content .section-tag { color: #f06070; }
.why-content .section-tag::before { background: #C41E3A; }
.why-content h2 { color: #fff; margin-bottom: 18px; }
.why-content p { color: var(--text-inv-muted); font-size: .9rem; line-height: 1.8; margin-bottom: 28px; }
.why-list { margin-bottom: 36px; }
.why-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.why-list li:last-child { border-bottom: none; }
.why-list-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(196,30,58,.2); border: 1px solid rgba(196,30,58,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0; margin-top: 2px;
}
.why-list-text strong {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 700; color: #fff; letter-spacing: .3px; margin-bottom: 3px;
}
.why-list-text span { font-size: .8rem; color: var(--text-inv-muted); }

/* ── PROCESS SECTION ── */
.process-section { background: var(--bg-alt); }
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.steps-row::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: var(--grad); z-index: 0;
}
.step-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; position: relative; z-index: 1;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 2px;
  color: #fff; display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad);
  margin: 0 auto 18px; box-shadow: 0 6px 18px rgba(196,30,58,.30);
}
.step-card h3 {
  font-family: 'Montserrat', sans-serif; font-size: .9rem;
  font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: .3px;
}
.step-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; }

/* ── ABOUT / OWNER SECTION ── */
.about-section { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 480px 1fr; gap: 72px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 560px; object-fit: cover; object-position: top center; }
.about-photo-accent {
  position: absolute; top: -16px; right: -16px; bottom: 16px; left: 16px;
  border: 2px solid var(--red); border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
}
.about-content .section-tag { color: var(--red); }
.about-content h2 { margin-bottom: 18px; }
.about-content p { font-size: .9rem; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }
.cert-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 32px; }
.cert-badge {
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--text-body); font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .5px;
  padding: 7px 14px; border-radius: 50px;
}

/* ── REVIEWS ── */
.reviews-section { background: var(--navy-deeper); padding: 96px 0; position: relative; overflow: hidden; }
.reviews-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,30,58,.1) 0%, transparent 60%);
}
.reviews-section .section-header { position: relative; z-index: 1; }
.reviews-marquee-wrap {
  overflow: hidden; position: relative; margin: 0 -36px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-marquee {
  display: flex; gap: 20px; width: max-content;
  animation: marquee 42s linear infinite;
  padding: 12px 0;
}
.reviews-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px 28px; min-width: 340px; max-width: 340px;
  backdrop-filter: blur(10px); flex-shrink: 0;
}
.review-stars { color: #FFD700; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: .86rem; color: var(--text-inv); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.review-author-text strong { display: block; font-family: 'Montserrat', sans-serif; font-size: .8rem; color: #fff; font-weight: 700; }
.review-author-text span { font-size: .74rem; color: var(--text-inv-muted); }
.reviews-cta { text-align: center; margin-top: 48px; position: relative; z-index: 1; }
.reviews-cta p { color: var(--text-inv-muted); font-size: .88rem; margin-bottom: 16px; }
.btn-google {
  display: inline-flex; align-items: center; gap: 10px;
  background: #4285f4; color: #fff; padding: 13px 28px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .78rem;
  letter-spacing: 1px; text-transform: uppercase; transition: var(--transition);
}
.btn-google:hover { background: #2b6fd4; color: #fff; transform: translateY(-2px); }

/* ── SERVICE AREAS ── */
.areas-section { background: var(--bg-alt); }
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.area-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.area-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow); color: var(--red); }
.area-icon {
  width: 46px; height: 46px; border-radius: 10px; background: var(--grad-subtle);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.area-name {
  font-family: 'Montserrat', sans-serif; font-size: .85rem;
  font-weight: 700; color: var(--text); letter-spacing: .3px; margin-bottom: 3px;
}
.area-county { font-size: .72rem; color: var(--text-muted); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--grad); padding: 72px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-inner {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff; margin-bottom: 10px; letter-spacing: .04em;
}
.cta-band-text p { color: rgba(255,255,255,.8); font-size: .9rem; max-width: 520px; line-height: 1.7; }
.cta-band-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-band-actions .btn-outline { border-color: rgba(255,255,255,.7); }
.cta-phone {
  display: flex; flex-direction: column;
}
.cta-phone span { font-size: .68rem; color: rgba(255,255,255,.7); font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.cta-phone a { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; letter-spacing: .05em; line-height: 1.1; }
.cta-phone a:hover { color: rgba(255,255,255,.8); }

/* ── FOOTER ── */
footer {
  background: var(--navy-deeper); color: rgba(255,255,255,.75); padding: 72px 0 0;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: .82rem; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-size: .72rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: .82rem; color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 12px;
}
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-icon { flex-shrink: 0; margin-top: 2px; opacity: .75; }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto; padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: .74rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--navy-deeper); padding: 120px 0 64px; position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,18,48,.88) 0%, rgba(15,22,50,.78) 60%, rgba(40,8,18,.68) 100%);
}
.page-hero-inner,
.page-hero > .container { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 600;
  letter-spacing: .5px; color: rgba(255,255,255,.5); margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .4; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem); color: #fff;
  letter-spacing: .04em; margin-bottom: 16px;
}
.page-hero h1 span { color: #fff; }
.page-hero p {
  font-size: .95rem; color: rgba(255,255,255,.7); max-width: 620px; line-height: 1.75;
}
.page-hero p a { color: #fff; text-decoration: none; font-weight: 700; }
.page-hero p a:hover { text-decoration: underline; }

/* ── SERVICE PAGE CONTENT ── */
.service-content { background: var(--bg); }
.service-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start;
  max-width: var(--max-width); margin: 0 auto; padding: 96px 32px;
}
.service-main h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text); letter-spacing: .03em; margin-bottom: 16px;
}
.service-main p { font-size: .9rem; line-height: 1.8; color: var(--text-body); margin-bottom: 18px; }
.service-includes {
  background: var(--bg-alt); border-radius: var(--radius-lg); padding: 32px;
  margin: 32px 0; border: 1px solid var(--border);
}
.service-includes h3 {
  font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.service-includes ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.service-includes ul li {
  font-size: .85rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 8px;
}
.service-includes ul li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.faq-section { margin-top: 48px; }
.faq-section h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--text);
  letter-spacing: .03em; margin-bottom: 28px;
}
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  padding: 18px 22px; font-family: 'Montserrat', sans-serif;
  font-size: .86rem; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; background: #fff; transition: var(--transition);
}
.faq-q:hover { background: var(--bg-alt); }
.faq-q.open { color: var(--red); }
.faq-toggle { color: var(--red); font-size: 1.1rem; flex-shrink: 0; transition: var(--transition); }
.faq-q.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease;
}
.faq-a.open { padding: 0 22px 18px; max-height: 400px; }
.faq-a p { font-size: .86rem; color: var(--text-body); line-height: 1.75; }

/* Sidebar */
.service-sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--navy); border-radius: var(--radius-lg); padding: 32px 28px;
  color: #fff; margin-bottom: 20px; box-shadow: var(--shadow-lg);
}
.sidebar-card h3 {
  font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.sidebar-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #fff; letter-spacing: .04em; margin-bottom: 10px; }
.sidebar-card p { font-size: .84rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 20px; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-contact-item {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.sidebar-contact-item a { color: rgba(255,255,255,.8); font-size: .84rem; }
.sidebar-contact-item a:hover { color: #fff; }
.sidebar-services h3 {
  font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
.sidebar-services a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 600;
  color: var(--text-body); transition: var(--transition);
}
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover { color: var(--red); padding-left: 4px; }
.sidebar-services a span { color: var(--red); font-size: .8rem; }
.sidebar-card-light { background: var(--bg-alt); }
.sidebar-card-light h3 { color: var(--text-muted); }
.sidebar-card-light h4 { color: var(--text); }
.sidebar-card-light p { color: var(--text-body); }

/* ── ABOUT PAGE ── */
.team-section { background: var(--bg-alt); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem;
  color: var(--text); margin-bottom: 10px;
}
.value-card p { font-size: .84rem; color: var(--text-body); line-height: 1.7; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info p { font-size: .9rem; line-height: 1.8; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; flex-shrink: 0;
}
.contact-detail-text label {
  display: block; font-family: 'Montserrat', sans-serif; font-size: .68rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 3px;
}
.contact-detail-text a,
.contact-detail-text span { font-size: .9rem; color: var(--text); font-weight: 600; font-family: 'Montserrat', sans-serif; }
.contact-detail-text a:hover { color: var(--red); }
.contact-form-card {
  background: var(--navy); border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #fff;
  letter-spacing: .04em; margin-bottom: 8px;
}
.contact-form-card p { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 24px; }
.contact-form-card iframe { border-radius: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 460px; gap: 36px; }
  .why-grid { gap: 48px; }
  .about-grid { grid-template-columns: 380px 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 240px 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .additional-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-photo-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { display: none; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .service-includes ul { grid-template-columns: 1fr; }
  /* Repairs section */
  .repairs-inner { grid-template-columns: 1fr; gap: 36px; }
  .repairs-section > .container { padding-left: 32px; }
  .repairs-img-wrap { border-radius: var(--radius-lg); max-height: 360px; overflow: hidden; }
  .repairs-img-wrap img { object-fit: cover; height: 360px; }
  .repairs-content-col { padding-right: 0; }
  .repairs-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 12px 20px; }
  #main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
    background: #fff; flex-direction: column; align-items: flex-start;
    gap: 0; padding: 16px 0 32px; z-index: 950;
    box-shadow: -8px 0 40px rgba(0,0,0,.2);
    transform: translateX(100%); transition: transform .35s ease;
    overflow-y: auto; justify-content: flex-start;
  }
  #main-nav.open { transform: translateX(0); }
  .nav-link { color: var(--text); width: 100%; padding: 14px 24px; border-radius: 0; font-size: .8rem; }
  .nav-link:hover { background: var(--bg-alt); color: var(--red); }
  .nav-item { width: 100%; }
  .dropdown {
    position: static; box-shadow: none; border: none; border-radius: 0;
    opacity: 1; visibility: visible; transform: none;
    background: var(--bg-alt); display: none;
  }
  .nav-item.open .dropdown { display: block; }
  .dropdown a { padding: 10px 36px; font-size: .78rem; }
  .menu-close { display: flex; }
  .menu-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .btn-call span { display: none; }
  .hero-inner { padding: 48px 20px; }
  .hero-text h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 18px 24px; }
  .trust-item:last-child { border-bottom: none; }
  .service-grid { grid-template-columns: 1fr; }
  .additional-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .value-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  /* Repairs single col on small mobile */
  .repairs-list { grid-template-columns: 1fr; }
  .repairs-section > .container { padding-left: 20px; }
  /* Reviews marquee margin fix */
  .reviews-marquee-wrap { margin: 0 -20px; }
  /* Prevent any wide element from blowing out layout */
  .hero-inner, .service-layout, .about-grid, .why-grid,
  .repairs-inner, .footer-inner { max-width: 100%; }
}

@media (max-width: 480px) {
  .additional-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .service-includes ul { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .header-inner { padding: 10px 16px; }
  .logo img { height: 52px; }
  .repairs-img-wrap img { height: 260px; }
}

/* ── MOBILE NAV OVERLAY ── */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 895;
}
.nav-overlay.active { display: block; }

/* ── UTILITY ── */
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.text-grad { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ── SCHEMA / HIDDEN ── */
.schema-hidden { display: none; }

/* ── BOOKING MODAL ── */
.booking-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,18,48,.72); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.booking-modal-overlay.active { display: flex; }
.booking-modal-inner {
  position: relative; background: #fff; border-radius: 20px;
  width: 100%; max-width: 520px; max-height: 92vh;
  overflow-y: auto; box-shadow: 0 32px 80px rgba(0,0,0,.45);
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.booking-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 0; gap: 12px;
}
.booking-modal-header h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  color: var(--navy); letter-spacing: .04em;
}
.booking-modal-close {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--bg-alt); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition); flex-shrink: 0;
}
.booking-modal-close:hover { background: var(--red); color: #fff; }
.booking-modal-body { padding: 8px 6px 6px; }
.booking-modal-body iframe { display: block; border-radius: 14px; }
@media (max-width: 600px) {
  .booking-modal-inner { border-radius: 14px; }
  .booking-modal-body iframe { width: 100% !important; }
}
