/*
Theme Name: SD Plumbing & Heating
Theme URI: https://www.sdplumbingandheating.com
Description: Custom WordPress theme for SD Plumbing & Heating, Edinburgh
Version: 1.0.0
Author: SD Plumbing & Heating
Text Domain: sdplumbing
*/

/* ============================================================
   SD PLUMBING & HEATING – HOMEPAGE STYLESHEET
   Design system matched to updated service page
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary:    #0f4485;   /* SD blue – CTA buttons, links */
  --color-dark:       #292a24;   /* Top bar, footer bg */
  --color-red:        #e3022b;   /* Pill labels, accent */
  --color-red-light:  rgba(227, 2, 43, 0.11); /* Pill bg */
  --color-bg:         #f7f7f7;   /* Body bg */
  --color-bg-alt:     #eff1f4;   /* Hero section bg */
  --color-bg-card:    #f3f5f6;   /* Card bg */
  --color-bg-blue:    #e6effb;   /* Boiler card bg */
  --color-text:       #292a24;   /* Headings */
  --color-text-body:  #555;      /* Body text */
  --color-border:     #e0e4ea;   /* Card borders */
  --font-heading:     'Manrope', sans-serif;
  --font-body:        'Montserrat', sans-serif;
  --radius-card:      16px;
  --radius-btn:       8px;
  --shadow-card:      0 2px 16px rgba(0,0,0,0.07);
  --max-width:        1200px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-body);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Utility ---- */
