/* ============================================================
   N4 Gas — Shared Site Stylesheet
   /newsite/css/n4gas.css  |  v1.6  |  April 2026
   ============================================================ */


/* ── CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
  --blue:        #1a8fd1;
  --blue-dark:   #1270a8;
  --blue-light:  #e6f4fb;
  --green:       #16a34a;
  --green-light: #f0fdf4;
  --green-mid:   #dcfce7;
  --amber:       #d97706;
  --amber-light: #fffbeb;
  --amber-mid:   #fef3c7;
  --red:         #ef4444;
  --red-light:   #fef2f2;
  --orange:      #ea580c;
  --orange-light:#fff7ed;
  --accent:      #f0a500;
  --dark:        #0d1b2a;
  --text:        #334155;
  --white:       #ffffff;
  --vaillant:    #009f4d;
  --viessmann:   #005b99;
}


/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  margin: 0;
}


/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,143,209,0.10);
  padding: 0.6rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--blue) !important;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.navbar-brand .flame {
  background: var(--blue);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--blue-light);
  color: var(--blue) !important;
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  border-radius: 30px !important;
  padding: 0.45rem 1.2rem !important;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}


/* ── TYPOGRAPHY HELPERS ───────────────────────────────────── */
.section-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-sub {
  color: #64748b;
  line-height: 1.7;
}

.text-blue { color: var(--blue); }


/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary-n4 {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(26,143,209,0.4);
}
.btn-primary-n4:hover { background: var(--blue-dark); transform: translateY(-2px); color: #fff; }

.btn-outline-n4 {
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  border: 2px solid var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-outline-n4:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: #e6f4fb; transform: translateY(-2px); color: var(--blue-dark); }

.btn-white-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); color: #fff; }

/* Hero button variants */
.btn-hero-primary {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(26,143,209,0.45);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,143,209,0.55);
  color: #fff;
}

.btn-hero-secondary,
.btn-ghost-hero,
.btn-hero-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-hero-secondary:hover,
.btn-ghost-hero:hover,
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  color: #fff;
}


