/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Public Sans', system-ui, sans-serif;
  color: #0a1622;
  background: #f6f8fa;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --navy-deep:   #07182b;
  --navy:        #0a233d;
  --navy-mid:    #0d2a47;
  --navy-btn:    #0e3056;
  --blue-accent: #13406b;
  --copper:      #c07a3e;
  --copper-lt:   #d68a45;
  --copper-pale: #e3a96f;
  --light-bg:    #f6f8fa;
  --white:       #ffffff;
  --text-dark:   #0a1622;
  --text-mid:    #3f5366;
  --text-muted:  #5b6b7a;
  --text-slate:  #8fa9c0;
  --text-blue:   #aec6da;
  --text-nav:    #cdd9e5;
  --border:      #e3eaf1;
  --border-mid:  #dde6ee;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes ripple {
  0%   { transform: scale(.4); opacity: .55; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ───────────────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,24,43,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 52px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 5px 10px;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-nav);
}
.nav a { transition: color 0.2s; }
.nav a:hover { color: #fff; }
.btn-call {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--copper);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 9px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(192,122,62,0.35);
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-call:hover { background: var(--copper-lt); }

/* hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.2s;
}

/* ── HERO ─────────────────────────────────────────────────── */
/* ── HERO CAROUSEL ────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 620px;
  background: var(--navy-deep);
}
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.hero-slide.active { opacity: 1; }
/* transition only enabled after first paint, so the initial LCP slide renders instantly with no fade delay */
.hero-carousel.is-ready .hero-slide {
  transition: opacity 1.2s ease-in-out;
}

/* blurred fill — zoomed & blurred, fills any gaps with matching tones */
.slide-bg {
  position: absolute;
  inset: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.4) saturate(0.6);
}
/* main photo — cover fills full hero, anchored high so heads stay in frame */
.slide-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(7,24,43,0.88) 0%, rgba(7,24,43,0.72) 55%, rgba(7,24,43,0.50) 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 34px 34px;
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  padding: 0;
  margin: 0 4px;
}

.hero-dot.active {
  background: #ffffff;
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px 24px 90px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(192,122,62,0.16);
  border: 1px solid rgba(192,122,62,0.4);
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  padding: 7px 14px;
  border-radius: 100px;
  font-family: 'Archivo', sans-serif;
}
.hero-h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -2px;
  margin: 20px 0 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero-h1 .period { color: var(--copper); }
.hero-sub {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  font-size: 19px;
  line-height: 1.55;
  max-width: 520px;
  margin: 18px 0 0;
  font-weight: 500;
}
.hero-sub strong { color: #fff; }
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn-copper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #a06030;
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 11px;
  box-shadow: 0 10px 30px rgba(192,122,62,0.4);
  transition: background 0.2s var(--ease);
}
.btn-copper:hover { background: var(--copper-lt); }
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 24px;
  border-radius: 11px;
  transition: background 0.2s;
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.18); }

