/* ============================================================
  WOOLACOMBE CLEANING — style.css
  Font: Roboto (Google Fonts)
  Palette: #0E8CA0 | #122747 | #F5F5F5 | #FFFFFF | #222222
============================================================ */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #222222;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── VARIABLES ──────────────────────────────────────────── */
:root {
  --green:      #0E8CA0;
  --green-dark: #0A7283;
  --black:      #0A0A0A;
  --white:      #ffffff;
  --grey-bg:    #F5F5F5;
  --soft-grey:  #F2F2F2;
  --border:     #DEDEDE;
  --text:       #222222;
  --muted:      #666666;
  --gold:       #FBBC05;
  --container:  1200px;
}

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

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-green   { background: #fff; color: var(--green); border-color: #9acdd6; }
.btn-green:hover { background: #e9f7fa; border-color: var(--green); }
.btn-black { background: linear-gradient(135deg, #0e8ca0 0%, #08697b 100%); color: #fff; border-color: #0b7f92; }
.btn-black:hover { background: linear-gradient(135deg, #0a7f91 0%, #075c6b 100%); border-color: #0a7080; }
.btn-outline-black { background: transparent; color: #122747; border-color: transparent; }
.btn-outline-black:hover { background: #f2f5f8; color: #122747; border-color: #dbe4eb; }
.btn-white { background: #fff; color: var(--green); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: #f0f0f0; border-color: #f0f0f0; }

/* ── SECTION TITLE ──────────────────────────────────────── */
.section-title {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 6px;
}
.section-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* =============================================================
   2. HERO SECTION
============================================================= */
.hero-section {
  padding: 40px 20px 40px;
  background: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: 28px;
  align-items: start;
  min-height: 580px;
}

/* Hero Left */
.hero-left {
  padding-top: 8px;
}
.hero-logo {
  max-width: 430px;
  margin-bottom: 18px;
}
.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.logo-svg {
  width: 100%;
  height: auto;
}
.hero-h1 {
  max-width: 620px;
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #16223e;
}
.hero-h1 strong {
  display: block;
  color: var(--green);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.95rem);
}
.hero-desc {
  max-width: 560px;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 30px;
  line-height: 1.65;
}

/* Trust badges */
.trust-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #e6ebf0;
}
.trust-item:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.trust-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.trust-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 2px;
}
.trust-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 18px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #16223e;
}
.hero-stars {
  color: var(--green);
  letter-spacing: 3px;
  font-size: 1rem;
  line-height: 1;
}
.hero-rating-copy {
  font-size: 0.92rem;
  font-weight: 500;
}
.hero-rating-google {
  font-size: 1.05rem;
  font-weight: 700;
  color: #4285f4;
}
.hero-rating-google::first-letter {
  color: #ea4335;
}

/* Hero Right – phone/buttons bar + Quote Form */
.hero-right {
  display: flex;
  flex-direction: column;
  background: #fff;
  gap: 14px;
}
.quote-top {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  padding: 0;
  margin-bottom: 0;
}
.quote-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.quote-phone svg { flex-shrink: 0; }
.quote-phone-num {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--black);
  display: block;
  line-height: 1.1;
}
.quote-phone-sub {
  font-size: 0.68rem;
  color: var(--muted);
  display: block;
}
.quote-top-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
.hero-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--border);
}
.hero-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #16223e;
}
.hero-nav a:hover { color: var(--green); }
.quote-card {
  background: linear-gradient(165deg, #0b8297 0%, #075f75 100%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.quote-card-head {
  padding: 26px 24px 18px;
  text-align: center;
  background: transparent;
}
.quote-card-head h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.quote-card-head p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.quote-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0 14px 0;
}
.field-wrap { position: relative; }
.field-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.field-wrap.area-wrap .field-icon { top: 14px; transform: none; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 16px 12px 16px 40px;
  background: #fff;
  border: none;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: box-shadow 0.2s;
}
.form-select {
  padding-left: 12px;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.form-textarea {
  padding: 14px 12px 14px 40px;
  resize: vertical;
  min-height: 110px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5) inset;
}
.form-input::placeholder, .form-textarea::placeholder { color: #aaa; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: #0bb5c7;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.form-submit:hover { background: #099eb0; }
.form-privacy {
  color: rgba(255,255,255,0.85);
  font-size: 0.7rem;
  text-align: center;
  padding: 12px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
}
/* Error / success states */
.field-error {
  display: none;
  font-size: 0.68rem;
  color: #d0ffd0;
  padding: 3px 6px 4px;
  background: rgba(0,0,0,0.15);
}
.field-wrap.has-error .field-error { display: block; }
.field-wrap.has-error .form-input,
.field-wrap.has-error .form-select,
.field-wrap.has-error .form-textarea {
  box-shadow: 0 0 0 2px #ff6b6b inset;
}
.form-success {
  display: none;
  background: rgba(0,0,0,0.2);
  color: #fff;
  text-align: center;
  padding: 24px 20px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 14px 14px;
  border-radius: 4px;
}
.form-success p {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 400;
  margin: 6px 0 16px;
}
.btn-back {
  display: inline-block;
  background: #fff;
  color: var(--green);
  border: 2px solid #fff;
  padding: 9px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s, color .2s;
}
.btn-back:hover {
  background: rgba(255,255,255,0.85);
}
.form-error {
  background: #f0fff0;
  color: #1a5c1a;
  border: 1px solid #b2d9b2;
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0 14px 14px;
}

/* =============================================================
   3. SERVICES SECTION
============================================================= */
.services-section {
  padding: 48px 20px 46px;
  background: #fff;
  border-top: 1px solid var(--border);
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 0;
}
.service-card {
  background: #fff;
  padding: 28px 16px 24px;
  text-align: center;
  transition: background 0.2s;
}
.service-card:hover { background: var(--soft-grey); }
.service-icon {
  color: var(--green);
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon img {
  /* Convert black SVG to brand teal */
  filter: brightness(0) saturate(100%) invert(43%) sepia(70%) saturate(671%) hue-rotate(144deg) brightness(88%) contrast(89%);
  display: block;
}
.service-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.35;
  color: var(--text);
}
.service-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.55;
}

/* =============================================================
   4. TESTIMONIALS SECTION
============================================================= */
.testi-section {
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.testi-inner {
  display: grid;
  grid-template-columns: minmax(0, 28%) minmax(0, 44%) minmax(0, 28%);
  grid-template-areas: "photo-left reviews photo-right";
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.testi-left {
  grid-area: reviews;
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.testi-left .section-title { text-align: left; margin-bottom: 16px; }
.testi-slide { flex-shrink: 0; box-sizing: border-box; display: flex; align-items: stretch; }
.s-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #DEDEDE; border: none; cursor: pointer;
  padding: 0; transition: background .2s, transform .2s;
}
.s-dot.active { background: var(--green); transform: scale(1.3); }
#sliderPrev:hover, #sliderNext:hover {
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: #fff !important;
}
.testi-card {
  border: 1px solid var(--border);
  padding: 20px 18px 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.tc-text { flex: 1; }
.tc-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.tc-text {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 12px;
}
.tc-author { font-size: 0.8rem; font-weight: 700; color: var(--text); }
/* Cleaner photo */
.testi-photo {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.testi-photo-left { grid-area: photo-left; }
.testi-photo-right { grid-area: photo-right; }
.testi-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* =============================================================
   5. COVERAGE + WHY CHOOSE SECTION
============================================================= */
.coverage-section {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.coverage-why {
  display: grid;
  grid-template-columns: 26% 30% 44%;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
}

/* Coverage panel */
.coverage-panel {
  background: var(--green);
  color: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.coverage-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.coverage-panel h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}
.coverage-text > p {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 10px;
  margin-bottom: 18px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.95);
}
.area-item svg { flex-shrink: 0; }
.map-wrap {
  background: #fff;
  padding: 20px;
  overflow: hidden;
  min-width: 0;
  display: flex;
  align-items: center;
}
.map-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* Why panel */
.why-panel {
  background: #fff;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-panel .section-title { text-align: left; margin-bottom: 16px; font-size: 0.85rem; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.why-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-title {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text);
  line-height: 1.3;
}
.why-desc {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.55;
}

/* =============================================================
   5b. WHY-PHOTO IMAGE OVERLAY
============================================================= */
.bn-why-photo {
  position: relative;
}
.bn-why-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, rgba(10,131,150,0.96) 0%, rgba(8,105,120,0.92) 100%);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bn-why-overlay-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bn-why-overlay-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.bn-why-overlay-text strong {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.2;
}
.bn-why-overlay-text span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

/* =============================================================
   6. CTA STRIP
============================================================= */
.cta-strip {
  background: #0a8396;
  padding: 26px 20px;
}
.cta-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-phone-circle { display: none; }
.cta-strip-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.cta-strip-text h3 {
  color: #fff;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}
.cta-strip-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.76rem;
}
.cta-strip-phone-nums { display: flex; flex-direction: column; }
.cta-phone-num {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
  text-decoration: none;
}
.cta-phone-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
}

/* =============================================================
   7. FOOTER
============================================================= */
.site-footer {
  background: #060b14;
  border-top: 1px solid #182230;
  padding: 20px 20px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-logo img {
  width: auto;
  height: 64px;
  display: block;
}
.footer-logo-svg {
  height: 70px;
  width: auto;
}
.footer-center { text-align: center; flex: 1; min-width: 0; }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 7px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.footer-links a { font-size: 0.72rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-links .sep { color: rgba(255,255,255,0.3); font-size: 0.72rem; }
.footer-address { font-size: 0.67rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* =============================================================
   BARNSTAPLE-STYLE SECTION LAYOUT (ILFRACOMBE)
============================================================= */
.bn-why-section {
  padding: 0;
  background: #fff;
  border-top: 1px solid #e3eaf5;
}
.bn-why-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.bn-why-photo {
  position: relative;
  overflow: hidden;
}
.bn-why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.bn-why-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  border-left: 1px solid #d6e7ec;
}
.bn-why-title {
  font-size: clamp(0.88rem, 1.7vw, 1.1rem);
  color: #122747;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.bn-why-title-bar {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 16px;
}
.bn-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.bn-why-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.bn-why-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.bn-why-item-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: #122747;
  margin-bottom: 3px;
  line-height: 1.35;
}
.bn-why-item-desc {
  font-size: 0.66rem;
  color: #1b1b1b;
  line-height: 1.45;
}

.bn-proof-section {
  padding: 14px 20px 24px;
  background: #ffffff;
}
.bn-proof-frame {
  max-width: var(--container);
  margin: 0 auto;
  border: 1px solid #c7dde2;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  display: grid;
  grid-template-columns: 26fr 22fr 52fr;
  overflow: hidden;
}
.bn-proof-coverage {
  background: #0a8396;
  color: #fff;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.bn-proof-coverage-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 800;
  margin-bottom: 2px;
}
.bn-proof-coverage-sub {
  font-size: 0.64rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}
.bn-proof-areas-cols {
  display: flex;
  gap: 8px;
}
.bn-proof-areas-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.bn-proof-areas-list li {
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}
.bn-pin-icon {
  width: 12px !important;
  height: 14px !important;
  min-width: 12px;
  flex-shrink: 0;
  display: inline-block;
}
.bn-proof-map-col {
  position: relative;
  overflow: hidden;
  background: #eef9fb;
  border-left: 1px solid #c7dde2;
  border-right: 1px solid #c7dde2;
}
.bn-proof-map-col img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}
.bn-proof-reviews {
  padding: 16px 16px 14px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bn-proof-title {
  font-size: clamp(0.88rem, 1.7vw, 1.1rem);
  color: #122747;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.bn-proof-title-center { text-align: center; }
.bn-proof-title-bar {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.bn-proof-reviews-stack { display: none; }
/* Slider visible */
.bn-proof-slider { display: flex; flex-direction: column; }
.bn-proof-slide { display: none; }
.bn-proof-slide.active { display: block; }
.bn-proof-stars {
  color: #FBBC05;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.bn-proof-review-text {
  font-size: 0.75rem;
  color: #1b1b1b;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 8px;
}
.bn-proof-review-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: #122747;
}
.bn-proof-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 4px;
}
.bn-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #b7dbe1;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.bn-proof-dot.active { background: var(--green); }

/* =============================================================
   RESPONSIVE — 991px (Tablet)
============================================================= */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { flex-direction: column; }
  .quote-top { justify-content: flex-start; flex-wrap: wrap; }
  .hero-nav { flex-wrap: wrap; justify-content: flex-start; }
  .quote-card { max-width: 100%; flex: none; width: 100%; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .bn-why-inner { grid-template-columns: 1fr; }
  .bn-why-photo { min-height: 280px; }
  .bn-proof-frame { grid-template-columns: 1fr; min-height: auto; }
  .bn-proof-coverage { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .bn-proof-map-col { min-height: 260px; }
  .testi-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "reviews"
      "photo-right";
  }
  .testi-photo-left { display: none; }
  .testi-photo { min-height: 340px; position: relative; height: 340px; }
  .testi-photo img { position: absolute; }
  .coverage-why { grid-template-columns: 1fr; }
  .coverage-panel { grid-template-columns: 1fr; }
  .map-wrap { padding: 16px; min-height: 260px; align-items: stretch; }
  .map-wrap img { height: 100%; object-fit: cover; }
  .why-panel { padding: 36px 28px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* =============================================================
   RESPONSIVE — 767px
============================================================= */
@media (max-width: 767px) {
  .hero-section { padding: 24px 16px 32px; }
  .hero-logo { max-width: 320px; }
  .hero-h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .hero-h1 strong { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .trust-item { border-right: 0; margin-right: 0; padding-right: 0; width: 100%; }
  .hero-ctas { flex-wrap: wrap; }
  .hero-rating { gap: 10px; }
  .bn-why-grid { grid-template-columns: 1fr; }
  .bn-proof-section { padding: 28px 14px 34px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; }
  .quote-top { flex-wrap: wrap; align-items: flex-start; gap: 10px; }
  .quote-phone { width: 100%; }
  .quote-top-ctas { justify-content: flex-start; width: 100%; }
}

@media (max-width: 640px) {
  /* slider already shown at all sizes */
}

/* =============================================================
   RESPONSIVE — 575px
============================================================= */
@media (max-width: 575px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { gap: 6px; }
  .hero-ctas .btn { font-size: 0.7rem; padding: 9px 12px; }
  .trust-row { gap: 14px; }
  .trust-item { flex: 1 1 calc(50% - 7px); min-width: 0; }
  .areas-list { grid-template-columns: 1fr; }
  .cta-strip-inner { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
  .cta-strip-phone { width: auto; justify-content: center; }
  .hero-section { padding: 20px 14px 28px; }
  .quote-card-head { padding: 18px 16px 12px; }
}

@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
}