.section-label {
  display: inline-block;
  background: var(--color-red-light);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.section-label--light {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--color-text-body);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--color-dark);
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
}
.topbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bbb;
}
.topbar__contacts {
  display: flex;
  gap: 24px;
}
.topbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  transition: color 0.2s;
}
.topbar__link:hover { color: #fff; }

/* Phone number pill */
.topbar__link--phone {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 4px 12px 4px 10px;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.topbar__link--phone:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ============================================================
   STICKY FULL HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.nav__logo img { height: 38px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link:hover, .nav__link--active { color: var(--color-primary); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 260px;
  padding: 8px 0;
  z-index: 200;
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text);
  transition: background 0.15s;
}
.nav__dropdown-menu a:hover { background: #f5f7fa; color: var(--color-primary); }
.nav__dropdown:hover .nav__dropdown-menu { display: block; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--color-bg-alt);
  padding: 72px 0 80px;
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.hero__stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.hero__rating-text { font-size: 13px; color: var(--color-text-body); }
.hero__rating-text strong { color: var(--color-text); }

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 16px;
  color: var(--color-text-body);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__badges { margin-top: 8px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__badge-img { height: 44px; width: auto; opacity: 0.85; }
.hero__badge-img--gassafe { height: 52px; opacity: 1; }

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.hero__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.hero__gas-safe {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hero__gas-safe img { height: 48px; width: auto; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}
.stats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 40px;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
.stats__item div {
  display: flex;
  flex-direction: column;
}
.stats__item strong {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
}
.stats__item span {
  font-size: 13px;
  color: var(--color-text-body);
}
.stats__icon { flex-shrink: 0; }
.stats__divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 88px 0;
  background: var(--color-bg);
}
.services__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.services__inner .section-sub {
  margin: 0 auto 48px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.services__card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
}
.services__card-img {
  height: 220px;
  overflow: hidden;
}
.services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.services__card:hover .services__card-img img { transform: scale(1.04); }
.services__card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services__card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}
.services__card-body p { font-size: 14px; color: var(--color-text-body); }
.services__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 8px;
}
.services__list li {
  font-size: 14px;
  color: var(--color-text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.services__list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.services__card-body .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how {
  background: #fafafa;
  padding: 88px 0;
  border-top: 1px solid var(--color-border);
}
.how__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.how__inner .section-sub { margin: 0 auto 56px; }
.how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.how__step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.how__step-icon {
  width: 72px;
  height: 72px;
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
.how__step-num {
  position: absolute;
  top: -6px;
  left: calc(50% + 20px);
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}
.how__step h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}
.how__step p { font-size: 14px; color: var(--color-text-body); }

.how__connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  border-top: 2px dashed #c8d0dc;
  margin-top: 36px;
  align-self: flex-start;
}
.how__cta { margin-top: 52px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  background: var(--color-bg);
  padding: 88px 0;
}
.why__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 8px;
}
.why__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}
.why__card:hover { transform: translateY(-3px); }
.why__card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__card-icon img { width: 56px; height: 56px; object-fit: contain; }
.why__card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}
.why__card p { font-size: 14px; color: var(--color-text-body); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: #fafafa;
  padding: 88px 0;
  border-top: 1px solid var(--color-border);
}
.testimonials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.testimonials__inner .section-sub { margin: 0 auto 48px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.testimonials__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonials__stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.testimonials__card p {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonials__avatar {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.testimonials__author > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.testimonials__author strong {
  font-size: 14px;
  color: var(--color-text);
  font-family: var(--font-heading);
}
.testimonials__author span { font-size: 12px; color: #999; }
.testimonials__google { margin-left: auto; }

/* ============================================================
   FINANCE
   ============================================================ */
.finance {
  background: var(--color-primary);
  padding: 80px 0;
}
.finance__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.finance__content .section-heading { color: #fff; }
.finance__content p { color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 480px; }
.finance__content .btn--primary {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.finance__pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.finance__pill {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.finance__pill span {
  font-weight: 800;
  color: #fff;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: #fff;
  padding: 88px 0;
}
.faq__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.faq__left {
  position: sticky;
  top: 100px;
}
.faq__img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  object-fit: cover;
  max-height: 520px;
}
.faq__right .section-sub { margin-bottom: 32px; }
.faq__right .section-sub a { color: var(--color-primary); text-decoration: underline; }

.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__item:first-child { border-top: 1px solid var(--color-border); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--color-primary); }
.faq__question svg {
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq__question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq__answer {
  display: none;
  padding: 12px 16px 18px;
}
.faq__item.is-open .faq__answer { display: block; }
.faq__answer p { font-size: 14px; color: var(--color-text-body); line-height: 1.7; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--color-dark);
  padding: 56px 0;
}
.cta-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-strip__text p { color: rgba(255,255,255,0.75); font-size: 16px; }
.cta-strip__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn--white {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
  font-weight: 700;
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover { border-color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1b16;
  color: #aaa;
  padding: 64px 0 0;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo { height: 48px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer__col--brand p { font-size: 14px; line-height: 1.65; margin-bottom: 12px; }
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: color 0.2s, border-color 0.2s;
}
.footer__social a:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 14px;
  color: #aaa;
  transition: color 0.2s;
}
.footer__col ul a:hover { color: #fff; }

.footer__contact { gap: 14px !important; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #aaa;
}
.footer__contact li svg { flex-shrink: 0; margin-top: 2px; }
.footer__contact a { color: #aaa; transition: color 0.2s; }
.footer__contact a:hover { color: #fff; }


.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: #666;
}
.footer__bottom a { color: #888; transition: color 0.2s; }
.footer__bottom a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__img { height: 320px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__left { display: none; }
  .finance__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav__links { display: none; }
  .nav__inner .btn--primary { display: none; }
  .nav__burger { display: flex; }
  .stats__divider { display: none; }
  .stats__inner { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
  .stats__item { min-width: 0; padding: 20px 12px; flex: unset; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .stats__item div { align-items: center; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .how__steps { flex-direction: column; align-items: center; gap: 32px; }
  .how__step { margin-bottom: 0; }
  .how__connector { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   ACCREDITATIONS BAR
   ============================================================ */
.accred {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 20px 24px;
}
.accred__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.accred__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin-right: 8px;
}
.accred__logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
}
.accred__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.accred__item img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.accred__item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}
.accred__divider {
  width: 1px;
  height: 32px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ============================================================
   EMERGENCY BANNER
   ============================================================ */
.emergency {
  background: #fff8f8;
  border-top: 3px solid #e3022b;
  border-bottom: 1px solid #fcdde3;
  padding: 20px 24px;
}
.emergency__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.emergency__icon {
  color: #e3022b;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.emergency__text {
  flex: 1;
  min-width: 200px;
}
.emergency__text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 2px;
}
.emergency__text span {
  font-size: 14px;
  color: var(--color-text-body);
}
.btn--emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e3022b;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background 0.2s;
}
.btn--emergency:hover { background: #b8001e; }
.btn--emergency-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #e3022b;
  border: 2px solid #e3022b;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: all 0.2s;
}
.btn--emergency-outline:hover { background: #e3022b; color: #fff; }

/* ============================================================
   PORTFOLIO GALLERY
   ============================================================ */
.portfolio {
  background: #fff;
  padding: 80px 24px;
  text-align: center;
}
.portfolio__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.portfolio__inner .section-sub {
  margin: 0 auto 32px;
  text-align: center;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
}
.portfolio__item:last-child img {
  object-position: center top;
}
.portfolio__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.portfolio__item--tall {
  grid-row: span 2;
}
.portfolio__item--wide {
  grid-column: span 2;
}
.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio__item:hover img { transform: scale(1.05); }
.portfolio__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  padding: 20px 16px 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio__item:hover .portfolio__overlay { opacity: 1; }
.portfolio__overlay span {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}
.portfolio__cta { margin-top: 8px; }

/* ============================================================
   MEET THE TEAM
   ============================================================ */
.team {
  background: var(--color-bg);
  padding: 80px 24px;
  text-align: center;
}
.team__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.team__inner .section-sub {
  margin: 0 auto 0;
  text-align: center;
}
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
  text-align: left;
}
.team__card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.team__photo {
  height: 260px;
  overflow: hidden;
}
.team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team__info {
  padding: 24px;
}
.team__info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
}
.team__role {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(15,68,133,0.08);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.team__info p {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.6;
}

/* ============================================================
   PRICING TRANSPARENCY
   ============================================================ */
.pricing {
  background: #fff;
  padding: 80px 24px;
}
.pricing__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.pricing__content p {
  color: var(--color-text-body);
  margin-bottom: 28px;
  line-height: 1.7;
}
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(15,68,133,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing__card-body h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
}
.pricing__from {
  font-size: 15px;
  color: var(--color-text-body);
  margin-bottom: 6px;
}
.pricing__from strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
}
.pricing__card-body p {
  font-size: 13px;
  color: var(--color-text-body);
  line-height: 1.5;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area {
  background: var(--color-bg);
  padding: 80px 24px;
}
.area__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.area__content p {
  color: var(--color-text-body);
  margin-bottom: 24px;
  line-height: 1.7;
}
.area__locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin-bottom: 28px;
}
.area__loc-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.area__loc-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.area__loc-col li svg { flex-shrink: 0; }
.area__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   CALL BACK FORM
   ============================================================ */
.callback {
  background: var(--color-primary);
  padding: 80px 24px;
}
.callback__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.callback__heading { color: #fff !important; }
.callback__content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.7;
}
.callback__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.callback__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
}
.callback__trust-item svg { color: #6ee7b7; flex-shrink: 0; }
.callback__form-wrap {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.callback__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.callback__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.callback__field label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}
.callback__field label span { color: #e3022b; }
.callback__field input,
.callback__field select {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.callback__field input:focus,
.callback__field select:focus {
  border-color: var(--color-primary);
}
.btn--submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 15px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn--submit:hover { background: #0a3268; }
.callback__privacy {
  font-size: 12px;
  color: #999;
  text-align: center;
}
.callback__form-success {
  text-align: center;
  padding: 20px 0;
}
.callback__form-success h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  margin: 12px 0 8px;
}
.callback__form-success p {
  font-size: 14px;
  color: var(--color-text-body);
}



/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
}
.mobile-bar__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 50%;
  height: 100%;
  background: #e3022b;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  float: left;
  padding: 0 8px;
  white-space: nowrap;
  overflow: hidden;
}
.mobile-bar__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 50%;
  height: 100%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  float: right;
  padding: 0 8px;
  white-space: nowrap;
  overflow: hidden;
}



/* ============================================================
   HERO REVIEW SNIPPET
   ============================================================ */
.hero__review-snippet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 20px;
  max-width: 460px;
}
.hero__review-snippet svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .pricing__inner { grid-template-columns: 1fr; }
  .pricing__cards { grid-template-columns: 1fr 1fr 1fr; }
  .area__inner { grid-template-columns: 1fr; }
  .callback__inner { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .portfolio__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .portfolio__item--tall { grid-row: span 1; }
  .portfolio__item--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .accred__label { display: none; }
  .accred__divider { display: none; }
  .emergency__inner { flex-direction: column; align-items: flex-start; }
  .pricing__cards { grid-template-columns: 1fr; }
  .area__locations { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr 1fr; }
  .portfolio__item--wide { grid-column: span 2; }
  .callback__form-wrap { padding: 24px 20px; }
  .floating-cta { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__item--wide,
  .portfolio__item--tall { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================
   TEAM SECTION - VIDEO LAYOUT
   ============================================================ */
.team__video-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
  margin-top: 40px;
  text-align: left;
}
.team__video-embed {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.team__video-link {
  display: block;
  position: relative;
  line-height: 0;
}
.team__video-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.team__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.team__video-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 16px;
}
.team__video-content p {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.team__video-content .btn {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .team__video-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .team__video-content {
    text-align: center;
  }
  .team__video-content .btn {
    width: 100%;
    justify-content: center;
  }
}



/* ============================================================
   FOOTER BADGES
   ============================================================ */
.footer__badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer__badge {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer__badge:hover { opacity: 1; }
.footer__badge--gassafe {
  height: 60px;
  /* No filter — the yellow triangle renders naturally on the dark footer */
}
.footer__badge--awards {
  height: 44px;
  filter: brightness(0) invert(1); /* white version on dark bg */
}


/* ============================================================
   PAGE-SPECIFIC INLINE STYLES (extracted from HTML templates)
   De-duplicated: review-bar, mobile-nav accordion, 900px
   breakpoint included ONCE here (shared across all 11 pages)
   ============================================================ */

/* ---- Shared: Overflow Fix (all pages) ---- */
html, body { overflow: visible !important; }
.site-header, section, footer { overflow-x: clip; }

/* ---- Shared: Container utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Shared: Section Header (location + service pages) ---- */
.section-header { margin-bottom: 40px; }
.section-header .section-label {
  display: inline-block;
  background: rgba(227,2,43,0.11);
  color: #292a24;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #292a24;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 16px;
  color: #555;
  max-width: 640px;
  line-height: 1.7;
}
.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }

/* ---- Shared: Sticky Review Bar (all pages) ---- */
.review-bar {
  background: #0f4485;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.review-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.review-bar__stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; line-height: 1; }
.review-bar__text { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: #fff; }
.review-bar__text strong { font-weight: 700; }
.review-bar__sep { width: 1px; height: 18px; background: rgba(255,255,255,0.25); }
.review-bar__link {
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 2px;
  display: flex; align-items: center; gap: 5px; transition: color 0.2s;
}
.review-bar__link:hover { color: #fff; }
.review-bar__google-logo svg { width: 16px; height: 16px; }
.review-bar__mobile-link {
  display: none; align-items: center; gap: 4px;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s;
}
.review-bar__mobile-link:hover { color: #fff; }
.review-bar__mobile-link strong { color: #fff; }
.review-bar__google-logo--mobile svg { width: 13px; height: 13px; vertical-align: -1px; }
@media (max-width: 768px) {
  .review-bar { padding: 7px 0; }
  .review-bar__stars { font-size: 14px; letter-spacing: 1px; }
  .review-bar__text, .review-bar__sep, .review-bar__link { display: none; }
  .review-bar__mobile-link { display: inline-flex; }
}

/* ---- Shared: Mobile Nav Accordion (all pages) ---- */
.mobile-nav__dropdown { display: flex; flex-direction: column; }
.mobile-nav__toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: none; font-size: 15px; font-weight: 500;
  font-family: 'Montserrat', sans-serif; color: #292a24; padding: 10px 0;
  border-bottom: 1px solid #f0f0f0; cursor: pointer;
}
.mobile-nav__dropdown.is-open .mobile-nav__toggle svg { transform: rotate(180deg); }
.mobile-nav__sub { display: none; flex-direction: column; padding-left: 16px; }
.mobile-nav__dropdown.is-open .mobile-nav__sub { display: flex; }
.mobile-nav__sub a { font-size: 14px; color: #555; padding: 9px 0; border-bottom: 1px solid #f5f5f5; }
.mobile-nav__sub a:last-child { border-bottom: 1px solid #f0f0f0; }

/* ---- Shared: 900px Nav Breakpoint (all pages) ---- */
@media (min-width: 901px) { .mobile-nav { display: none !important; } }
@media (max-width: 900px) {
  .nav__links { display: none !important; }
  .nav__inner .btn--primary { display: none !important; }
  .nav__burger { display: flex !important; }
}

/* ---- Shared: Pill Label (multiple pages) ---- */
.pill {
  display: inline-block;
  background: rgba(227,2,43,0.11);
  color: #292a24;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 12px;
  margin-bottom: 14px;
}

/* ---- Shared: Trust Bar (location + finance + boiler pages) ---- */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e0e4ea;
  padding: 28px 0;
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #292a24;
}
.trust-item svg { color: #0f4485; flex-shrink: 0; }

/* ---- Shared: Breadcrumb (service + gallery + blog pages) ---- */
.breadcrumb {
  font-size: 13px;
  color: var(--color-text-body);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: #bbb; }

/* ---- Shared: Button Variants ---- */
.btn--white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s;
}
.btn--white-outline:hover { border-color: #fff; }

/* ---- Shared: Process Steps (location + boiler pages) ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: #e0e4ea;
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0f4485;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(15,68,133,0.3);
  flex-shrink: 0;
}
.process-step h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #292a24;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}

/* ---- Shared: Form Elements ---- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 600; color: #333; margin-bottom: 6px; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde1ea;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: #0f4485; }
.form-field textarea { resize: vertical; min-height: 100px; }
.btn-form-submit {
  width: 100%;
  background: #0f4485;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-form-submit:hover { background: #0a3368; }


/* ============================================================
   02 — ABOUT US PAGE
   ============================================================ */

/* ---- 2a. About Banner ---- */
.about-banner {
  background: var(--color-bg-alt);
  padding: 80px 0 60px;
}
.about-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
.about-banner__tag {
  display: inline-block;
  background: var(--color-red-light);
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.about-banner__left h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  margin: 0 0 18px;
}
.about-banner__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.about-banner__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}
.about-banner__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}
.about-banner__list li svg { flex-shrink: 0; }
.about-banner__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about-banner__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-banner__social span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-body);
}
.about-banner__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  transition: all 0.2s;
}
.about-banner__social a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.about-banner__social a svg { stroke: currentColor; }

/* Banner — Right (video + stats) */
.about-banner__right { display: flex; flex-direction: column; gap: 20px; }
.about-banner__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.about-banner__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.about-banner__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.about-banner__stat {
  background: #fff;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.about-banner__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}
.about-banner__stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-body);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .about-banner__inner { grid-template-columns: 1fr; gap: 36px; }
  .about-banner__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-banner { padding: 60px 0 40px; }
  .about-banner__stats { grid-template-columns: 1fr 1fr; }
}


/* ---- 2b. Our Story — sd_b3 ---- */
.sd-b3 {
  background: #fff;
  padding: 80px 0;
}
.sd-b3__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sd-b3__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sd-b3__cell { overflow: hidden; }
.sd-b3__cell img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sd-b3__cell:hover img { transform: scale(1.04); }
.sd-b3__cell--tl { border-radius: 70px 16px 16px 16px; }
.sd-b3__cell--tr { border-radius: 16px 70px 16px 16px; }
.sd-b3__cell--bl { border-radius: 16px 16px 16px 70px; }
.sd-b3__cell--br { border-radius: 16px 16px 70px 16px; }
.sd-b3__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 20px;
}
.sd-b3__text p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}
.sd-b3__points {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sd-b3__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.sd-b3__points li svg { color: var(--color-primary); flex-shrink: 0; }

@media (max-width: 900px) {
  .sd-b3__inner { grid-template-columns: 1fr; gap: 40px; }
  .sd-b3__images { order: 2; }
  .sd-b3__content { order: 1; }
}
@media (max-width: 480px) {
  .sd-b3__cell img { height: 160px; }
}


/* ---- 2c. Why Choose Us — sd_b8 ---- */
.sd-b8 {
  background: #f7f7f7;
  padding: 80px 0;
}
.sd-b8__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.sd-b8__header {
  text-align: center;
  margin-bottom: 48px;
}
.sd-b8__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 12px;
}
.sd-b8__header p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-body);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.sd-b8__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sd-b8__card {
  background: #f0f0f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sd-b8__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.sd-b8__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(15,68,133,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--color-primary);
}
.sd-b8__icon svg { stroke: currentColor; }
.sd-b8__card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 10px;
}
.sd-b8__card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .sd-b8__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sd-b8__grid { grid-template-columns: 1fr; }
}


/* ---- 2d. FAQ — sd_b9 ---- */
.sd-b9 {
  background: #fff;
  padding: 80px 0;
}
.sd-b9__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
.sd-b9__accordion h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 14px;
}
.sd-b9__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-body);
  margin-bottom: 32px;
  line-height: 1.65;
}
.sd-b9__sub a { color: var(--color-primary); text-decoration: underline; }
.sd-b9__list { display: flex; flex-direction: column; gap: 0; }
.sd-b9__item { border-bottom: 1px solid var(--color-border); }
.sd-b9__item:first-child { border-top: 1px solid var(--color-border); }
.sd-b9__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  transition: color 0.2s;
}
.sd-b9__question:hover { color: var(--color-primary); }
.sd-b9__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
}
.sd-b9__icon svg { stroke: currentColor; }
.sd-b9__minus { display: none; }
.sd-b9__item.is-open .sd-b9__plus { display: none; }
.sd-b9__item.is-open .sd-b9__minus { display: block; }
.sd-b9__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.sd-b9__item.is-open .sd-b9__answer {
  max-height: 300px;
  opacity: 1;
}
.sd-b9__answer p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.75;
  padding-bottom: 18px;
  margin: 0;
}