/* dual phone numbers */
.hero-phones {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.hero-phone-link {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero-phone-region {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
}
.hero-phone-num {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.hero-phone-div {
  color: rgba(255,255,255,0.2);
  font-size: 22px;
  font-weight: 200;
  padding: 0 2px;
}

/* free tools row */
.hero-free-tools {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-free-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}
.hero-free-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-tool {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(192,122,62,0.35);
  color: rgba(255,255,255,0.9);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 9px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-tool:hover {
  background: rgba(192,122,62,0.18);
  border-color: var(--copper);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 26px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
}
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.diamond { color: var(--copper); }

/* floating stat badge */
.hero-stat-float {
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  animation: floaty 5s ease-in-out infinite;
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.hero-stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--copper);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── TRUST STRIP ──────────────────────────────────────────── */
#trust-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 40px;
  color: #9fb6cb;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.trust-strip-inner .sep { color: var(--copper); }

/* ── POOL INSPECTIONS ─────────────────────────────────────── */
#inspections { padding: 92px 0; background: var(--light-bg); }
.inspections-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
  align-items: center;
}
.insp-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-mid);
  box-shadow: 0 20px 50px rgba(10,35,61,0.12);
  aspect-ratio: 5/5.2;
}
.insp-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: #7a4e10;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.section-h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.04;
  letter-spacing: -1px;
  margin: 12px 0 0;
}
.section-h2-dark { color: var(--navy); }
.section-h2-light { color: #fff; }
.body-copy {
  font-size: 17px;
  line-height: 1.65;
  margin: 20px 0 0;
  max-width: 560px;
}
.body-copy-dark { color: var(--text-mid); }
.body-copy-light { color: #9fb6cb; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}
.feature-card-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 4px;
}
.feature-card-text {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.btn-navy {
  display: inline-flex;
  margin-top: 26px;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-btn); }

/* ── SERVICES ─────────────────────────────────────────────── */
#services { padding: 90px 0; background: var(--navy-deep); }
.services-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.service-card {
  background: linear-gradient(180deg, #0d2a47, #0b2440);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.service-photo {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-photo img { transform: scale(1.04); }
.service-body { padding: 24px; }
.service-h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 21px;
  margin-bottom: 10px;
}
.service-text {
  color: #9fb6cb;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ── TECHNOLOGY ───────────────────────────────────────────── */
#tech { padding: 90px 0; background: var(--light-bg); }
.tech-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 16px;
  margin-top: 44px;
}
.tech-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tech-card:hover {
  box-shadow: 0 10px 30px rgba(10,35,61,0.1);
  transform: translateY(-3px);
}
.tech-card--featured {
  border-color: var(--copper);
  background: #7a4a0a;
  color: #ffffff;
  position: relative;
}

.tech-card--featured .tech-label {
  color: #ffffff;
}

.tech-card--featured .tech-badge {
  background: #ffffff;
  color: #7a4a0a;
}
.tech-badge {
  display: inline-block;
  margin-top: 8px;
  background: #c8973a;
  color: #0f1f35;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
}
.tech-icon {
  width: 48px; height: 48px;
  background: rgba(192,122,62,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
}
.tech-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  color: #0f1f35;
  font-size: 0.9rem;
  line-height: 1.2;
  margin-top: 8px;
}

/* ── THE BOOK ─────────────────────────────────────────────── */
#book {
  padding: 90px 0;
  background: linear-gradient(150deg, #0a233d, #0e3056);
}
.book-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 54px;
  align-items: center;
}
.book-cover-wrap {
  display: flex;
  justify-content: center;
}
.book-cover {
  width: 230px;
  aspect-ratio: 3/4.2;
  border-radius: 8px 14px 14px 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), -6px 0 0 0 var(--copper);
  animation: floaty 6s ease-in-out infinite;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow-light { color: var(--copper-pale); }

/* ── ACADEMY ──────────────────────────────────────────────── */
#academy { padding: 90px 0; background: var(--light-bg); }
.academy-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.academy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(10,35,61,0.08);
}
.academy-photo {
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.academy-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── SERVICE AREA ─────────────────────────────────────────── */
#service-area { padding: 84px 0; background: var(--navy-deep); }
.area-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 40px;
}
.area-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
}
.area-county {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 19px;
  margin-bottom: 8px;
}
.area-cities {
  color: var(--text-slate);
  font-size: 13.5px;
  line-height: 1.7;
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq { padding: 90px 0; background: var(--light-bg); }
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-list { margin-top: 40px; }
details {
  border-bottom: 1px solid var(--border);
}
details:first-child { border-top: 1px solid var(--border); }
summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 16.5px;
  line-height: 1.3;
}
.faq-plus {
  font-size: 22px;
  font-weight: 300;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
details[open] .faq-plus { transform: rotate(45deg); }
.faq-answer {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 22px;
  max-width: 680px;
}

/* ── CONTACT ──────────────────────────────────────────────── */
#contact {
  padding: 90px 0;
  background: linear-gradient(150deg, #07182b 0%, #0a233d 100%);
}
.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.05;
  letter-spacing: -1px;
}
.contact-sub {
  color: var(--text-blue);
  font-size: 17px;
  line-height: 1.6;
  margin: 16px 0 0;
}
.contact-phones { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.phone-block {}
.phone-region {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-pale);
  margin-bottom: 4px;
}
.phone-number {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  transition: color 0.2s;
}
.phone-number:hover { color: var(--copper-pale); }
.contact-address {
  color: var(--text-slate);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 24px;
}