/* ── HERO (home page) ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('../img/splash_image.jpg');
  background-size: cover;
  background-position: center 55%;
  filter: brightness(0.42) saturate(1.1);
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.72) 0%, rgba(26,143,209,0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26,143,209,0.22);
  border: 1px solid rgba(26,143,209,0.5);
  color: #7dd3fc;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
}
.hero-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}
.hero-title span { color: var(--blue); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #cbd5e1;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust   { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 16px; }

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 6px 14px;
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.trust-pill i { color: var(--accent); font-size: 0.8rem; }


/* Base .page-hero — gradient style (services hub, no background image) */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,143,209,0.25) 0%, transparent 65%);
  pointer-events: none;
}
/* Gradient hero typography */
.page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.page-hero > .container > p,
.page-hero > div > .container > p {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb-item a        { color: #7dd3fc; font-size: 0.83rem; font-weight: 600; text-decoration: none; }
.page-hero .breadcrumb-item.active   { color: #94a3b8; font-size: 0.83rem; }
.page-hero .breadcrumb-divider       { color: #475569; }

/* Image-based hero — activates when a .hero-img div is present */
.page-hero:has(.hero-img) {
  min-height: 440px;
  display: flex;
  align-items: center;
  background: var(--dark);
  padding: 0;
}
.page-hero:has(.hero-img)::before { display: none; }

.page-hero .hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
  filter: brightness(0.38) saturate(1.1);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,27,42,0.78) 0%, rgba(26,143,209,0.14) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 4rem 0 3.5rem; }

.breadcrumb-item a        { color: #7dd3fc; font-size: 0.83rem; font-weight: 600; text-decoration: none; }
.breadcrumb-item.active   { color: #94a3b8; font-size: 0.83rem; }
.breadcrumb-divider       { color: #475569; }


/* ── PHONE BANNER ─────────────────────────────────────────── */
.phone-banner {
  background: var(--blue);
  color: #fff;
  padding: 1.1rem 0;
  text-align: center;
}
.phone-banner a {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.phone-banner a:hover { opacity: 0.85; }
.phone-banner .tagline { font-size: 0.85rem; opacity: 0.85; font-weight: 500; margin-left: 12px; }


/* ── HOME — SERVICES GRID ─────────────────────────────────── */
.services-section { padding: 5rem 0 4rem; background: #f8fafc; }

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.6rem;
  height: 100%;
  border: 2px solid transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,143,209,0.15);
}
a.service-card,
a.service-card:hover,
a.service-card:focus {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  transition: background 0.25s, color 0.25s;
}
.service-card:hover .service-icon { background: var(--blue); color: #fff; }
.service-card h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.service-card p { font-size: 0.9rem; color: #64748b; line-height: 1.6; margin: 0; }


/* ── HOME — WHY US ────────────────────────────────────────── */
.why-section { padding: 5rem 0; background: #fff; }
.why-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,143,209,0.18);
  position: relative;
}
.why-img-wrap img { width: 100%; display: block; }
.why-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.why-img-badge .num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--blue);
  line-height: 1;
}
.why-img-badge small { font-size: 0.78rem; color: #64748b; font-weight: 600; }
.why-point { display: flex; gap: 16px; margin-bottom: 1.5rem; }
.why-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-point h6 { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
.why-point p  { font-size: 0.88rem; color: #64748b; margin: 0; line-height: 1.6; }


/* ── HOME — ACCREDITATIONS ────────────────────────────────── */
.accred-section { background: var(--blue); padding: 2.5rem 0; }
.accred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.accred-item i { font-size: 1.4rem; opacity: 0.85; }


/* ── HOME — CONTACT SECTION ───────────────────────────────── */
.contact-section { padding: 5rem 0; background: var(--dark); }
.contact-section .section-title { color: #fff; }
.contact-section .section-sub   { color: #94a3b8; }
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.2s;
}
.contact-card:hover { background: rgba(255,255,255,0.10); }
.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card h6 { color: #fff; font-weight: 700; margin-bottom: 3px; }
.contact-card a,
.contact-card p  { color: #94a3b8; font-size: 0.9rem; margin: 0; text-decoration: none; }
.contact-card a:hover { color: var(--blue); }


/* ── INNER PAGE — SHARED COMPONENTS ──────────────────────── */

/* Photo grids */
.photo-grid-3 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.photo-grid-3 .main { grid-row: span 2; }
.photo-grid-3 div   { overflow: hidden; }
.photo-grid-3 img   { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.photo-grid-3 img:hover { transform: scale(1.04); }

/* Checklist */
.checklist          { list-style: none; padding: 0; margin: 0; }
.checklist li       { display: flex; align-items: flex-start; gap: 12px; padding: 0.6rem 0; border-bottom: 1px solid #f1f5f9; font-size: 0.95rem; color: var(--text); }
.checklist li:last-child { border-bottom: none; }
.checklist li i     { font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.check-blue i       { color: var(--blue); }
.check-green i      { color: var(--green); }

/* Check grid (servicing page) */
.check-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.check-item  {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: border-color 0.2s, background 0.2s;
}
.check-item:hover { border-color: var(--blue); background: var(--blue-light); }
.check-item i { color: var(--blue); font-size: 1rem; width: 18px; text-align: center; flex-shrink: 0; }

/* CP12 cards */
.cp12-card { background: #fff; border: 2px solid #e2e8f0; border-radius: 16px; padding: 1.6rem; height: 100%; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.cp12-card:hover { border-color: var(--blue); box-shadow: 0 10px 30px rgba(26,143,209,0.13); transform: translateY(-3px); }
.cp12-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.cp12-card h5 { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); font-size: 1rem; margin-bottom: 0.4rem; }
.cp12-card p  { font-size: 0.87rem; color: #64748b; margin: 0; line-height: 1.6; }

/* Warranty callout */
.warranty-callout {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 2px solid #fed7aa;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.warranty-callout .icon-wrap { width: 56px; height: 56px; background: #ea580c; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; flex-shrink: 0; }
.warranty-callout h4     { font-family: 'Nunito', sans-serif; font-weight: 900; color: #9a3412; margin-bottom: 0.5rem; font-size: 1.2rem; }
.warranty-callout p      { color: #7c2d12; font-size: 0.9rem; line-height: 1.7; margin: 0; }
.warranty-callout strong { color: #9a3412; }

/* Process steps */
.process-step { display: flex; gap: 20px; margin-bottom: 2.2rem; align-items: flex-start; position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  width: 2px;
  height: calc(100% - 10px);
  background: linear-gradient(to bottom, var(--blue), rgba(26,143,209,0.1));
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,143,209,0.35);
  position: relative;
  z-index: 1;
}
.process-step h5 { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); margin-bottom: 0.3rem; }
.process-step p  { font-size: 0.9rem; color: #64748b; margin: 0; line-height: 1.6; }

/* Sidebar CTA */
.sidebar-cta { background: #fff; border: 2px solid #e2e8f0; border-radius: 18px; padding: 1.6rem; position: sticky; top: 90px; }
.sidebar-cta h5  { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.sidebar-cta p   { font-size: 0.85rem; color: #64748b; margin-bottom: 1.2rem; line-height: 1.6; }
.phone-big       { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--blue); text-decoration: none; display: block; margin-bottom: 1rem; }
.phone-big:hover { opacity: 0.8; }
.sidebar-info    { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #64748b; margin-bottom: 0.5rem; }
.sidebar-info i  { color: var(--blue); width: 16px; text-align: center; }
.sidebar-divider { border: none; border-top: 2px solid #f1f5f9; margin: 1.2rem 0; }

/* Audience links (sidebar) */
.audience-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 0.5rem;
}
.audience-link:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.audience-link i { width: 16px; text-align: center; color: var(--blue); }

/* Stat strip */
.stat-strip     { background: var(--dark); padding: 3rem 0; }
.stat-block     { text-align: center; }
.stat-block .num { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.8rem; color: var(--blue); line-height: 1; margin-bottom: 0.3rem; }
.stat-block p   { color: #94a3b8; font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* FAQ / Accordion */
.faq-section { padding: 5rem 0; background: #f8fafc; }
.accordion-button { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--dark); background: #fff !important; }
.accordion-button:not(.collapsed) { color: var(--blue) !important; box-shadow: none !important; }
.accordion-item   { border: 2px solid #e2e8f0 !important; border-radius: 12px !important; margin-bottom: 0.75rem; overflow: hidden; }
.accordion-body   { font-size: 0.93rem; color: #64748b; line-height: 1.7; }

/* CTA band */
.cta-band    { background: var(--blue); padding: 3.5rem 0; }
.cta-band h2 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 0.6rem; }
.cta-band p  { color: rgba(255,255,255,0.8); max-width: 460px; }

/* Related services */
.related-services    { padding: 4rem 0; background: var(--dark); }
.related-services h2 { font-family: 'Nunito', sans-serif; font-weight: 900; color: #fff; margin-bottom: 1.5rem; font-size: 1.6rem; }
.related-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.3rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.related-card:hover { background: rgba(255,255,255,0.12); border-color: var(--blue); }
.related-card-icon  { width: 44px; height: 44px; border-radius: 10px; background: rgba(26,143,209,0.2); color: #7dd3fc; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.related-card h6    { color: #fff; font-weight: 700; margin-bottom: 2px; font-size: 0.95rem; }
.related-card span  { color: #64748b; font-size: 0.8rem; }

/* Content section wrapper */
.content-section { padding: 5rem 0; background: #fff; }


/* ── BOILER INSTALLATION PAGE ─────────────────────────────── */

/* Brand strip (approved installers row) */
.brand-strip       { background: #f8fafc; border-bottom: 2px solid #e2e8f0; padding: 1.4rem 0; }
.brand-strip-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #94a3b8; white-space: nowrap; }
.brand-logos       { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

/* Brand logo wordmarks */
.logo-vaillant  { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-viessmann { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-ideal     { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-main      { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-vaillant .vaillant-text   { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.25rem; color: #009f4d; letter-spacing: -0.5px; }
.logo-viessmann .viessmann-text { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.25rem; color: #005b99; letter-spacing: -0.5px; }
.logo-ideal .ideal-text         { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.25rem; color: #e10019; letter-spacing: -0.5px; }
.logo-main .main-text           { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.25rem; color: #004a97; letter-spacing: -0.5px; }

/* Intro section */
.intro-section { padding: 5rem 0; background: #fff; }

/* Masonry photo grid */
.photo-masonry { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; gap: 12px; border-radius: 22px; overflow: hidden; }
.photo-masonry .tall           { grid-row: span 2; }
.photo-masonry div             { overflow: hidden; position: relative; }
.photo-masonry img             { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.photo-masonry div:hover img   { transform: scale(1.05); }
.photo-masonry .img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.75) 0%, transparent 100%);
  color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 0.7rem 0.9rem; opacity: 0; transition: opacity 0.3s;
}
.photo-masonry div:hover .img-label { opacity: 1; }

/* Included grid */
.included-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.included-item {
  background: #fff; border: 2px solid #e2e8f0; border-radius: 12px;
  padding: 1rem 1.1rem; display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--dark);
  transition: border-color 0.2s, background 0.2s;
}
.included-item:hover          { border-color: var(--blue); background: var(--blue-light); }
.included-item i              { color: var(--blue); font-size: 1rem; width: 18px; text-align: center; flex-shrink: 0; }

/* Boiler type cards */
.types-section { padding: 5rem 0; background: #f8fafc; }
.type-card { background: #fff; border-radius: 18px; border: 2px solid #e2e8f0; overflow: hidden; height: 100%; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.type-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,143,209,0.14); }
.type-card-img { height: 180px; overflow: hidden; position: relative; background: var(--blue-light); }
.type-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.type-card:hover .type-card-img img { transform: scale(1.07); }
.type-card-img .type-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue); color: #fff; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; border-radius: 20px; padding: 4px 12px;
}
.type-card-body      { padding: 1.4rem; }
.type-card-body h4   { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); font-size: 1.1rem; margin-bottom: 0.4rem; }
.type-card-body p    { font-size: 0.87rem; color: #64748b; margin-bottom: 0.8rem; line-height: 1.6; }
.type-tag { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: 0.72rem; font-weight: 700; border-radius: 20px; padding: 3px 10px; margin-right: 4px; margin-bottom: 4px; }

/* Brand deep-dive feature cards */
.brands-section              { padding: 5rem 0; background: #fff; }
.brand-feature               { border-radius: 22px; overflow: hidden; margin-bottom: 2.5rem; }
.brand-feature:last-child    { margin-bottom: 0; }
.vaillant-card               { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 2px solid #86efac; }
.viessmann-card              { background: linear-gradient(135deg, #eff6ff, #dbeafe); border: 2px solid #93c5fd; }
.brand-feature-inner         { padding: 2.5rem; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }

/* Vaillant large logo */
.vaillant-logo-lg   { display: flex; align-items: center; gap: 14px; }
.vaillant-shield    { width: 70px; height: 70px; }
.vaillant-wordmark  { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.2rem; color: #009f4d; letter-spacing: -1px; line-height: 1; }
.vaillant-sub       { font-size: 0.72rem; font-weight: 700; color: #166534; letter-spacing: 1px; text-transform: uppercase; }

/* Viessmann large logo */
.viessmann-logo-lg  { display: flex; align-items: center; gap: 14px; }
.viessmann-v        { width: 70px; height: 70px; }
.viessmann-wordmark { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.2rem; color: #005b99; letter-spacing: -1px; line-height: 1; }
.viessmann-sub      { font-size: 0.72rem; font-weight: 700; color: #1e40af; letter-spacing: 1px; text-transform: uppercase; }

/* Brand feature content */
.brand-feature-content h3   { font-family: 'Nunito', sans-serif; font-weight: 900; color: var(--dark); font-size: 1.4rem; margin-bottom: 0.5rem; }
.brand-feature-content p    { font-size: 0.92rem; color: #475569; line-height: 1.7; margin-bottom: 1rem; }
.brand-feature-specs        { display: flex; flex-wrap: wrap; gap: 10px; }
.spec-pill                  { display: inline-flex; align-items: center; gap: 6px; border-radius: 30px; padding: 5px 14px; font-size: 0.8rem; font-weight: 700; }
.spec-pill-green            { background: #dcfce7; color: #166534; }
.spec-pill-blue             { background: #dbeafe; color: #1e40af; }

/* Brand photo strip */
.brand-photo-strip          { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 160px; }
.brand-photo-strip div      { overflow: hidden; }
.brand-photo-strip img      { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.brand-photo-strip div:hover img { transform: scale(1.06); }

/* Preferred flag badge */
.preferred-flag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.5px; text-transform: uppercase; border-radius: 20px;
  padding: 4px 12px; margin-bottom: 0.8rem;
}
.preferred-flag i { font-size: 0.7rem; }

/* Sidebar brand pills */
.sidebar-brand-pill {
  display: flex; align-items: center; gap: 10px;
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px;
  padding: 0.7rem 1rem; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.5rem;
}

/* Gallery strip */
.gallery-strip               { display: grid; grid-template-columns: repeat(5, 1fr); height: 220px; gap: 6px; }
.gallery-strip div           { overflow: hidden; border-radius: 12px; }
.gallery-strip img           { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.gallery-strip div:hover img { transform: scale(1.08); }

/* Process row (horizontal steps — boiler page variant) */
.process-section             { padding: 5rem 0; background: #fff; }
.process-row                 { display: flex; gap: 0; }
.process-step-box            { flex: 1; text-align: center; position: relative; padding: 2rem 1rem; }
.process-step-box:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 2.2rem;
  width: 1px; height: 40px; background: #e2e8f0;
}
.step-circle {
  width: 52px; height: 52px; border-radius: 50%; background: var(--blue); color: #fff;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 6px 20px rgba(26,143,209,0.35);
}
.process-step-box h5 { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); font-size: 0.95rem; margin-bottom: 0.4rem; }
.process-step-box p  { font-size: 0.82rem; color: #64748b; margin: 0; line-height: 1.55; }

/* Compliance section (landlords dark band) */
.compliance-section          { padding: 5rem 0; background: var(--dark); position: relative; overflow: hidden; }
.compliance-section::before  { content: ''; position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; border-radius: 50%; background: rgba(26,143,209,0.08); }
.compliance-section::after   { content: ''; position: absolute; bottom: -60px; left: -60px; width: 250px; height: 250px; border-radius: 50%; background: rgba(26,143,209,0.06); }
.compliance-section .section-title { color: #fff; }
.compliance-section .section-sub   { color: #94a3b8; }
.compliance-card             { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 1.5rem; height: 100%; transition: background 0.2s; }
.compliance-card:hover       { background: rgba(255,255,255,0.10); }
.compliance-card .c-icon     { width: 48px; height: 48px; border-radius: 12px; background: rgba(26,143,209,0.25); color: #7dd3fc; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.compliance-card h5          { font-family: 'Nunito', sans-serif; font-weight: 800; color: #fff; margin-bottom: 0.4rem; font-size: 1rem; }
.compliance-card p           { font-size: 0.87rem; color: #94a3b8; margin: 0; line-height: 1.6; }

/* Boiler page responsive additions */
@media (max-width: 991px) {
  .process-row                       { flex-wrap: wrap; }
  .process-step-box                  { min-width: 50%; }
  .process-step-box:nth-child(2)::after { display: none; }
  .gallery-strip                     { grid-template-columns: repeat(3, 1fr); height: auto; }
  .gallery-strip div                 { height: 140px; }
  .gallery-strip div:nth-child(n+4)  { display: none; }
  .brand-feature-inner               { grid-template-columns: 1fr; }
  .brand-photo-strip                 { height: 130px; }
}
@media (max-width: 767px) {
  .photo-masonry                     { grid-template-rows: 200px 200px; }
  .process-step-box                  { min-width: 100%; }
  .process-step-box::after           { display: none !important; }
  .brand-photo-strip                 { grid-template-columns: 1fr 1fr; }
  .brand-photo-strip div:last-child  { display: none; }
}
@media (max-width: 575px) {
  .photo-masonry                     { grid-template-columns: 1fr; grid-template-rows: 220px 160px 160px; }
  .photo-masonry .tall               { grid-row: span 1; }
  .gallery-strip div:nth-child(n+3)  { display: none; }
  .gallery-strip                     { grid-template-columns: 1fr 1fr; }
}


/* ── SERVICES HUB PAGE ────────────────────────────────────── */

/* Service category cards */
.cat-card { display: flex; flex-direction: column; background: #fff; border-radius: 20px; border: 2px solid #e2e8f0; overflow: hidden; height: 100%; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; text-decoration: none; color: inherit; }
.cat-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,143,209,0.15); color: inherit; }
.cat-card-img { height: 200px; background: linear-gradient(135deg, var(--blue-light), #c8e8f6); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: var(--blue); position: relative; overflow: hidden; }
.cat-card-img .bg-icon { position: absolute; right: -10px; bottom: -10px; font-size: 7rem; opacity: 0.06; color: var(--blue); }
.cat-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.cat-card-body h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--dark); margin-bottom: 0.5rem; }
.cat-card-body p  { font-size: 0.9rem; color: #64748b; line-height: 1.6; flex: 1; }
.cat-card-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.9rem; color: var(--blue); }
.cat-card:hover .cat-card-link { gap: 10px; }
.cat-card-link i { transition: transform 0.2s; }
.cat-card:hover .cat-card-link i { transform: translateX(4px); }

/* Badge strip */
.badge-strip      { background: var(--blue); padding: 1.2rem 0; }
.badge-strip .item { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 0.88rem; }
.badge-strip .item i { opacity: 0.8; font-size: 1rem; }

/* USP section */
.usp-section { padding: 5rem 0; background: #f8fafc; }
.usp-card    { background: #fff; border-radius: 16px; padding: 1.8rem 1.5rem; box-shadow: 0 2px 16px rgba(0,0,0,0.05); text-align: center; height: 100%; }
.usp-icon    { width: 56px; height: 56px; border-radius: 14px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 1rem; }
.usp-card h5 { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.usp-card p  { font-size: 0.88rem; color: #64748b; margin: 0; line-height: 1.6; }

@media (max-width: 767px) { .cat-card-img { height: 150px; } }


/* ── COMMERCIAL PAGE ──────────────────────────────────────── */
.accred-strip { background: var(--dark); padding: 2rem 0; }
.accred-pill  { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 1rem 1.3rem; height: 100%; }
.accred-pill .a-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(26,143,209,0.2); color: #7dd3fc; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.accred-pill h6 { color: #fff; font-family: 'Nunito', sans-serif; font-weight: 800; margin-bottom: 2px; font-size: 0.92rem; }
.accred-pill p  { color: #94a3b8; font-size: 0.78rem; margin: 0; line-height: 1.4; }

/* Sector cards */
.sector-section { padding: 5rem 0; background: #f8fafc; }
.sector-card    { background: #fff; border-radius: 20px; border: 2px solid #e2e8f0; overflow: hidden; height: 100%; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.sector-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,143,209,0.14); }
.sector-img     { height: 200px; overflow: hidden; position: relative; }
.sector-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.sector-card:hover .sector-img img { transform: scale(1.06); }
.sector-img .img-placeholder { height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 600; text-align: center; }
.sector-img .img-placeholder i { font-size: 3rem; opacity: 0.4; }
.sector-tag  { position: absolute; top: 12px; left: 12px; background: var(--blue); color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; border-radius: 20px; padding: 4px 12px; }
.sector-body { padding: 1.5rem; }
.sector-body h3 { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); font-size: 1.2rem; margin-bottom: 0.5rem; }
.sector-body p  { font-size: 0.88rem; color: #64748b; margin-bottom: 1rem; line-height: 1.65; }
.sector-list    { list-style: none; padding: 0; margin: 0; }
.sector-list li { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--text); padding: 0.3rem 0; border-bottom: 1px solid #f8fafc; }
.sector-list li:last-child { border-bottom: none; }
.sector-list li i { color: var(--blue); font-size: 0.75rem; flex-shrink: 0; }

/* DBS section */
.dbs-section       { padding: 5rem 0; background: #fff; }
.dbs-card          { background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 100%); border-radius: 22px; padding: 2.5rem; position: relative; overflow: hidden; }
.dbs-card::before  { content: ''; position: absolute; top: -50px; right: -50px; width: 240px; height: 240px; border-radius: 50%; background: rgba(26,143,209,0.12); }
.dbs-card::after   { content: ''; position: absolute; bottom: -40px; left: 40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(26,143,209,0.07); }
.dbs-badge         { display: inline-flex; align-items: center; gap: 8px; background: rgba(22,163,74,0.2); border: 1px solid rgba(22,163,74,0.4); color: #86efac; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 20px; padding: 4px 12px; margin-bottom: 1rem; }
.dbs-card h3       { font-family: 'Nunito', sans-serif; font-weight: 900; color: #fff; font-size: 1.6rem; margin-bottom: 0.8rem; position: relative; z-index: 1; }
.dbs-card p        { color: #94a3b8; line-height: 1.7; font-size: 0.92rem; position: relative; z-index: 1; }
.dbs-types         { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; position: relative; z-index: 1; }
.dbs-type-pill     { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 0.9rem 1.2rem; flex: 1; min-width: 220px; }
.dbs-type-pill .dp-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(22,163,74,0.2); color: #86efac; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.dbs-type-pill h6  { color: #fff; font-family: 'Nunito', sans-serif; font-weight: 800; margin-bottom: 2px; font-size: 0.9rem; }
.dbs-type-pill p   { color: #94a3b8; font-size: 0.78rem; margin: 0; line-height: 1.4; }

/* Commercial services grid section wrapper
   NOTE: use class="comm-services-section" in commercial.html/php
   (.services-section at line 412 is the home-page variant with different padding) */
.comm-services-section { padding: 5rem 0; background: #f8fafc; }

/* Commercial service cards */
.comm-service-card       { background: #fff; border: 2px solid #e2e8f0; border-radius: 16px; padding: 1.6rem; height: 100%; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.comm-service-card:hover { border-color: var(--blue); box-shadow: 0 10px 30px rgba(26,143,209,0.12); transform: translateY(-3px); }
.cs-icon                 { width: 50px; height: 50px; border-radius: 12px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; transition: background 0.2s, color 0.2s; }
.comm-service-card:hover .cs-icon { background: var(--blue); color: #fff; }
.comm-service-card h5    { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; font-size: 1rem; }
.comm-service-card p     { font-size: 0.87rem; color: #64748b; margin: 0; line-height: 1.6; }

/* Accreditation feature cards (deep-dive — commercial page)
   NOTE: use class="comm-accred-section" in commercial.html/php
   to avoid conflict with the home-page .accred-section (blue band) */
.comm-accred-section  { padding: 5rem 0; background: #fff; }
.accred-feature       { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 2px solid #86efac; border-radius: 20px; padding: 2rem; height: 100%; }
.accred-feature h4    { font-family: 'Nunito', sans-serif; font-weight: 900; color: #14532d; margin-bottom: 0.6rem; }
.accred-feature p     { color: #166534; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.accred-feature .a-number { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--green); line-height: 1; }

/* Photo strip (4-col grid) */
.photo-strip               { display: grid; grid-template-columns: repeat(4, 1fr); height: 200px; gap: 8px; }
.photo-strip div           { overflow: hidden; border-radius: 14px; }
.photo-strip img           { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.photo-strip div:hover img { transform: scale(1.07); }

/* Generic image placeholder (dark gradient, used in sector and photo grids) */
.img-placeholder   { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 600; text-align: center; padding: 1rem; height: 100%; }
.img-placeholder i { font-size: 2rem; opacity: 0.4; }

/* Online works order link (sidebar) */
.online-works       { display: flex; align-items: center; gap: 10px; background: var(--blue-light); border-radius: 12px; padding: 0.9rem 1rem; text-decoration: none; color: var(--blue); font-weight: 700; font-size: 0.9rem; transition: background 0.2s; margin-top: 0.8rem; }
.online-works:hover { background: #cce6f7; }

/* Commercial page responsive */
@media (max-width: 991px) {
  .photo-strip                        { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-strip div                    { height: 140px; }
  .photo-strip div:nth-child(n+3)     { display: none; }
}
@media (max-width: 575px) {
  .dbs-types                          { flex-direction: column; }
  .photo-strip                        { grid-template-columns: 1fr; }
  .photo-strip div:nth-child(n+2)     { display: none; }
}


/* ── PIPEWORK PAGE ────────────────────────────────────────── */

/* Scope notice (amber callout) */
.scope-notice    { background: linear-gradient(135deg, #fffbeb, #fef3c7); border: 2px solid #fde68a; border-radius: 16px; padding: 1.4rem 1.6rem; display: flex; gap: 14px; align-items: flex-start; }
.scope-notice i  { color: var(--accent); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.scope-notice h6 { font-family: 'Nunito', sans-serif; font-weight: 800; color: #92400e; margin-bottom: 0.3rem; }
.scope-notice p  { font-size: 0.87rem; color: #78350f; margin: 0; line-height: 1.6; }

/* Section divider with coloured fade lines */
.section-divider      { display: flex; align-items: center; gap: 1rem; margin: 4rem 0 3rem; }
.section-divider span { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--dark); white-space: nowrap; }
.section-divider::before,
.section-divider::after { content: ''; flex: 1; height: 2px; }
.section-divider.gas-div::before,
.section-divider.gas-div::after  { background: linear-gradient(to right, transparent, #ef4444); }
.section-divider.gas-div::after  { background: linear-gradient(to left, transparent, #ef4444); }
.section-divider.heat-div::before,
.section-divider.heat-div::after { background: linear-gradient(to right, transparent, var(--blue)); }
.section-divider.heat-div::after { background: linear-gradient(to left, transparent, var(--blue)); }

/* Pipe service cards */
.pipe-card               { background: #fff; border-radius: 18px; border: 2px solid #e2e8f0; padding: 1.8rem; height: 100%; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.pipe-card:hover         { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.pipe-card.gas-card:hover  { border-color: var(--red); }
.pipe-card.heat-card:hover { border-color: var(--blue); }
.pipe-icon               { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.1rem; }
.icon-red                { background: #fef2f2; color: var(--red); }
.icon-blue               { background: var(--blue-light); color: var(--blue); }
.icon-orange             { background: #fff7ed; color: var(--orange); }
.pipe-card h5            { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.pipe-card p             { font-size: 0.88rem; color: #64748b; margin: 0; line-height: 1.65; }

/* Gas emergency callout (dark red) */
.gas-emergency           { background: linear-gradient(135deg, #450a0a, #7f1d1d); border-radius: 20px; padding: 2rem; display: flex; gap: 20px; align-items: flex-start; }
.gas-emergency .e-icon   { width: 56px; height: 56px; border-radius: 14px; background: rgba(239,68,68,0.25); color: #fca5a5; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.gas-emergency h4        { font-family: 'Nunito', sans-serif; font-weight: 900; color: #fee2e2; margin-bottom: 0.5rem; }
.gas-emergency p         { color: #fca5a5; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.gas-emergency a.emergency-num       { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.6rem; color: #fff; text-decoration: none; display: block; margin-bottom: 0.4rem; }
.gas-emergency a.emergency-num:hover { opacity: 0.85; }
.gas-emergency .sub-link   { color: #fca5a5; font-size: 0.82rem; }
.gas-emergency .sub-link a { color: #fb923c; }

/* Two-column photo grid (pipework) */
.photo-grid-2               { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border-radius: 20px; overflow: hidden; }
.photo-grid-2 img           { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s; }
.photo-grid-2 div           { overflow: hidden; }
.photo-grid-2 div:hover img { transform: scale(1.05); }

/* Red step-num variant */
.step-num.red-step { background: var(--red); box-shadow: 0 4px 16px rgba(239,68,68,0.35); }

/* Pipework responsive */
@media (max-width: 991px) {
  .photo-grid-3                         { grid-template-columns: 1fr 1fr; }
  .photo-grid-3 div:last-child          { display: none; }
}
@media (max-width: 575px) {
  .photo-grid-2,
  .photo-grid-3                         { grid-template-columns: 1fr; }
}


/* ── REPAIRS PAGE ─────────────────────────────────────────── */

/* Top emergency banner (red bar with pulse dot) */
.emergency-banner   { background: var(--red); padding: 0.7rem 0; text-align: center; }
.emergency-banner p { margin: 0; color: #fff; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
.emergency-banner a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.emergency-banner .pulse { display: inline-block; width: 9px; height: 9px; background: #fff; border-radius: 50%; animation: bannerPulse 1.4s ease-in-out infinite; }
@keyframes bannerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

/* Quick issue strip */
.issue-strip { background: #fff; border-bottom: 2px solid #f1f5f9; padding: 1.6rem 0; }
.issue-item  { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.88rem; color: var(--text); }
.issue-item i { color: var(--blue); font-size: 1rem; width: 20px; text-align: center; }

/* Fault cards */
.fault-card       { background: #fff; border: 2px solid #e2e8f0; border-radius: 16px; padding: 1.4rem; height: 100%; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.fault-card:hover { border-color: var(--blue); box-shadow: 0 10px 30px rgba(26,143,209,0.13); transform: translateY(-3px); }
.fault-icon       { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.fault-card h5    { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); font-size: 1rem; margin-bottom: 0.35rem; }
.fault-card p     { font-size: 0.87rem; color: #64748b; margin: 0; line-height: 1.6; }

/* Repairs 2-col photo grid (different to photo-grid-3 — has main-photo span) */
.photo-grid                  { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; gap: 12px; border-radius: 20px; overflow: hidden; }
.photo-grid .main-photo      { grid-row: span 2; }
.photo-grid img              { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.photo-grid img:hover        { transform: scale(1.04); }
.photo-grid div              { overflow: hidden; }

/* Warranty block (dark card) */
.warranty-block          { background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 100%); border-radius: 20px; padding: 2rem; position: relative; overflow: hidden; }
.warranty-block::before  { content: ''; position: absolute; top: -30px; right: -30px; width: 180px; height: 180px; border-radius: 50%; background: rgba(26,143,209,0.18); }
.warranty-block .big-num { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 4rem; color: var(--blue); line-height: 1; }
.warranty-block h4       { font-family: 'Nunito', sans-serif; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.warranty-block p        { color: #94a3b8; font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* Emergency block (light red callout) */
.emergency-block            { background: var(--red-light); border: 2px solid #fecaca; border-radius: 20px; padding: 2rem; }
.emergency-block h4         { font-family: 'Nunito', sans-serif; font-weight: 800; color: #991b1b; margin-bottom: 0.5rem; }
.emergency-block p          { color: #7f1d1d; font-size: 0.9rem; margin-bottom: 1.2rem; line-height: 1.6; }
.emergency-block a.big-phone       { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--red); text-decoration: none; display: block; margin-bottom: 1rem; }
.emergency-block a.big-phone:hover { opacity: 0.8; }

/* Track-a-job link */
.track-link       { display: flex; align-items: center; gap: 10px; background: var(--blue-light); border-radius: 12px; padding: 0.9rem 1rem; text-decoration: none; color: var(--blue); font-weight: 700; font-size: 0.9rem; transition: background 0.2s; }
.track-link:hover { background: #cce6f7; }
.track-link i     { font-size: 1.1rem; }

/* Fault section wrapper */
.fault-section { padding: 5rem 0; background: #f8fafc; }

/* Safety callout (amber) */
.safety-callout    { background: linear-gradient(135deg, #fffbeb, #fef3c7); border: 2px solid #fde68a; border-radius: 16px; padding: 1.5rem; display: flex; gap: 16px; align-items: flex-start; }
.safety-callout i  { color: var(--accent); font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.safety-callout h6 { font-family: 'Nunito', sans-serif; font-weight: 800; color: #92400e; margin-bottom: 0.3rem; }
.safety-callout p  { font-size: 0.87rem; color: #78350f; margin: 0; line-height: 1.6; }
.safety-callout a  { color: #92400e; font-weight: 700; }

/* Emergency hero button (red) */
.btn-emergency       { background: var(--red); color: #fff; font-weight: 700; border-radius: 50px; padding: 0.9rem 2rem; border: none; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; box-shadow: 0 6px 24px rgba(239,68,68,0.45); transition: background 0.2s, transform 0.15s; }
.btn-emergency:hover { background: #dc2626; transform: translateY(-2px); color: #fff; }

/* Repairs responsive */
@media (max-width: 991px) { .photo-grid { grid-template-rows: 180px 180px; } }
@media (max-width: 575px) {
  .photo-grid                               { grid-template-columns: 1fr; grid-template-rows: 220px 160px 160px; }
  .photo-grid .main-photo                   { grid-row: span 1; }
  .issue-strip .row > div:nth-child(n+5)    { display: none; }
}


/* ── EMERGENCY BAND ────────────────────────────────────────── */
.emergency-band { padding: 1.4rem 1.5rem; }
.emergency-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.emergency-text           { flex: 1; min-width: 220px; }
.emergency-text strong    { display: block; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1rem; margin-bottom: 0.2rem; }
.emergency-text span      { font-size: 0.83rem; line-height: 1.5; }

/* Closed — red pulsing */
.emergency-band--closed   { background: linear-gradient(135deg, #0d1b2a 0%, #1a2e45 100%); border-top: 3px solid #ef4444; }
.emergency-band--closed .emergency-text strong { color: #fff; }
.emergency-band--closed .emergency-text span   { color: #94a3b8; }

.emergency-pulse {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.emergency-pulse i { color: #ef4444; font-size: 1.4rem; position: relative; z-index: 1; }
.pulse-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(239,68,68,0.2);
  animation: emergencyPulse 1.8s ease-in-out infinite;
}
@keyframes emergencyPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.55); opacity: 0; }
}
.emergency-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ef4444;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 0.75rem 1.6rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(239,68,68,0.4);
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.emergency-cta:hover { background: #dc2626; transform: translateY(-1px); color: #fff; }

/* Closing soon — amber pulsing */
.emergency-band--soon   { background: linear-gradient(135deg, #1c1400 0%, #2d2000 100%); border-top: 3px solid #f0a500; }
.emergency-band--soon .emergency-text strong { color: #fff; }
.emergency-band--soon .emergency-text span   { color: #a3924a; }
.emergency-pulse--amber i { color: #f0a500; }
.pulse-dot--amber {
  background: rgba(240,165,0,0.2);
  animation: amberPulse 1.8s ease-in-out infinite;
}
@keyframes amberPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.55); opacity: 0; }
}
.emergency-cta--amber       { background: #f0a500; box-shadow: 0 4px 20px rgba(240,165,0,0.35); color: #0d1b2a; }
.emergency-cta--amber:hover { background: #d4920a; color: #0d1b2a; }

/* Opening soon — calm blue */
.emergency-band--opening   { background: linear-gradient(135deg, #0f2236 0%, #1a3a5c 100%); border-top: 3px solid var(--blue); }
.emergency-band--opening .emergency-text strong { color: #fff; }
.emergency-band--opening .emergency-text span   { color: #94a3b8; }
.emergency-icon--opening {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(26,143,209,0.2);
  color: #7dd3fc;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.emergency-cta--opening       { background: var(--blue); box-shadow: 0 4px 16px rgba(26,143,209,0.3); color: #fff; font-size: 0.9rem; padding: 0.65rem 1.4rem; }
.emergency-cta--opening:hover { background: var(--blue-dark); color: #fff; }

/* Open — calm grey */
.emergency-band--open   { background: #f1f5f9; border-top: 2px solid #e2e8f0; }
.emergency-band--open .emergency-text strong { color: var(--dark); }
.emergency-band--open .emergency-text span   { color: #64748b; }
.emergency-icon--open {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.emergency-cta--open       { background: var(--blue); box-shadow: 0 4px 16px rgba(26,143,209,0.25); color: #fff; font-size: 0.9rem; padding: 0.65rem 1.4rem; }
.emergency-cta--open:hover { background: var(--blue-dark); color: #fff; }


/* ── FOOTER ────────────────────────────────────────────────── */
footer         { background: #07111d; color: #475569; padding: 1.5rem 0; font-size: 0.83rem; text-align: center; }
footer a       { color: #475569; }
footer a:hover { color: var(--blue); }


/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .sidebar-cta          { position: static; margin-top: 2.5rem; }
  .photo-grid-3         { grid-template-rows: 180px 180px; }
}

@media (max-width: 767px) {
  .hero                 { min-height: 100svh; }
  .hero-trust           { gap: 10px; }
  .phone-banner .tagline { display: none; }
  .why-img-wrap         { margin-bottom: 2.5rem; }
}

@media (max-width: 575px) {
  .photo-grid-3         { grid-template-columns: 1fr; grid-template-rows: 220px 160px 160px; }
  .photo-grid-3 .main   { grid-row: span 1; }
  .warranty-callout     { flex-direction: column; }
  .emergency-band-inner { text-align: center; }
  .emergency-text       { min-width: 0; width: 100%; }
  .emergency-cta,
  .emergency-cta--amber,
  .emergency-cta--open  { width: 100%; justify-content: center; }
  .emergency-pulse,
  .emergency-icon--open { margin: 0 auto; }
}


/* ── PRIVACY POLICY PAGE ───────────────────────────────────── */

/* Page background override */
body.page-textbase { background: #f8fafc; }

/* Page header (dark gradient, not a hero image) */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 100%);
  padding: 3.5rem 0 2.8rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,143,209,0.22) 0%, transparent 65%);
}
.page-header .breadcrumb-item a      { color: #7dd3fc; font-size: 0.83rem; font-weight: 600; text-decoration: none; }
.page-header .breadcrumb-item.active { color: #94a3b8; font-size: 0.83rem; }
.page-header h1      { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.page-header .updated       { color: #64748b; font-size: 0.83rem; position: relative; z-index: 1; }
.page-header .updated span  { color: #94a3b8; font-weight: 600; }

/* Layout wrapper */
.policy-wrap { padding: 3.5rem 0 5rem; }

/* Table of contents */
.toc          { background: #fff; border: 2px solid #e2e8f0; border-radius: 18px; padding: 1.8rem; position: sticky; top: 90px; }
.toc h5       { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); font-size: 1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.toc h5 i     { color: var(--blue); }
.toc ol       { padding-left: 1.2rem; margin: 0; }
.toc ol li    { margin-bottom: 0.5rem; }
.toc ol li a  { color: #64748b; font-size: 0.87rem; font-weight: 600; text-decoration: none; transition: color 0.2s; line-height: 1.4; display: block; }
.toc ol li a:hover { color: var(--blue); }
.toc-divider  { border: none; border-top: 2px solid #f1f5f9; margin: 1rem 0; }
.toc-meta     { font-size: 0.78rem; color: #94a3b8; line-height: 1.5; }

/* Business / data controller card */
.business-card    { background: linear-gradient(135deg, var(--dark), #1a3a5c); border-radius: 16px; padding: 1.4rem; margin-bottom: 2rem; }
.business-card h6 { font-family: 'Nunito', sans-serif; font-weight: 800; color: #fff; margin-bottom: 0.8rem; font-size: 0.9rem; letter-spacing: 0.5px; text-transform: uppercase; }
.business-card p  { color: #ffffff; font-size: 0.87rem; margin: 0.3rem 0; line-height: 1.5; }
.business-card a  { color: #7dd3fc; text-decoration: none; }
.business-card a:hover { color: #fff; }

/* Policy sections */
.policy-section              { background: #fff; border-radius: 18px; border: 2px solid #e2e8f0; padding: 2.2rem; margin-bottom: 1.5rem; scroll-margin-top: 100px; }
.policy-section:last-child   { margin-bottom: 0; }
.section-number              { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: var(--blue); color: #fff; border-radius: 50%; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.95rem; flex-shrink: 0; margin-right: 0.7rem; }
.policy-section h2           { font-family: 'Nunito', sans-serif; font-weight: 900; color: var(--dark); font-size: 1.25rem; margin-bottom: 1.2rem; display: flex; align-items: center; }
.policy-section h3           { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); font-size: 1rem; margin: 1.4rem 0 0.5rem; }
.policy-section p            { color: #475569; font-size: 0.93rem; line-height: 1.8; margin-bottom: 0.9rem; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul,
.policy-section ol           { padding-left: 1.4rem; margin-bottom: 0.9rem; }
.policy-section li           { color: #475569; font-size: 0.93rem; line-height: 1.75; margin-bottom: 0.3rem; }
.policy-section a            { color: var(--blue); text-decoration: none; font-weight: 600; }
.policy-section a:hover      { text-decoration: underline; }

/* Generic callout boxes (also used on tenant-info) */
.callout          { border-radius: 12px; padding: 1.2rem 1.4rem; display: flex; gap: 14px; align-items: flex-start; margin: 1.2rem 0; }
.callout i        { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.callout p        { font-size: 0.88rem; line-height: 1.65; margin: 0; }
.callout strong   { font-weight: 700; }
.callout-blue     { background: var(--blue-light); border: 1.5px solid #bfdbf7; }
.callout-blue i   { color: var(--blue); }
.callout-blue p   { color: #1e3a5f; }
.callout-green    { background: #f0fdf4; border: 1.5px solid #86efac; }
.callout-green i  { color: #16a34a; }
.callout-green p  { color: #14532d; }
.callout-amber    { background: #fffbeb; border: 1.5px solid #fde68a; }
.callout-amber i  { color: #d97706; }
.callout-amber p  { color: #78350f; }
.callout-dark     { background: linear-gradient(135deg, #f8fafc, #f1f5f9); border: 1.5px solid #e2e8f0; }
.callout-dark i   { color: var(--dark); }
.callout-dark p   { color: var(--dark); }

/* Data table */
.data-table                  { width: 100%; border-collapse: collapse; font-size: 0.87rem; margin: 1rem 0; }
.data-table th               { background: #f8fafc; color: var(--dark); font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.75rem 1rem; text-align: left; border-bottom: 2px solid #e2e8f0; }
.data-table td               { padding: 0.7rem 1rem; color: #475569; border-bottom: 1px solid #f1f5f9; vertical-align: top; line-height: 1.6; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td      { background: #f8fafc; }

/* Access panel feature card */
.access-panel-card           { background: linear-gradient(135deg, #0d1b2a, #1a3a5c); border-radius: 18px; padding: 2rem; position: relative; overflow: hidden; border: 1px solid rgba(26,143,209,0.3); }
.access-panel-card::before   { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(26,143,209,0.1); }
.access-panel-card h4        { font-family: 'Nunito', sans-serif; font-weight: 900; color: #fff; font-size: 1.2rem; margin-bottom: 0.7rem; position: relative; z-index: 1; }
.access-panel-card p         { color: #94a3b8; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.access-panel-card .ap-icon  { width: 56px; height: 56px; border-radius: 14px; background: rgba(26,143,209,0.25); color: #7dd3fc; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.access-panel-card a.access-btn       { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; font-weight: 700; border-radius: 30px; padding: 0.7rem 1.4rem; text-decoration: none; font-size: 0.9rem; transition: background 0.2s, transform 0.15s; position: relative; z-index: 1; }
.access-panel-card a.access-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* Rights grid */
.rights-grid       { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 1rem; }
.right-card        { background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 12px; padding: 1rem 1.1rem; transition: border-color 0.2s, background 0.2s; }
.right-card:hover  { border-color: var(--blue); background: var(--blue-light); }
.right-card i      { color: var(--blue); font-size: 1.1rem; margin-bottom: 0.5rem; display: block; }
.right-card h6     { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); margin-bottom: 0.3rem; font-size: 0.88rem; }
.right-card p      { font-size: 0.8rem; color: #64748b; margin: 0; line-height: 1.5; }

/* Inline contact cards (privacy page) */
.contact-card-inline          { display: flex; align-items: center; gap: 14px; background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 14px; padding: 1.1rem 1.3rem; margin-top: 0.8rem; }
.contact-card-inline .cc-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-card-inline h6       { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--dark); margin-bottom: 2px; font-size: 0.9rem; }
.contact-card-inline a,
.contact-card-inline p        { font-size: 0.85rem; color: #64748b; margin: 0; text-decoration: none; }
.contact-card-inline a:hover  { color: var(--blue); }

/* Privacy page responsive overrides */
@media (max-width: 991px) { .toc { position: static; margin-bottom: 2rem; } }
@media (max-width: 575px)  {
  .policy-section            { padding: 1.5rem; }
  .data-table                { font-size: 0.8rem; }
  .data-table th,
  .data-table td             { padding: 0.6rem 0.7rem; }
}


/* ── REMINDER PAGE ─────────────────────────────────────────── */

/* Shared styled input — used across reminder form fields */
.n4-input {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.n4-input:focus { border-color: var(--blue); }

/* Reminder type checkbox cards (Boiler Service / CP12) */
.type-option {
  display: block;
  cursor: pointer;
  position: relative;
}
.type-option input[type="checkbox"],
.type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.type-option-inner {
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.1rem;
  text-align: center;
  background: #f8fafc;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
}
.type-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 0.7rem;
  transition: background 0.2s, color 0.2s;
}
.tick-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--blue);
  font-size: 1.1rem;
}
.type-option input:checked ~ .type-option-inner {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: 0 4px 16px rgba(26,143,209,0.15);
}
.type-option:hover .type-option-inner { border-color: #bfdbf7; background: #fff; }

/* Advance notice pill selectors (14 days / 30 days / Both) */
.advance-option {
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.advance-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.advance-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.7rem 1.4rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  text-align: center;
  min-width: 80px;
  color: var(--dark);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.advance-option input:checked ~ .advance-inner {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: 0 4px 14px rgba(26,143,209,0.15);
  color: var(--blue);
}
.advance-option:hover .advance-inner { border-color: #bfdbf7; background: #fff; }


/* ── LEGAL BANNER ─────────────────────────────────────────── */
/* Amber notification strip — used on pages requiring legal notices */
.legal-banner {
  background: var(--amber);
  padding: 0.7rem 0;
  text-align: center;
}
.legal-banner p {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}


/* ── LEGAL CALLOUT ────────────────────────────────────────── */
/* Green callout box — used on landlord/legal pages for key info */
.legal-callout {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #86efac;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.legal-callout .icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}
.legal-callout h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #14532d;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}
.legal-callout p {
  color: #166534;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}
.legal-callout a {
  color: #14532d;
  font-weight: 700;
}
@media (max-width: 575px) { .legal-callout { flex-direction: column; } }


/* ── PENALTY CARD ─────────────────────────────────────────── */
/* Dark gradient card for penalty/risk information — landlord pages */
.penalty-card {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 100%);
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.penalty-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(26,143,209,0.1);
}
.penalty-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.penalty-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 1.2rem;
}


/* ── PENALTY BADGES ───────────────────────────────────────── */
/* Red-tinted info rows inside .penalty-card */
.penalty-badge {
  background: rgba(239,68,68,0.18);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}
.penalty-badge i      { color: #fca5a5; font-size: 1.3rem; flex-shrink: 0; }
.penalty-badge strong { color: #fca5a5; font-size: 0.93rem; display: block; margin-bottom: 2px; }
.penalty-badge span   { color: #cbd5e1; font-size: 0.82rem; }

/* Lighter variant for secondary penalty items */
.penalty-badge-2 {
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.25);
}