/* sd_b9 — Image grid */
.sd-b9__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.sd-b9__cell { overflow: hidden; }
.sd-b9__cell img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sd-b9__cell:hover img { transform: scale(1.04); }
.sd-b9__cell--tl { border-radius: 70px 16px 16px 16px; }
.sd-b9__cell--tr { border-radius: 16px 70px 16px 16px; }
.sd-b9__cell--bl { border-radius: 16px 16px 16px 70px; }
.sd-b9__cell--br { border-radius: 16px 16px 70px 16px; }

@media (max-width: 900px) {
  .sd-b9__inner { grid-template-columns: 1fr; }
  .sd-b9__images { display: none; }
}


/* ---- 2e. Team Gallery (matches existing site) ---- */
.team_gallery_section { padding: 80px 0; background: #f8f9fb; }
.team_gallery_section .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.team_gallery_cont { text-align: center; }
.team_gallery_cont .about_button {
  display: inline-block;
  background: var(--color-red-light);
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.team_gallery_cont .cst_heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.team_gallery_cont .banner_desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-body);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Tabs */
.csstm_tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.cstm-tabs {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-body);
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}
.cstm-tabs:hover,
.cstm-tabs.active_tag {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Grid */
.tab-contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

/* Member card */
.cstm_tab_col {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.cstm_tab_col:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* Department tag badge */
.cstm_tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.tag-leadership { background: #eef2ff; color: var(--color-primary); }
.tag-boilers    { background: #e8f5e9; color: #2e7d32; }
.tag-bathrooms  { background: #fff3e0; color: #e65100; }

/* Member image */
.cstm_feature_image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) brightness(0.85);
  transition: filter 0.4s ease;
}
.cstm_tab_col:hover .cstm_feature_image { filter: grayscale(0%) brightness(1); }

/* Member info */
.member_info { padding: 16px 18px; }
.member_heading {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 3px;
}
.member_desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #777;
}

/* Join / Last col card */
.client_last_col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary), #0a3060);
  min-height: 280px;
  padding: 32px 24px;
}
.client_last_col .member_heading { color: #fff; font-size: 1rem; }
.client_last_col .member_desc { color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.client_last_col .about_button {
  background: #fff;
  color: var(--color-primary);
  font-size: 12px;
  padding: 8px 18px;
  border-radius: 20px;
}
.client_last_col__placeholder {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.client_last_col__placeholder svg { stroke: #fff; }

@media (max-width: 1024px) {
  .tab-contents { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .tab-contents { grid-template-columns: repeat(2, 1fr); }
  .team_gallery_section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .tab-contents { grid-template-columns: 1fr 1fr; gap: 16px; }
}


/* ---- 2f. About Reviews (legacy compat) ---- */
.about-reviews { background: #fff; padding: 80px 0; }
.about-reviews__inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.about-reviews__header { text-align: center; margin-bottom: 48px; }
.about-reviews__header h2 { font-family: var(--font-heading); font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: var(--color-text); margin: 0 0 12px; }
.about-reviews__header p { font-family: var(--font-body); font-size: 15px; color: var(--color-text-body); max-width: 480px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #f8f9fb; border-radius: 16px; padding: 28px 24px; }
.review-card__stars { color: #f5a623; font-size: 1rem; margin-bottom: 14px; }
.review-card__text { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.review-card__name { font-size: 14px; font-weight: 700; color: var(--color-text); }
.review-card__source { font-size: 12px; color: #888; }
.review-card__google { display: flex; align-items: center; gap: 4px; }
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   03 — BATHROOM FITTERS PAGE
   ============================================================ */
.hero__img-wrap video.hero__img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.svc-detail { background: #fff; padding: 80px 24px; }
.svc-detail__inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.svc-detail__collage { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 12px; }
.svc-detail__collage-main { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(15,68,133,0.10); }
.svc-detail__collage-main img { width: 100%; height: 320px; object-fit: cover; object-position: center; display: block; transition: transform 0.4s ease; }
.svc-detail__collage-main:hover img { transform: scale(1.03); }
.svc-detail__collage-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-detail__collage-sm { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(15,68,133,0.08); }
.svc-detail__collage-sm img { width: 100%; height: 160px; object-fit: cover; object-position: center; display: block; transition: transform 0.4s ease; }
.svc-detail__collage-sm:hover img { transform: scale(1.04); }
.svc-detail__content { padding-top: 8px; }
.svc-detail__content .section-heading { text-align: left; margin-bottom: 16px; }
.svc-detail__content .section-sub { text-align: left; margin-bottom: 32px; }
.svc-detail__list { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 14px; }
.svc-detail__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--color-text); line-height: 1.5; }
.svc-detail__list li svg { flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }
.svc-detail__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.bth-portfolio { background: var(--color-bg); padding: 80px 24px; }
.bth-portfolio__inner { max-width: var(--max-width); margin: 0 auto; }
.bth-portfolio__header { text-align: center; margin-bottom: 48px; }
.bth-portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr 1fr; gap: 16px; }
.bth-portfolio__grid > div[style] { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; grid-row: span 2; }
.bth-portfolio__item { border-radius: 12px; overflow: hidden; position: relative; background: #e8edf4; flex: 1; min-height: 0; }
.bth-portfolio__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.bth-portfolio__item:hover img { transform: scale(1.04); }
.bth-portfolio__item--tall { grid-row: span 2; }
.bth-portfolio__item--tall img { height: 100%; }
@media (max-width: 768px) {
  .bth-portfolio__grid { display: flex !important; flex-wrap: wrap !important; gap: 12px !important; }
  .bth-portfolio__grid > div[style] { display: contents !important; }
  .bth-portfolio__grid .bth-portfolio__item,
  .bth-portfolio__grid .bth-portfolio__item--tall { flex: 0 0 calc(50% - 6px) !important; height: 200px !important; min-height: 0 !important; }
}
.bth-portfolio__label { position: absolute; bottom: 12px; left: 12px; background: rgba(15,68,133,0.85); color: #fff; font-size: 12px; font-weight: 700; font-family: var(--font-heading); padding: 4px 10px; border-radius: 20px; letter-spacing: 0.04em; text-transform: uppercase; }
.bth-portfolio__grid--tall { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
.bth-portfolio__item--span2 { grid-column: span 2; }
.bth-portfolio__item--span2 img { height: 340px; }
.bth-portfolio__banner { margin-top: 16px; border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.bth-portfolio__banner img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.bth-portfolio__banner:hover img { transform: scale(1.03); }
.bth-portfolio__cta { text-align: center; margin-top: 36px; }
.included { background: #fff; padding: 80px 24px; }
.included__inner { max-width: var(--max-width); margin: 0 auto; }
.included__header { text-align: center; margin-bottom: 48px; }
.included__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.included__card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 16px; padding: 28px 24px; text-align: left; }
.included__icon { width: 48px; height: 48px; background: rgba(15,68,133,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.included__card h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--color-text); margin: 0 0 8px; }
.included__card p { font-size: 14px; color: var(--color-text-body); margin: 0; line-height: 1.6; }
.vid-testimonials { background: var(--color-bg); padding: 80px 24px; }
.vid-testimonials__inner { max-width: var(--max-width); margin: 0 auto; }
.vid-testimonials__header { text-align: center; margin-bottom: 48px; }
/* Video Testimonials Slider */
.vid-testimonials__slider-wrap {
  position: relative;
  padding: 0 48px;
}
.vid-testimonials__slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 16px;
}
.vid-testimonials__slider::-webkit-scrollbar { display: none; }
.vid-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vid-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.vid-card__thumb { position: relative; background: #000; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.vid-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vid-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.vid-card__play svg { width: 56px; height: 56px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); transition: transform 0.2s; }
.vid-card:hover .vid-card__play svg { transform: scale(1.1); }
.vid-card__body { padding: 20px; }
.vid-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--color-text); margin: 0 0 4px; }
.vid-card__location { font-size: 13px; color: var(--color-text-body); margin: 0 0 10px; }
.vid-card__stars { color: #f5a623; font-size: 14px; margin-bottom: 8px; }
.vid-card__quote { font-size: 14px; color: var(--color-text-body); line-height: 1.6; margin: 0; font-style: italic; }
.vid-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 5;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s, box-shadow 0.2s;
  color: var(--color-text);
}
.vid-slider__arrow:hover { background: var(--color-primary); color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.vid-slider__arrow--prev { left: 0; }
.vid-slider__arrow--next { right: 0; }
.bth-portfolio__header .section-heading,
.bth-portfolio__header .section-sub,
.included__header .section-heading,
.included__header .section-sub,
.vid-testimonials__header .section-heading,
.vid-testimonials__header .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.why__icon { width: 56px; height: 56px; background: rgba(15,68,133,0.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
@media (max-width: 768px) {
  .svc-detail__inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail__collage { position: static; }
  .svc-detail__collage-main img { height: 220px; }
  .svc-detail__collage-sm img { height: 130px; }
  .svc-detail__content { text-align: center; }
  .svc-detail__content .section-heading { text-align: center; }
  .svc-detail__content .section-sub { text-align: center; }
  .svc-detail__content .section-label { display: inline-block; }
  .svc-detail__content .svc-detail__bullets { text-align: left; display: inline-block; }
  .svc-detail__actions { justify-content: center; }
  .included__grid { grid-template-columns: 1fr; }
  .bth-portfolio__grid { grid-template-columns: 1fr 1fr; }
  .bth-portfolio__item img { height: 180px; }
  .bth-portfolio__item--tall img { height: 180px; }
  .vid-testimonials__slider-wrap { padding: 0 36px; }
  .vid-card { flex: 0 0 calc(50% - 12px); min-width: 260px; }
}


/* ============================================================
   04 — GALLERY PAGE
   ============================================================ */
.gallery-hero { background: linear-gradient(135deg, #0a3060 0%, var(--color-primary) 60%, #1a5098 100%); padding: 80px 24px 64px; text-align: center; color: #fff; }
.gallery-hero__inner { max-width: var(--max-width); margin: 0 auto; }
.gallery-hero .breadcrumb { justify-content: center; margin-bottom: 20px; }
.gallery-hero .breadcrumb a, .gallery-hero .breadcrumb__sep { color: rgba(255,255,255,0.7); }
.gallery-hero .breadcrumb span:last-child { color: #fff; }
.gallery-hero__heading { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin: 0 0 16px; line-height: 1.15; }
.gallery-hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.gallery-hero__stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.gallery-hero__stat { text-align: center; }
.gallery-hero__stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: #fff; }
.gallery-hero__stat span { font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.gallery-filter { background: #fff; border-bottom: 1px solid var(--color-border); position: sticky; top: 72px; z-index: 90; padding: 20px 24px; }
.gallery-filter__inner { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: center; gap: 0; }
.gallery-filter__pill-group { display: inline-flex; border: 2px solid var(--color-primary); border-radius: 40px; overflow: hidden; }
.gallery-filter__btn { padding: 10px 28px; font-size: 0.95rem; font-weight: 600; font-family: var(--font-heading); color: var(--color-primary); background: #fff; border: none; border-right: 1px solid var(--color-primary); cursor: pointer; transition: background 0.2s, color 0.2s; white-space: nowrap; }
.gallery-filter__btn:last-child { border-right: none; }
.gallery-filter__btn:hover { background: rgba(15,68,133,0.06); }
.gallery-filter__btn.is-active { background: var(--color-primary); color: #fff; }
.gallery-filter__count { display: none; }
.gallery-grid-section { padding: 56px 24px 80px; }
.gallery-grid-section__inner { max-width: var(--max-width); margin: 0 auto; }
.gallery-panel { display: none; }
.gallery-panel.is-active { display: block; }
.gallery-panel__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.gallery-panel__title { font-size: 1.5rem; font-weight: 800; }
.gallery-panel__subtitle { font-size: 0.9rem; color: var(--color-text-body); margin-top: 4px; }
.gallery-panel__cta { flex-shrink: 0; }
.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-masonry .gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; display: block; flex: none; max-width: 100%; }
.gallery-masonry .gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; border-radius: 0; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,68,133,0.7) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__zoom { width: 36px; height: 36px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-left: auto; margin-bottom: auto; margin-top: 12px; position: absolute; top: 12px; right: 12px; }
.gallery-cta-strip { background: #fff; border-radius: 16px; padding: 40px 48px; margin: 48px 0 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; box-shadow: 0 2px 16px rgba(15,68,133,0.07); flex-wrap: wrap; }
.gallery-cta-strip__text h3 { font-size: 1.25rem; font-weight: 800; margin: 0 0 6px; }
.gallery-cta-strip__text p { font-size: 0.9rem; color: var(--color-text-body); margin: 0; }
.gallery-cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 88vh; border-radius: 8px; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,0.5); }
.lightbox__close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.15); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox__close:hover { background: rgba(255,255,255,0.3); }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.3); }
.lightbox__counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.875rem; font-family: var(--font-heading); }
@media (max-width: 900px) {
  .gallery-masonry { columns: 2; }
  .gallery-cta-strip { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .gallery-masonry { columns: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }
  .gallery-hero { padding: 56px 20px 48px; }
  .gallery-hero__stats { gap: 28px; }
  .gallery-filter__btn { padding: 14px 16px; font-size: 0.875rem; }
  .gallery-cta-strip { flex-direction: column; text-align: center; }
  .gallery-cta-strip__actions { justify-content: center; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}


/* ============================================================
   05 — CONTACT US PAGE
   ============================================================ */
.contact-hero { background: linear-gradient(135deg, #0a3060 0%, #0f4485 60%, #1a5098 100%); padding: 80px 0 60px; color: #fff; text-align: center; }
.contact-hero__inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.contact-hero__breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.contact-hero__breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.contact-hero__breadcrumb a:hover { color: #fff; }
.contact-hero h1 { font-family: 'Manrope', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin: 0 0 16px; line-height: 1.15; }
.contact-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.contact-methods { background: #fff; padding: 0; position: relative; z-index: 2; }
.contact-methods__inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; transform: translateY(-40px); }
.contact-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.10); padding: 36px 28px; text-align: center; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; display: block; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.14); }
.contact-card__icon { width: 56px; height: 56px; background: #eef2ff; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #0f4485; }
.contact-card__label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #0f4485; margin-bottom: 8px; }
.contact-card__value { font-size: 1.1rem; font-weight: 700; color: #111; margin-bottom: 6px; }
.contact-card__sub { font-size: 0.85rem; color: #666; }
.contact-main { background: #f8f9fb; padding: 20px 0 80px; }
.contact-main__inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info__heading { font-family: 'Manrope', sans-serif; font-size: 1.7rem; font-weight: 800; color: #111; margin: 0 0 8px; }
.contact-info__sub { font-size: 0.95rem; color: #555; margin: 0 0 32px; line-height: 1.6; }
.contact-hours { background: #fff; border-radius: 14px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.contact-hours__title { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #0f4485; margin-bottom: 16px; }
.contact-hours__row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; }
.contact-hours__row:last-child { border-bottom: none; }
.contact-hours__day { color: #444; font-weight: 500; }
.contact-hours__time { color: #111; font-weight: 600; }
.contact-hours__closed { color: #e53e3e; font-weight: 600; }
.contact-trust { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-trust__item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: #333; font-weight: 500; }
.contact-trust__item svg { color: #0f4485; flex-shrink: 0; }
.contact-team-photo { border-radius: 14px; overflow: hidden; width: 100%; }
.contact-team-photo img { width: 100%; height: 240px; object-fit: cover; object-position: center top; display: block; }
.contact-form-wrap { background: #fff; border-radius: 20px; box-shadow: 0 4px 28px rgba(0,0,0,0.09); padding: 40px; }
.contact-form-wrap h2 { font-family: 'Manrope', sans-serif; font-size: 1.5rem; font-weight: 800; color: #111; margin: 0 0 6px; }
.contact-form-wrap .form-sub { font-size: 0.9rem; color: #666; margin: 0 0 28px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row .form-group { margin-bottom: 0; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: #0a3268; }
.form-privacy {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 14px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.response-promise { background: #0f4485; color: #fff; padding: 36px 24px; text-align: center; }
.response-promise__inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.response-promise__item { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.response-promise__item svg { color: #f0c040; flex-shrink: 0; }
.response-promise__item strong { display: block; font-size: 1rem; font-weight: 700; }
.response-promise__item span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.contact-map { width: 100%; height: 420px; border: none; display: block; }
@media (max-width: 768px) {
  .contact-hero { padding: 60px 0 40px; }
  .contact-methods { padding: 0 32px; box-sizing: border-box; }
  .contact-methods__inner { grid-template-columns: 1fr !important; transform: translateY(-24px); gap: 16px !important; max-width: 100% !important; padding: 0 !important; margin: 0 auto !important; }
  .contact-card { overflow: hidden; word-break: break-word; }
  .contact-main__inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 20px; }
  .response-promise__inner { gap: 24px; }
  .contact-map { height: 280px; }
}


/* ============================================================
   06 — FINANCE PAGE
   ============================================================ */
.fin-hero { background: #eff1f4; padding: 72px 0 80px; }
.fin-hero__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.fin-hero__label { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e0e4ea; border-radius: 50px; padding: 8px 18px; margin-bottom: 24px; box-shadow: 0 2px 16px rgba(0,0,0,0.07); font-size: 13px; color: #555; }
.fin-hero__label .stars { color: #f5a623; font-size: 16px; letter-spacing: 1px; }
.fin-hero h1 { font-family: 'Manrope', sans-serif; font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #292a24; line-height: 1.15; margin-bottom: 20px; }
.fin-hero h1 span { color: #e3022b; }
.fin-hero__sub { font-size: 16px; color: #555; max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
.fin-hero__btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.fin-hero__badges { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.fin-hero__badge { height: 44px; width: auto; opacity: 0.85; }
.fin-hero__badge--gassafe { height: 52px; opacity: 1; }
.fin-hero__media { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.fin-hero__img { width: 100%; height: 420px; object-fit: cover; display: block; }
.fin-intro { padding: 80px 0; background: #f7f7f7; }
.fin-intro__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.fin-intro__images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fin-intro__images img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; }
.fin-intro__images img:first-child { grid-column: 1; grid-row: 1 / 3; height: 100%; min-height: 412px; }
.fin-intro__content h2 { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: #292a24; line-height: 1.2; margin-bottom: 20px; }
.fin-intro__content h2 span { color: #e3022b; }
.fin-intro__content p { font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 16px; }
.fin-example { padding: 80px 0; background: #fff; }
.fin-example .section-header { text-align: center; margin-bottom: 48px; }
.fin-example .section-header h2 { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: #292a24; margin-bottom: 16px; }
.fin-example .section-header p { font-size: 15px; color: #555; max-width: 680px; margin: 0 auto; line-height: 1.7; }
.fin-example__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.rep-table-wrap { background: #f7f7f7; border-radius: 16px; padding: 32px; border: 1px solid #e0e4ea; }
.rep-table-wrap h3 { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 800; color: #0f4485; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid #e0e4ea; }
.rep-table { width: 100%; border-collapse: collapse; }
.rep-table tr { border-bottom: 1px solid #e0e4ea; }
.rep-table tr:last-child { border-bottom: none; }
.rep-table td { padding: 11px 0; font-size: 14px; color: #555; font-family: 'Montserrat', sans-serif; }
.rep-table td:first-child { font-weight: 600; color: #292a24; width: 55%; }
.rep-table td:last-child { text-align: right; font-weight: 600; color: #0f4485; }
.rep-table tr:last-child td { font-weight: 700; font-size: 15px; }
.fin-options { display: flex; flex-direction: column; gap: 16px; }
.fin-option-card { background: #f7f7f7; border-radius: 16px; padding: 28px; border: 1px solid #e0e4ea; border-left: 4px solid #0f4485; }
.fin-option-card h4 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; color: #292a24; margin-bottom: 8px; }
.fin-option-card h4 span { color: #e3022b; }
.fin-option-card p { font-size: 14px; color: #555; line-height: 1.65; }
.fin-benefits { padding: 80px 0; background: #f7f7f7; }
.fin-benefits__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.fin-benefits__content h2 { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: #292a24; line-height: 1.2; margin-bottom: 24px; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #292a24; font-family: 'Montserrat', sans-serif; font-weight: 500; }
.benefits-list li::before { content: ''; width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: #0f4485; margin-top: 6px; }
.fin-eligibility { padding: 80px 0; background: #fff; }
.fin-eligibility .section-header { margin-bottom: 40px; }
.fin-eligibility .section-header h2 { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: #292a24; margin-bottom: 16px; }
.fin-eligibility .section-header p { font-size: 15px; color: #555; max-width: 760px; line-height: 1.7; }
.eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.eligibility-card { border-radius: 16px; padding: 32px; border: 1px solid #e0e4ea; }
.eligibility-card--can { background: #f0f7ff; border-color: #c5d9f0; }
.eligibility-card--cant { background: #fff5f5; border-color: #f0c5c5; }
.eligibility-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #e0e4ea; }
.eligibility-card__header svg { flex-shrink: 0; }
.eligibility-card__header h3 { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 800; color: #292a24; }
.eligibility-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.eligibility-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #555; font-family: 'Montserrat', sans-serif; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); line-height: 1.5; }
.eligibility-list li:last-child { border-bottom: none; }
.eligibility-list li .dot { width: 8px; height: 8px; min-width: 8px; border-radius: 50%; margin-top: 5px; }
.eligibility-card--can .dot { background: #0f4485; }
.eligibility-card--cant .dot { background: #e3022b; }
.fin-cta { background: #0f4485; padding: 64px 0; }
.fin-cta__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; }
.fin-cta h2 { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 4vw, 36px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.fin-cta p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.fin-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 900px) {
  .fin-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .fin-hero__media { display: none; }
  .fin-intro__inner { grid-template-columns: 1fr; }
  .fin-intro__images { display: none; }
  .fin-example__inner { grid-template-columns: 1fr; }
  .fin-benefits__inner { grid-template-columns: 1fr; }
  .eligibility-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   07 — BLOG LISTING PAGE
   ============================================================ */
.blog-hero { background: linear-gradient(135deg, #1a2e5a 0%, #243a6e 100%); padding: 80px 0 60px; text-align: center; color: #fff; }
.blog-hero .breadcrumb { margin-bottom: 16px; justify-content: center; }
.blog-hero .breadcrumb a { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-decoration: none; }
.blog-hero .breadcrumb span { color: rgba(255,255,255,0.5); margin: 0 6px; }
.blog-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.blog-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }
.blog-featured { padding: 60px 0 0; }
.featured-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.12); }
.featured-card__img { position: relative; min-height: 400px; }
.featured-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-card__badge { position: absolute; top: 20px; left: 20px; background: #e63946; color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 20px; }
.featured-card__body { background: #1a2e5a; color: #fff; padding: 48px 48px; display: flex; flex-direction: column; justify-content: center; }
.featured-card__cat { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 14px; display: block; }
.featured-card__body h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.featured-card__meta { display: flex; gap: 20px; margin-bottom: 20px; color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.featured-card__meta span { display: flex; align-items: center; gap: 6px; }
.featured-card__meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.featured-card__body p { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; }
.featured-card__body .btn { display: inline-flex; align-items: center; }
.blog-filters { padding: 48px 0 0; }
.blog-filters__inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.blog-filters__label { font-size: 0.85rem; font-weight: 600; color: #666; margin-right: 4px; }
.filter-btn { padding: 8px 18px; border-radius: 24px; border: 1.5px solid #ddd; background: #fff; font-size: 0.85rem; font-weight: 600; color: #555; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.filter-btn:hover { border-color: #1a2e5a; color: #1a2e5a; }
.filter-btn.active { background: #1a2e5a; border-color: #1a2e5a; color: #fff; }
.blog-grid-section { padding: 32px 0 48px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.blog-card__img { position: relative; height: 200px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__cat { position: absolute; bottom: 12px; left: 12px; background: #1a2e5a; color: #fff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 20px; }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; gap: 16px; color: #999; font-size: 0.8rem; margin-bottom: 12px; }
.blog-card__meta span { display: flex; align-items: center; gap: 5px; }
.blog-card__meta svg { width: 12px; height: 12px; }
.blog-card__body h3 { font-size: 1rem; font-weight: 700; color: #1a2e5a; margin-bottom: 10px; line-height: 1.4; }
.blog-card__body p { font-size: 0.9rem; color: #666; line-height: 1.6; flex: 1; margin-bottom: 18px; }
.blog-card__link { font-size: 0.85rem; font-weight: 700; color: #1a2e5a; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.blog-card__link:hover { color: #e63946; }
.blog-card__link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.blog-card__link:hover svg { transform: translateX(3px); }
.blog-newsletter { background: #f8f9fb; padding: 60px 0; }
.blog-newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.blog-newsletter h2 { font-size: 1.6rem; font-weight: 800; color: #1a2e5a; margin-bottom: 10px; }
.blog-newsletter p { color: #666; line-height: 1.7; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1.5px solid #ddd; border-radius: 8px; font-size: 0.95rem; font-family: inherit; outline: none; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: #1a2e5a; }
.newsletter-form button { padding: 14px 24px; background: #1a2e5a; color: #fff; border: none; border-radius: 8px; font-size: 0.9rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background 0.2s; font-family: inherit; }
.newsletter-form button:hover { background: #243a6e; }
.blog-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 48px 0 40px; }
.page-btn { width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid #ddd; background: #fff; font-size: 0.9rem; font-weight: 600; color: #444; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-family: inherit; }
.page-btn:hover { border-color: #1a2e5a; color: #1a2e5a; }
.page-btn.active { background: #1a2e5a; border-color: #1a2e5a; color: #fff; }
.page-btn.arrow { font-size: 1.1rem; }
@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-card__img { min-height: 260px; }
  .featured-card__body { padding: 32px 28px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-newsletter__inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .blog-filters__inner { gap: 8px; }
}


/* ============================================================
   08 — BLOG POST TEMPLATE
   ============================================================ */
.post-hero { background: linear-gradient(135deg, #0a3060 0%, #0f4485 60%, #1a5098 100%); padding: 64px 0 48px; color: #fff; }
.post-hero__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.post-hero .breadcrumb { margin-bottom: 20px; justify-content: center; }
.post-hero .breadcrumb a { color: rgba(255,255,255,0.65); font-size: 0.82rem; text-decoration: none; }
.post-hero .breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 6px; }
.post-hero__cat { display: inline-block; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.post-hero h1 { font-family: 'Manrope', sans-serif; font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.post-hero__meta { display: flex; align-items: center; justify-content: center; gap: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.65); flex-wrap: wrap; }
.post-hero__meta span { display: flex; align-items: center; gap: 6px; }
.post-hero__meta svg { width: 14px; height: 14px; }
.post-hero__author-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.3); }
.post-featured-img-wrap { padding: 32px 0 0; }
.post-featured-img { width: 100%; max-height: 480px; object-fit: cover; display: block; border-radius: 12px; }
.post-layout { padding: 64px 0 80px; }
.post-layout__inner { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
/* Reset any inherited block/group indentation from imported content */
.post-content div:not(.post-author):not(.post-share):not(.post-related):not([class*="post-"]):not(.related-card__body):not(.related-card):not(.related-grid),
.post-content .wp-block-group,
.post-content .wp-block-group__inner-container,
.post-content .wp-block-columns,
.post-content .wp-block-column,
.post-content figure { padding-left: 0 !important; padding-right: 0 !important; margin-left: 0 !important; margin-right: 0 !important; }

/* WordPress block list resets */
.post-content ul.wp-block-list,
.post-content ol.wp-block-list,
.post-content .wp-block-list { padding-left: 24px !important; }
.post-content ul:not(.wp-block-list),
.post-content ol:not(.wp-block-list) { padding-left: 24px; }

/* Proper list styling */
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content ul ul { list-style: circle; margin-top: 6px; }
.post-content ol ol { list-style: lower-alpha; margin-top: 6px; }
.post-content li { font-size: 1rem; line-height: 1.75; color: #444; margin-bottom: 6px; }
.post-content li::marker { color: var(--color-primary); }

/* Nested content blocks - kill all extra spacing */
.post-content > * { max-width: 100%; }
.post-content .has-background { padding: 0 !important; background: transparent !important; }
.post-content [style*="padding"] { padding-left: 0 !important; padding-right: 0 !important; }
.post-content h2 { font-family: 'Manrope', sans-serif; font-size: 1.35rem; font-weight: 800; color: #0f4485; margin: 36px 0 12px; padding-top: 8px; }
.post-content h2:first-child { margin-top: 0; }
.post-content p { font-size: 1rem; line-height: 1.8; color: #444; margin-bottom: 18px; }
.post-content ul, .post-content ol { margin-bottom: 18px; }

.post-content a { color: #0f4485; font-weight: 600; }
.post-content a:hover { text-decoration: underline; }
.post-content img { width: 100%; border-radius: 12px; margin: 24px 0; display: block; }
.post-content .callout { background: #f0f4ff; border-left: 4px solid #0f4485; border-radius: 0 10px 10px 0; padding: 20px 24px; margin: 28px 0; }
.post-content .callout p { margin: 0; color: #0f4485; font-weight: 500; }
.post-share { display: flex; align-items: center; gap: 10px; padding: 24px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin: 40px 0 36px; flex-wrap: wrap; }
.post-share__label { font-size: 0.85rem; font-weight: 700; color: #666; margin-right: 2px; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 8px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: opacity 0.2s; border: none; cursor: pointer; font-family: inherit; }
.share-btn:hover { opacity: 0.85; }
.share-btn svg { width: 16px; height: 16px; flex-shrink: 0; fill: currentColor; color: inherit; }
.share-btn--facebook { background: #1877f2; color: #fff !important; }
.share-btn--facebook svg, .share-btn--facebook * { color: #fff !important; fill: #fff !important; }
.share-btn--x { background: #000; color: #fff !important; }
.share-btn--x svg, .share-btn--x * { color: #fff !important; fill: #fff !important; }
.share-btn--linkedin { background: #0a66c2; color: #fff !important; }
.share-btn--linkedin svg, .share-btn--linkedin * { color: #fff !important; fill: #fff !important; }
.share-btn--copy { background: #f4f6fb; color: #444; border: 1.5px solid #ddd; }
.share-btn--copy svg { color: #444; fill: #444; }
.post-author { background: #fff; border: 1px solid #e0e4ea; border-radius: 14px; padding: 32px 32px 32px 32px !important; display: flex; gap: 28px; align-items: center; margin-bottom: 48px; }
.post-author__img { width: 120px !important; height: 120px !important; border-radius: 50%; object-fit: cover; flex-shrink: 0; display: block; }
.post-author__info { flex: 1; min-width: 0; }
.post-author__name { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 800; color: #292a24; margin-bottom: 2px; }
.post-author__role { font-size: 0.82rem; color: #666; margin-bottom: 8px; }
.post-author__bio { font-size: 0.875rem; color: #555; line-height: 1.65; margin: 0; }
.post-author__link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 700; color: #0f4485; text-decoration: none; margin-top: 10px; }
.post-author__link:hover { text-decoration: underline; }
.post-author__link svg { width: 13px; height: 13px; }
.post-related h3 { font-family: 'Manrope', sans-serif; font-size: 1.2rem; font-weight: 800; color: #0f4485; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #eee; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.related-card { border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid #e0e4ea; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.related-card img { width: 100% !important; height: 160px !important; object-fit: cover; display: block; margin: 0; padding: 0; }
.related-card__body { padding: 20px 24px !important; }
.related-card__cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: #0f4485; letter-spacing: 0.06em; margin-bottom: 6px; }
.related-card__title { font-family: 'Manrope', sans-serif; font-size: 0.9rem; font-weight: 700; color: #222; line-height: 1.4; }
.post-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.sidebar-card h4 { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 800; color: #0f4485; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #f0f4ff; }

/* Mobile ToC - hidden on desktop, shown above content on mobile */
.mobile-toc { display: none; }
.toc-toggle-arrow { transition: transform 0.3s; flex-shrink: 0; }

@media (max-width: 768px) {
  .mobile-toc { display: block; grid-column: 1; order: -1; }
  #mobileTocCard h4 { cursor: pointer; display: flex; align-items: center; justify-content: space-between; margin-bottom: 0; border-bottom: none; padding-bottom: 0; user-select: none; }
  #mobileTocCard .toc-list { display: none; }
  #mobileTocCard.is-open .toc-list { display: block; }
  #mobileTocCard.is-open h4 { margin-bottom: 16px; border-bottom: 2px solid #f0f4ff; padding-bottom: 12px; }
  #mobileTocCard.is-open .toc-toggle-arrow { transform: rotate(180deg); }
  /* Hide desktop ToC on mobile (stays in sidebar) */
  #tocCard { display: none; }
  /* Sidebar stays below content on mobile */
  .post-sidebar { order: 2; }
  .post-content { order: 0; }
}
.toc-list { list-style: none; padding: 0; margin: 0; counter-reset: toc-counter; }
.toc-list li { margin-bottom: 8px; counter-increment: toc-counter; }
.toc-list a { font-size: 0.875rem; color: #555; text-decoration: none; display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; transition: color 0.2s; }
.toc-list a:hover { color: #0f4485; }
.toc-list a::before { content: counter(toc-counter) "."; font-size: 0.75rem; font-weight: 700; color: #0f4485; flex-shrink: 0; min-width: 18px; }
.sidebar-cta { background: linear-gradient(135deg, #0a3060 0%, #0f4485 60%, #1a5098 100%); border-radius: 14px; padding: 28px; color: #fff; text-align: center; }
.sidebar-cta h4 { font-family: 'Manrope', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: #fff; border: none; padding: 0; }
.sidebar-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.75); margin-bottom: 20px; line-height: 1.6; }
.sidebar-cta .btn { width: 100%; text-align: center; display: block; margin-bottom: 12px; }
.sidebar-cta__phone { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 700; text-decoration: none; }
.sidebar-cta__phone:hover { color: #fff; }
.sidebar-cta__phone svg { width: 16px; height: 16px; }
.recent-post { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid #f0f0f0; text-decoration: none; }
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.recent-post__title { font-size: 0.82rem; font-weight: 700; color: #222; line-height: 1.4; margin-bottom: 4px; }
.recent-post__date { font-size: 0.75rem; color: #666; }
@media (max-width: 1024px) {
  .post-layout__inner { grid-template-columns: 1fr 280px; gap: 36px; }
}
@media (max-width: 768px) {
  .post-layout__inner { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .post-hero__meta { flex-wrap: wrap; gap: 10px; }
  .post-author { flex-direction: column; text-align: center; }
  .post-author__img { margin: 0 auto; }
  .post-author__link { justify-content: center; }
}


/* ============================================================
   09 — LOCATIONS HUB PAGE
   ============================================================ */
.locations-hero { background: linear-gradient(135deg, #0a3060 0%, #0f4485 60%, #1a5098 100%); padding: 80px 0 64px; text-align: center; color: #fff; }
.locations-hero .breadcrumb { margin-bottom: 16px; justify-content: center; }
.locations-hero .breadcrumb a { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.locations-hero .breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 6px; }
.locations-hero h1 { font-family: 'Manrope', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.locations-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; }
.locations-hero .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 8px; background: #e3022b; color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
.btn-hero-primary:hover { background: #c40024; }
.btn-hero-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 13px 28px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.45); text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.locations-intro { background: #fff; border-bottom: 1px solid #e8eaf0; padding: 32px 0; }
.locations-intro__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.locations-intro__text { font-size: 1rem; color: #444; max-width: 640px; }
.locations-intro__text strong { color: #0f4485; }
.locations-intro__count { display: flex; gap: 32px; flex-shrink: 0; }
.locations-intro__stat { text-align: center; }
.locations-intro__stat strong { display: block; font-family: 'Manrope', sans-serif; font-size: 2rem; font-weight: 800; color: #0f4485; line-height: 1; }
.locations-intro__stat span { font-size: 0.8rem; color: #666; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.locations-grid-section { padding: 64px 0 80px; background: #f4f6fb; }
.locations-grid-section .section-header h2 { font-family: 'Manrope', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #0f4485; margin-bottom: 8px; }
.locations-grid-section .section-header p { color: #666; font-size: 0.95rem; }
.region-label { font-family: 'Manrope', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #e3022b; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.region-label::after { content: ''; flex: 1; height: 1px; background: #dde1ea; }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 48px; }
.loc-card { background: #fff; border-radius: 14px; border: 1px solid #e4e8f0; box-shadow: 0 2px 12px rgba(0,0,0,0.05); padding: 24px; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.loc-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.10); transform: translateY(-2px); }
.loc-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.loc-card__name { font-family: 'Manrope', sans-serif; font-size: 1.15rem; font-weight: 800; color: #0f4485; line-height: 1.2; }
.loc-card__pin { flex-shrink: 0; width: 32px; height: 32px; background: #e6effb; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #0f4485; }
.loc-card__desc { font-size: 0.875rem; color: #666; line-height: 1.6; margin-bottom: 18px; flex: 1; }
.loc-card__services { display: flex; flex-wrap: wrap; gap: 8px; }
.loc-card__service-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.8rem; font-weight: 600; color: #0f4485; background: #e6effb; border: 1px solid #c5d9f0; border-radius: 6px; padding: 6px 12px; text-decoration: none; transition: background 0.15s, color 0.15s, border-color 0.15s; white-space: nowrap; }
.loc-card__service-link:hover { background: #0f4485; color: #fff; border-color: #0f4485; }
.loc-card__service-link svg { width: 12px; height: 12px; flex-shrink: 0; }
.loc-card--featured { border-color: #0f4485; background: linear-gradient(145deg, #f0f5ff 0%, #fff 100%); }
.loc-card--featured .loc-card__name { color: #0f4485; }
.loc-card--featured .loc-card__pin { background: #0f4485; color: #fff; }
.loc-card--featured .loc-card__badge { display: inline-block; background: #e3022b; color: #fff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.locations-cta { background: #0f4485; padding: 64px 0; }
.locations-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.locations-cta__text h2 { font-family: 'Manrope', sans-serif; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.locations-cta__text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.locations-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.btn-cta-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #0f4485; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
.btn-cta-white:hover { background: #f0f4ff; }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 13px 28px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.4); text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
@media (max-width: 768px) {
  .locations-intro__inner { flex-direction: column; align-items: flex-start; }
  .locations-intro__count { gap: 24px; }
  .locations-cta__inner { flex-direction: column; }
  .locations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .locations-hero { padding: 56px 0 48px; }
}


/* ============================================================
   10 — LOCATION PAGE (e.g. Glasgow)
   ============================================================ */
.loc-hero { background: #eff1f4; padding: 72px 0 80px; }
.loc-hero__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.loc-hero__label { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e0e4ea; border-radius: 50px; padding: 8px 18px; margin-bottom: 24px; box-shadow: 0 2px 16px rgba(0,0,0,0.07); font-size: 13px; color: #555; }
.loc-hero__label .stars { color: #f5a623; font-size: 16px; letter-spacing: 1px; }
.loc-hero h1 { font-family: 'Manrope', sans-serif; font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #292a24; line-height: 1.15; margin-bottom: 20px; }
.loc-hero h1 span { color: #e3022b; }
.loc-hero__sub { font-size: 16px; color: #555; max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
.loc-hero__btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.loc-hero__badges { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.loc-hero__badge { height: 44px; width: auto; opacity: 0.85; }
.loc-hero__badge--gassafe { height: 52px; opacity: 1; }
.loc-hero__media { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.loc-hero__img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; display: block; }
.loc-about { padding: 80px 0; background: #f7f7f7; }
.loc-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.loc-about__images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.loc-about__images img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; }
.loc-about__images img:first-child { grid-column: 1; grid-row: 1 / 3; height: 100%; min-height: 412px; }
.loc-about__content h2 { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: #292a24; line-height: 1.2; margin-bottom: 20px; }
.loc-about__content h2 span { color: #e3022b; }
.loc-about__content p { font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 16px; }
.loc-process { padding: 80px 0; background: #fff; }
.loc-mid-cta { background: #0f4485; padding: 48px 0; }
.loc-mid-cta__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.loc-mid-cta h3 { font-family: 'Manrope', sans-serif; font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: #fff; }
.loc-mid-cta p { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 6px; }
.loc-services { padding: 80px 0; background: #f7f7f7; }
.service-tabs { display: none; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.service-tab { padding: 10px 24px; border-radius: 8px; border: 2px solid #e0e4ea; background: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; color: #555; cursor: pointer; transition: all 0.2s; }
.service-tab.active, .service-tab:hover { background: #0f4485; border-color: #0f4485; color: #fff; }
.service-panel { display: none; }
.service-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.service-panel__img { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.service-panel__img img { width: 100%; height: 360px; object-fit: cover; display: block; }
.service-panel__content h3 { font-family: 'Manrope', sans-serif; font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: #292a24; margin-bottom: 16px; line-height: 1.25; }
.service-panel__content p { font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 20px; }
.service-panel__list { list-style: none; margin-bottom: 28px; }
.service-panel__list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #292a24; font-weight: 500; padding: 6px 0; border-bottom: 1px solid #e0e4ea; }
.service-panel__list li:last-child { border-bottom: none; }
.service-panel__list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #0f4485; flex-shrink: 0; }
.loc-testimonials { padding: 80px 0; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #f7f7f7; border-radius: 16px; padding: 28px; border: 1px solid #e0e4ea; }
.testi-card__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-card__stars svg { width: 16px; height: 16px; fill: #f5a623; }
.testi-card__text { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: #0f4485; color: #fff; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-card__name { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: #292a24; }
.testi-card__source { font-size: 12px; color: #666; }
.loc-benefits { padding: 80px 0; background: #f7f7f7; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: #fff; border-radius: 16px; padding: 32px 28px; border: 1px solid #e0e4ea; }
.benefit-card__icon { width: 48px; height: 48px; background: rgba(15,68,133,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: #0f4485; }
.benefit-card h3 { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 700; color: #292a24; margin-bottom: 10px; }
.benefit-card p { font-size: 14px; color: #555; line-height: 1.65; }
.loc-faq { padding: 80px 0; background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e0e4ea; }
.faq-item__question { width: 100%; background: none; border: none; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: #292a24; cursor: pointer; text-align: left; }
.faq-item__question svg { flex-shrink: 0; color: #0f4485; transition: transform 0.25s; }
.faq-item.open .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-item__answer { max-height: 400px; }
.faq-item__answer p { font-size: 15px; color: #555; line-height: 1.7; padding-bottom: 20px; }
.loc-blog { padding: 80px 0; background: #f7f7f7; }
.blog-mini-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #e0e4ea; transition: box-shadow 0.2s; }
.blog-mini-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.blog-mini-card__img img { width: 100%; height: 150px; object-fit: cover; display: block; }
.blog-mini-card__body { padding: 16px; }
.blog-mini-card__date { font-size: 12px; color: #666; margin-bottom: 6px; }
.blog-mini-card__title { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: #292a24; line-height: 1.4; margin-bottom: 12px; }
.blog-mini-card__link { font-size: 13px; font-weight: 600; color: #0f4485; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.blog-mini-card__link:hover { color: #e3022b; }
.loc-contact { padding: 80px 0; background: #fff; }
.loc-contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.loc-contact__info h2 { font-family: 'Manrope', sans-serif; font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: #292a24; margin-bottom: 16px; line-height: 1.25; }
.loc-contact__info p { color: #555; line-height: 1.7; margin-bottom: 32px; font-size: 15px; }
.contact-details { list-style: none; }
.contact-details li { display: flex; align-items: center; gap: 12px; color: #555; font-size: 14px; margin-bottom: 16px; }
.contact-details li svg { color: #0f4485; flex-shrink: 0; }
.contact-details a { color: #555; text-decoration: none; }
.contact-details a:hover { color: #0f4485; }
.contact-form { background: #f7f7f7; border-radius: 16px; padding: 36px; border: 1px solid #e0e4ea; }
.contact-form h3 { font-family: 'Manrope', sans-serif; font-size: 1.1rem; font-weight: 800; color: #292a24; margin-bottom: 6px; }
.contact-form p { font-size: 0.85rem; color: #666; margin-bottom: 24px; }
@media (max-width: 900px) {
  .loc-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .loc-hero__media { display: none; }
  .loc-about__inner { grid-template-columns: 1fr; }
  .loc-about__images { display: none; }
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel__img { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .loc-contact__inner { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 600px) {
  .trust-bar__inner { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .loc-mid-cta__inner { flex-direction: column; }
}



/* ============================================================
   BOILER INSTALLATION / SERVICE+LOCATION COMBO PAGE
   ============================================================ */

/* ---- Boiler Hero ---- */
.boiler-hero {
  background: #eff1f4;
  padding: 64px 0 72px;
}
.boiler-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
.boiler-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  color: #292a24;
  line-height: 1.15;
  margin-bottom: 18px;
}
.boiler-hero h1 span { color: #e3022b; }
.boiler-hero__sub {
  font-size: 15px;
  color: #555;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.75;
}
.boiler-hero__usps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.boiler-hero__usp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #292a24;
}
.boiler-hero__usp svg { color: #0f4485; flex-shrink: 0; }
.boiler-hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.boiler-hero__badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.boiler-hero__badge { height: 44px; width: auto; opacity: 0.85; }
.boiler-hero__badge--gassafe { height: 52px; opacity: 1; }

/* ---- Callback Form Card ---- */
.callback-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border: 1px solid #e0e4ea;
}
.callback-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.callback-card__header h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #292a24;
}
.callback-card__sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 22px;
  font-family: 'Montserrat', sans-serif;
}
.callback-card label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}
.callback-card input,
.callback-card select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde1ea;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.callback-card input:focus,
.callback-card select:focus { border-color: #0f4485; }
.callback-card__submit {
  width: 100%;
  background: #0f4485;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.callback-card__submit:hover { background: #0c3870; }
.callback-card__note {
  text-align: center;
  font-size: 11px;
  color: #aaa;
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
}

/* ---- Trust Bar (inline variant) ---- */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e0e4ea;
  padding: 24px 0;
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #292a24;
}
.trust-item svg { color: #0f4485; flex-shrink: 0; }

/* ---- Intro Block ---- */
.intro-block {
  padding: 80px 0;
  background: #fff;
}
.intro-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-block__inner--img-right .intro-block__img { order: 2; }
.intro-block__inner--img-right .intro-block__content { order: 1; }
.intro-block__img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.intro-block__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.intro-block__content .section-label { margin-bottom: 14px; }
.intro-block__content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #292a24;
  margin-bottom: 16px;
  line-height: 1.2;
}
.intro-block__content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}
.intro-block__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.intro-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f0f4fb;
  border: 1px solid #d0daea;
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0f4485;
}
.intro-badge svg { flex-shrink: 0; }

/* ---- Mid CTA Strip ---- */
.mid-cta {
  background: #0f4485;
  padding: 60px 0;
}
.mid-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.mid-cta__text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.mid-cta__text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.65;
}
.mid-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .mid-cta__inner { flex-direction: column; text-align: center; }
  .mid-cta__actions { justify-content: center; }
}

/* ---- Boiler Gallery ---- */
.boiler-gallery {
  padding: 80px 0;
  background: #f7f7f7;
}
.boiler-gallery .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-grid__item:hover img { transform: scale(1.05); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 768px) {
  .intro-block__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Boiler Pricing Strip ---- */
.boiler-pricing {
  padding: 64px 0;
  background: #f7f7f7;
}
.boiler-pricing .section-header {
  text-align: center;
  margin-bottom: 36px;
}
.boiler-pricing .section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #292a24;
  margin-bottom: 10px;
}
.boiler-pricing .section-header p {
  font-size: 14px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}
.pricing-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  border: 1px solid #e0e4ea;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-color: #0f4485;
}
.pricing-card--featured {
  border-color: #0f4485;
  border-width: 2px;
  background: #f0f5fc;
  position: relative;
  box-shadow: 0 4px 20px rgba(15,68,133,0.12);
}
.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f4485;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card__model {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #292a24;
}
.pricing-card__guarantee {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #0f4485;
  font-weight: 600;
  margin-bottom: 4px;
}
.pricing-card__price {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #292a24;
  margin-top: 4px;
}
.pricing-card__price span {
  font-size: 12px;
  font-weight: 500;
  color: #999;
}
.pricing-card__finance {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #27ae60;
  font-weight: 600;
}
.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #0f4485;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 7px;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.2s;
}
.pricing-card__cta:hover { background: #0c3870; }

/* ---- How It Works ---- */
.how-it-works {
  padding: 80px 0;
  background: #fff;
}
.how-it-works .section-header {
  text-align: center;
  margin-bottom: 52px;
}
.how-it-works .section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #292a24;
  margin-bottom: 12px;
}
.how-it-works .section-header p {
  font-size: 15px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: #e0e4ea;
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0f4485;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(15,68,133,0.3);
  flex-shrink: 0;
}
.process-step h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #292a24;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

/* ---- Why Replace ---- */
.why-replace {
  padding: 80px 0;
  background: #f7f7f7;
}
.why-replace__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.why-replace__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.why-replace__stat {
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 10px;
  padding: 16px 18px;
  text-align: center;
}
.why-replace__stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0f4485;
  line-height: 1.2;
}
.why-replace__stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-top: 4px;
}
.why-replace__content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #292a24;
  line-height: 1.2;
  margin-bottom: 20px;
}
.why-replace__content h2 span { color: #e3022b; }
.why-replace__content p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
}
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  border: 1px solid #e0e4ea;
}
.reason-item__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: rgba(15,68,133,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-item__icon svg { color: #0f4485; }
.reason-item__text h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #292a24;
  margin-bottom: 3px;
}
.reason-item__text p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: 80px 0;
  background: #fff;
}
.testimonials .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials .section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #292a24;
  margin-bottom: 10px;
}
.testimonials .section-header p {
  font-size: 15px;
  color: #666;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e0e4ea;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card__stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.testimonial-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Montserrat', sans-serif;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0f4485;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #292a24;
}
.testimonial-card__source {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #999;
}

/* ---- Why Choose Us ---- */
.why-us {
  padding: 80px 0;
  background: #f7f7f7;
}
.why-us .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.why-us .section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #292a24;
  margin-bottom: 10px;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-us-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e0e4ea;
}
.why-us-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(15,68,133,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-us-card__icon svg { color: #0f4485; }
.why-us-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #292a24;
  margin-bottom: 8px;
}
.why-us-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  font-family: 'Montserrat', sans-serif;
}

/* ---- Finance Strip ---- */
.finance-strip {
  background: #0f4485;
  padding: 52px 0;
}
.finance-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.finance-strip__text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.finance-strip__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.6;
}
.finance-strip__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn--white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0f4485;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #fff;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn--white:hover { opacity: 0.9; }
.btn--outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s;
  white-space: nowrap;
}
.btn--outline-white:hover { border-color: #fff; }

/* ---- FAQ ---- */
.faq {
  padding: 80px 0;
  background: #fff;
}
.faq .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq .section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #292a24;
  margin-bottom: 10px;
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border: 1px solid #e0e4ea;
  border-radius: 12px;
  overflow: hidden;
}
.faq__question {
  width: 100%;
  background: #f7f7f7;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #292a24;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq__question:hover { background: #eef0f4; }
.faq__question.open { background: #fff; color: #0f4485; }
.faq__question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #0f4485;
}
/* duplicate faq rules removed - handled in main FAQ CSS above */

/* ---- Meet the Team ---- */
.meet-team {
  padding: 80px 0;
  background: #fff;
}
.meet-team__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.meet-team__photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.meet-team__photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.meet-team__content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #292a24;
  margin-bottom: 16px;
  line-height: 1.2;
}
.meet-team__content h2 span { color: #e3022b; }
.meet-team__content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}
.meet-team__content .btn { margin-top: 14px; }
@media (max-width: 900px) {
  .meet-team__inner { grid-template-columns: 1fr; }
}

/* ---- Contact Section ---- */
.contact-section {
  padding: 80px 0;
  background: #f7f7f7;
}
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-section__info h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #292a24;
  margin-bottom: 16px;
}
.contact-section__info h2 span { color: #e3022b; }
.contact-section__info p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #555;
}
.contact-detail__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(15,68,133,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail__icon svg { color: #0f4485; }
.contact-detail a { color: #0f4485; text-decoration: none; font-weight: 600; }
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #e0e4ea;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #292a24;
  margin-bottom: 6px;
}
.contact-form__sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 22px;
  font-family: 'Montserrat', sans-serif;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde1ea;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #0f4485; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: #0f4485;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { background: #0c3870; }

/* ---- Boiler Page Responsive ---- */
@media (max-width: 1024px) {
  .pricing-strip { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 900px) {
  .boiler-hero__inner { grid-template-columns: 1fr; }
  .callback-card { max-width: 480px; }
  .why-replace__inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .finance-strip__inner { flex-direction: column; align-items: flex-start; }
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    justify-items: start;
  }
}
@media (max-width: 600px) {
  .pricing-strip { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Locations Hub Page
   ========================================================================== */

/* ── Hero ── */
.locations-hero {
  background: linear-gradient(135deg, #0a3060 0%, #0f4485 60%, #1a5098 100%);
  padding: 80px 0 64px;
  text-align: center;
  color: #fff;
}
.locations-hero .breadcrumb { margin-bottom: 16px; justify-content: center; }
.locations-hero .breadcrumb a { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.locations-hero .breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 6px; }
.locations-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.locations-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
}
.locations-hero .hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e3022b;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-hero-primary:hover { background: #c40024; }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── Coverage intro strip ── */
.locations-intro {
  background: #fff;
  border-bottom: 1px solid #e8eaf0;
  padding: 32px 0;
}
.locations-intro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.locations-intro__text {
  font-size: 1rem;
  color: #444;
  max-width: 640px;
}
.locations-intro__text strong { color: #0f4485; }
.locations-intro__count {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}
.locations-intro__stat {
  text-align: center;
}
.locations-intro__stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #0f4485;
  line-height: 1;
}
.locations-intro__stat span {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── Locations grid section ── */
.locations-grid-section {
  padding: 64px 0 80px;
  background: #f4f6fb;
}
.locations-grid-section .section-header {
  margin-bottom: 40px;
}
.locations-grid-section .section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f4485;
  margin-bottom: 8px;
}
.locations-grid-section .section-header p {
  color: #666;
  font-size: 0.95rem;
}

/* Region dividers */
.region-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e3022b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.region-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #dde1ea;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

/* ── Location card ── */
.loc-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e4e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.loc-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.loc-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.loc-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f4485;
  line-height: 1.2;
}
.loc-card__pin {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #e6effb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f4485;
}
.loc-card__desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.loc-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.loc-card__service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f4485;
  background: #e6effb;
  border: 1px solid #c5d9f0;
  border-radius: 6px;
  padding: 6px 12px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.loc-card__service-link:hover {
  background: #0f4485;
  color: #fff;
  border-color: #0f4485;
}
.loc-card__service-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Featured / primary location card */
.loc-card--featured {
  border-color: #0f4485;
  background: linear-gradient(145deg, #f0f5ff 0%, #fff 100%);
}
.loc-card--featured .loc-card__name { color: #0f4485; }
.loc-card--featured .loc-card__pin {
  background: #0f4485;
  color: #fff;
}
.loc-card--featured .loc-card__badge {
  display: inline-block;
  background: #e3022b;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ── CTA strip ── */
.locations-cta {
  background: #0f4485;
  padding: 64px 0;
}
.locations-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.locations-cta__text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.locations-cta__text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.locations-cta__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0f4485;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-cta-white:hover { background: #f0f4ff; }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── Locations page responsive ── */
@media (max-width: 768px) {
  .locations-intro__inner { flex-direction: column; align-items: flex-start; }
  .locations-intro__count { gap: 24px; }
  .locations-cta__inner { flex-direction: column; }
  .locations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .locations-hero { padding: 56px 0 48px; }
}

/* ========================================================================
   LOCATION PAGE (template-location.php)
   ======================================================================== */

/* -- Hero (split layout) -- */
.loc-hero {
  background: #eff1f4;
  padding: 72px 0 80px;
}
.loc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.loc-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #292a24;
  line-height: 1.15;
  margin-bottom: 20px;
}
.loc-hero h1 span { color: #e3022b; }
.loc-hero__sub {
  font-size: 16px;
  color: #555;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.loc-hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.loc-hero__badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.loc-hero__badge { height: 44px; width: auto; opacity: 0.85; }
.loc-hero__badge--gassafe { height: 52px; opacity: 1; }
.loc-hero__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.loc-hero__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* -- Trust bar (location page inline) -- */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e0e4ea;
  padding: 28px 0;
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #292a24;
}
.trust-item svg { color: #0f4485; flex-shrink: 0; }

/* -- About section -- */
.loc-about {
  padding: 80px 0;
  background: #f7f7f7;
}
.loc-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.loc-about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.loc-about__images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}
.loc-about__images img:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 100%;
  min-height: 412px;
}
.loc-about__content .section-label {
  display: inline-block;
  background: rgba(227,2,43,0.11);
  color: #292a24;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.loc-about__content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #292a24;
  line-height: 1.2;
  margin-bottom: 20px;
}
.loc-about__content h2 span { color: #e3022b; }
.loc-about__content p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* -- Process / How it works -- */
.loc-process {
  padding: 80px 0;
  background: #fff;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: #e0e4ea;
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0f4485;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(15,68,133,0.3);
  flex-shrink: 0;
}
.process-step h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #292a24;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

/* -- Mid CTA strip -- */
.loc-mid-cta {
  background: #0f4485;
  padding: 48px 0;
}
.loc-mid-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.loc-mid-cta h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
}
.loc-mid-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}
.btn--white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0f4485;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #fff;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn--white:hover { opacity: 0.9; }

/* -- Services grid -- */
.loc-services {
  padding: 80px 0;
  background: #f7f7f7;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.services__card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e0e4ea;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
}
.services__card-img {
  height: 220px;
  overflow: hidden;
}
.services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.services__card:hover .services__card-img img { transform: scale(1.04); }
.services__card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services__card-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #292a24;
}
.services__card-body p { font-size: 14px; color: #555; line-height: 1.65; }
.services__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 8px;
  flex: 1;
  list-style: none;
  padding: 0;
}
.services__list li {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.services__list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #0f4485;
  border-radius: 50%;
  flex-shrink: 0;
}
.services__card-body .btn { margin-top: auto; align-self: flex-start; }

/* -- Testimonials (loc override) -- */
.loc-testimonials {
  padding: 80px 0;
  background: #fff;
}

/* -- Benefits -- */
.loc-benefits {
  padding: 80px 0;
  background: #f7f7f7;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e0e4ea;
}
.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(15,68,133,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #0f4485;
}
.benefit-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #292a24;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}

/* -- FAQ -- */
.loc-faq {
  padding: 80px 0;
  background: #fff;
}
.faq-list { max-width: 760px; margin: 0 auto; list-style: none; padding: 0; }
.faq-item {
  border-bottom: 1px solid #e0e4ea;
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #292a24;
  cursor: pointer;
  text-align: left;
}
.faq-item__question svg {
  flex-shrink: 0;
  color: #0f4485;
  transition: transform 0.25s;
}
.faq-item.open .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-item__answer { max-height: 400px; }
.faq-item__answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* -- Blog posts -- */
.loc-blog {
  padding: 80px 0;
  background: #f7f7f7;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.blog-mini-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e4ea;
  transition: box-shadow 0.2s;
}
.blog-mini-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.blog-mini-card__img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.blog-mini-card__body { padding: 16px; }
.blog-mini-card__date { font-size: 12px; color: #666; margin-bottom: 6px; }
.blog-mini-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #292a24;
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-mini-card__link {
  font-size: 13px;
  font-weight: 600;
  color: #0f4485;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-mini-card__link:hover { color: #e3022b; }

/* -- Contact form -- */
.loc-contact {
  padding: 80px 0;
  background: #fff;
}
.loc-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.loc-contact__info .section-label {
  display: inline-block;
  background: rgba(227,2,43,0.11);
  color: #292a24;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.loc-contact__info h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #292a24;
  margin-bottom: 16px;
  line-height: 1.25;
}
.loc-contact__info > p { color: #555; line-height: 1.7; margin-bottom: 32px; font-size: 15px; }
.contact-details { list-style: none; padding: 0; margin: 0; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  font-size: 14px;
  margin-bottom: 16px;
}
.contact-details li svg { color: #0f4485; flex-shrink: 0; }
.contact-details a { color: #555; text-decoration: none; }
.contact-details a:hover { color: #0f4485; }
.contact-form {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #e0e4ea;
}
.contact-form h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #292a24;
  margin-bottom: 6px;
}
.contact-form > p { font-size: 0.85rem; color: #666; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 600; color: #333; margin-bottom: 6px; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde1ea;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field textarea:focus { border-color: #0f4485; }
.form-field textarea { resize: vertical; min-height: 100px; }
.btn-form-submit {
  width: 100%;
  background: #0f4485;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-form-submit:hover { background: #0a3368; }

/* -- Location page section headers -- */
.loc-process .section-header,
.loc-services .section-header,
.loc-benefits .section-header,
.loc-faq .section-header,
.loc-blog .section-header,
.loc-testimonials .section-header { margin-bottom: 40px; }
.loc-process .section-header .section-label,
.loc-services .section-header .section-label,
.loc-benefits .section-header .section-label,
.loc-faq .section-header .section-label,
.loc-blog .section-header .section-label {
  display: inline-block;
  background: rgba(227,2,43,0.11);
  color: #292a24;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.loc-process .section-header h2,
.loc-services .section-header h2,
.loc-benefits .section-header h2,
.loc-faq .section-header h2,
.loc-blog .section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #292a24;
  line-height: 1.2;
  margin-bottom: 14px;
}
.loc-benefits .section-header p {
  font-size: 16px;
  color: #555;
  max-width: 640px;
  line-height: 1.7;
  margin: 0 auto;
}

/* -- Location page responsive -- */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 900px) {
  .loc-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .loc-hero__media { display: none; }
  .loc-about__inner { grid-template-columns: 1fr; }
  .loc-about__images { display: none; }
  .services__grid { grid-template-columns: 1fr; max-width: 480px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .loc-contact__inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .trust-bar__inner { justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .loc-mid-cta__inner { flex-direction: column; }
}