/* contact form */
.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.form-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-mid);
  border-radius: 9px;
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--copper); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: #7a4a0a;
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(192,122,62,0.35);
  transition: background 0.2s;
}
.btn-submit:hover { background: #5a3608; color: #ffffff; }
.form-thanks {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.6;
}
.form-thanks strong { color: var(--navy); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #050f1c;
  padding: 60px 0 30px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: .2px;
  margin-top: 14px;
}
.footer-tagline {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  color: var(--copper);
  letter-spacing: 3px;
}
.footer-blurb {
  color: #a8c0d8;
  font-size: 13.5px;
  line-height: 1.65;
  margin-top: 14px;
}
.footer-license {
  color: #a8c0d8;
  font-size: 0.8rem;
  margin-top: 8px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7e96ad;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: rgba(192,122,62,0.2); color: var(--copper-pale); }
.footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #a8c0d8;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.footer-contact-label {
  font-size: 11px;
  font-weight: 700;
  color: #7a9ab8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.footer-contact-value {
  color: #a8c0d8;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-contact-value:hover { color: #fff; }
.footer-bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #a8c0d8;
  font-size: 13px;
}
.footer-bottom a { color: #a8c0d8; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--copper); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; align-items: flex-start; padding: 72px 24px 72px; }
  .hero-stat-float { display: none; }
  .inspections-inner { grid-template-columns: 1fr; }
  .insp-photo { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(3,1fr); }
  .book-inner { grid-template-columns: 1fr; }
  .book-cover-wrap { display: none; }
  .academy-card { grid-template-columns: 1fr; padding: 36px; }
  .academy-photo { display: none; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: fixed; top: 74px; left: 0; right: 0; background: rgba(7,24,43,0.98); padding: 20px 24px 30px; gap: 18px; }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  .tech-grid { grid-template-columns: repeat(2,1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-copper, .btn-ghost-hero { justify-content: center; }
  .btn-call .call-text { display: none; }
}

/* ── ACCESSIBILITY: touch targets & contrast ───────────────── */
.social-link { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.btn-call { min-height: 44px; }
.nav a { min-height: 44px; display: inline-flex; align-items: center; }
.faq-plus { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.hero-sub { color: #ffffff; text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.hero-eyebrow { color: #ffffff; text-shadow: 0 1px 6px rgba(0,0,0,0.9); font-weight: 600; }
.hero-phone-region { color: #ffffff; }
.hero-phone-num { color: #ffffff; }

/* ── GOOGLE REVIEWS ─────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 1rem;
}

.review-card {
  background: var(--surface-light, #fff);
  border: 1px solid var(--border-light, #e8e4dc);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark, #2a2a2a);
  flex: 1;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy, #0f1f35);
}

.review-source {
  font-size: 0.8rem;
  color: var(--text-muted, #888);
}

/* ── Trust Badges ─────────────────────────────────────────────── */
.trust-badges-section {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}
.trust-badges-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 32px 0 20px;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 200px;
}
.badge-item img {
  max-width: 160px;
  height: auto;
  border-radius: 8px;
}
.badge-placeholder {
  width: 160px;
  height: 160px;
  background: #e9ecef;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #adb5bd;
}
.badge-label {
  font-size: 0.85rem;
  color: #555;
  font-weight: 600;
  text-align: center;
}
.badges-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 16px;
}

/* ── Trust Badges ─────────────────────────────────────────────── */
.trust-badges-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.badge-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.badge-item img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.badge-label {
  font-size: 0.78rem;
  color: var(--text-secondary, #666);
  text-align: center;
  max-width: 150px;
  line-height: 1.4;
}

/* ── Touch targets (Fix 4) ────────────────────────────────────── */
.badge-item a {
  min-height: 44px;
  min-width: 44px;
}

summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* ── Touch targets (Fix 3) ────────────────────────────────────── */
.badge-item a,
.btn-call,
.btn-copper,
.btn-navy,
.btn-ghost-hero,
.btn-tool,
.btn-submit,
.social-link,
.nav a,
.faq-plus,
summary {
  min-height: 44px;
  min-width: 44px;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  cursor: pointer;
}
