/* ============================================================
   RTF Compliance - Shared Stylesheet
   rtfcompliance.co.uk
   ============================================================ */

/* ── TOKENS ── */
:root {
  --green:      #2E7D32;
  --green-dark: #1B5E20;
  --green-pale: #F1F8F1;
  --black:      #0F0F0F;
  --dark:       #1A1A1A;
  --mid:        #444;
  --muted:      #777;
  --border:     #E2E2DA;
  --bg:         #FAFAF7;
  --white:      #FFFFFF;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', Helvetica, sans-serif;
  --radius:     6px;
  --trans:      0.15s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: color var(--trans); }
a:hover { color: var(--green); }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.3px;
}
h1 { font-size: clamp(34px, 5vw, 60px); }
h2 { font-size: clamp(24px, 3.5vw, 38px); }
h3 { font-size: clamp(17px, 2.2vw, 21px); }
h4 { font-size: 16px; }
p  { font-family: var(--sans); }

.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  display: block;
}

/* ── LAYOUT ── */
.container  { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── BUTTONS ── */
.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
  cursor: pointer;
  border: none;
  line-height: 1.4;
}
.btn-primary        { background: var(--green); color: var(--white); }
.btn-primary:hover  { background: var(--green-dark); color: var(--white); }
.btn-wa             { background: #1DAA61; color: var(--white); }
.btn-wa:hover       { background: #128C4F; color: var(--white); }
.btn-outline        { background: transparent; color: var(--white); border: 1px solid #333; }
.btn-outline:hover  { border-color: #666; color: var(--white); }
.btn-dark           { background: var(--black); color: var(--white); border: 1px solid #2A2A2A; }
.btn-dark:hover     { border-color: #444; color: var(--white); }
.btn-lg             { font-size: 15px; padding: 13px 26px; }

/* ══════════════════════════════════════════
   HEADER & NAVIGATION
   ══════════════════════════════════════════ */
header {
  background: var(--black);
  border-bottom: 1px solid #1A1A1A;
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--green); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: #888;
  transition: color var(--trans);
  white-space: nowrap;
}
.nav-links li a:hover { color: var(--white); }

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

/* Hamburger - hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #888;
  transition: all 0.2s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 190;
  flex-direction: column;
  padding: 80px 32px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #1A1A1A;
}
.mobile-nav-links li a {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  color: #777;
  padding: 15px 0;
  border-bottom: 1px solid #1A1A1A;
  transition: color var(--trans);
}
.mobile-nav-links li a:hover { color: var(--white); }

.mobile-nav-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ══════════════════════════════════════════
   HOMEPAGE HERO
   ══════════════════════════════════════════ */
.hero {
  background: var(--black);
  padding: 96px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: end;
}
.hero-label    { margin-bottom: 20px; }
.hero h1       { color: var(--white); margin-bottom: 20px; }
.hero h1 em    { font-style: italic; color: var(--green); }
.hero-body {
  font-size: 16.5px;
  color: #888;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-actions  { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust {
  border-top: 1px solid #1A1A1A;
  padding: 20px 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-stat { font-family: var(--sans); font-size: 12.5px; color: #555; }
.trust-stat strong { display: block; font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 2px; }

/* Services panel in hero */
.services-panel {
  background: #141414;
  border-radius: var(--radius) var(--radius) 0 0;
  border: 1px solid #1A1A1A;
  border-bottom: none;
  overflow: hidden;
  align-self: end;
}
.panel-head {
  padding: 18px 22px;
  border-bottom: 1px solid #1A1A1A;
}
.panel-head p {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
}
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid #181818;
  transition: background var(--trans);
}
.service-row:hover { background: #1C1C1C; }
.service-row:last-child { border-bottom: none; }
.service-row-name { font-family: var(--sans); font-size: 13.5px; color: #BBB; transition: color var(--trans); }
.service-row:hover .service-row-name { color: var(--white); }

.svc-cat {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}
.cat-fire { background: #1F1208; color: #C9622A; }
.cat-elec { background: #08121F; color: #3A8CC9; }
.cat-comp { background: #081508; color: var(--green); }
.cat-sec  { background: #1A1208; color: #B8962A; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════ */
.page-hero {
  background: var(--black);
  padding: 52px 0 60px;
  border-bottom: 1px solid #1A1A1A;
}
.page-hero h1       { color: var(--white); margin: 20px 0 16px; }
.page-hero h1 em    { font-style: italic; color: var(--green); }
.page-hero-body {
  font-size: 16px;
  color: #777;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.page-hero-actions  { display: flex; gap: 10px; flex-wrap: wrap; }
.page-hero-trust    { margin-top: 32px; border-top: 1px solid #1A1A1A; padding-top: 20px; display: flex; gap: 28px; flex-wrap: wrap; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11.5px;
  color: #3A3A3A;
}
.breadcrumb a       { color: #3A3A3A; transition: color var(--trans); }
.breadcrumb a:hover { color: #777; }
.breadcrumb-sep     { color: #2A2A2A; user-select: none; }
.breadcrumb-cur     { color: #555; }

/* ══════════════════════════════════════════
   TICKER STRIP
   ══════════════════════════════════════════ */
.ticker {
  background: var(--green);
  padding: 12px 0;
}
.ticker-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 32px;
}
.ticker-item {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}
.ticker-item::before { content: '\B7'; margin-right: 10px; color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-left h2 { margin: 14px 0 18px; }
.about-left p  { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 14px; }

.richard-block {
  margin-top: 32px;
  padding: 28px;
  background: var(--black);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
}
.richard-name  { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 4px; }
.richard-role  {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}
.richard-block p { font-size: 14px; color: #777; line-height: 1.75; margin: 0; }

.pata-badge {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #161616;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  padding: 8px 14px;
}
.pata-badge span  { font-family: var(--sans); font-size: 11px; color: #666; letter-spacing: 0.5px; }
.pata-badge strong { color: #AAA; font-weight: 500; }

.pillars { margin-top: 12px; }
.pillar  {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar-num   { font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--green); padding-top: 3px; }
.pillar-title { font-family: var(--sans); font-size: 14.5px; font-weight: 500; color: var(--black); margin-bottom: 3px; }
.pillar-body  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════
   SERVICES GRID (homepage)
   ══════════════════════════════════════════ */
.services-full {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-head      { margin-bottom: 44px; }
.services-head h2   { margin: 14px 0 10px; }
.services-head p    { font-size: 15px; color: var(--mid); max-width: 520px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.service-card {
  padding: 30px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.service-card:hover { background: var(--green-pale); }

.service-card-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.service-card h3 { font-size: 19px; color: var(--black); margin-bottom: 10px; }
.service-card p  { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }

.service-link {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
  display: inline-block;
}
.service-link:hover { color: var(--green-dark); border-color: var(--green-dark); }

/* ══════════════════════════════════════════
   CONTENT LAYOUT (service pages)
   ══════════════════════════════════════════ */
.content-section { background: var(--bg); }
.content-section.alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 284px;
  gap: 64px;
  align-items: start;
}

.content-main h2 { margin-bottom: 16px; }
.content-main h3 { margin: 36px 0 12px; font-size: 19px; }
.content-main p  { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.content-main ul,
.content-main ol {
  margin: 0 0 20px 20px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
}
.content-main li  { margin-bottom: 7px; }
.content-main strong { color: var(--black); font-weight: 500; }

/* Legal callout box */
.legal-box {
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.legal-box p { font-size: 14px; color: #2A5C2A; line-height: 1.75; margin: 0; }
.legal-box strong { font-weight: 500; }

/* Content sidebar */
.content-sidebar { display: flex; flex-direction: column; gap: 14px; }

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-box-head {
  background: var(--black);
  padding: 14px 18px;
}
.sidebar-box-head p {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
}
.sidebar-box-body { padding: 18px; }
.sidebar-box-body p  { font-size: 13px; color: var(--mid); line-height: 1.75; margin-bottom: 14px; }
.sidebar-box-body p:last-child { margin-bottom: 0; }
.sidebar-box-body .btn { display: block; text-align: center; margin-bottom: 8px; }
.sidebar-box-body .btn:last-child { margin-bottom: 0; }

.sidebar-list { list-style: none; }
.sidebar-list li {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--mid);
  padding: 9px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ── WHAT'S INCLUDED GRID ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.included-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.included-item h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}
.included-item p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── FREQUENCY TABLE ── */
.freq-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 13.5px;
  margin: 20px 0;
}
.freq-table th {
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--border);
  background: var(--white);
}
.freq-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
  vertical-align: top;
  line-height: 1.6;
}
.freq-table tr:last-child td { border-bottom: none; }
.freq-table tr:hover td { background: var(--green-pale); }

/* ── CODE BADGE ── */
.code-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-right: 4px;
}
.code-c1 { background: #FFF0EE; color: #C0392B; }
.code-c2 { background: #FFF8EE; color: #E67E22; }
.code-c3 { background: #EFF6EF; color: var(--green); }

/* ══════════════════════════════════════════
   PROCESS SECTION
   ══════════════════════════════════════════ */
.process-section       { background: var(--black); }
.process-section .label { color: #3D8B37; margin-bottom: 14px; }
.process-section h2    { color: var(--white); margin-bottom: 52px; }
.process-section h2 em { font-style: italic; color: var(--green); }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #1A1A1A; }
.process-step {
  padding: 36px 32px;
  border-right: 1px solid #1A1A1A;
}
.process-step:last-child { border-right: none; }
.step-number  { font-family: var(--serif); font-size: 40px; color: #222; line-height: 1; margin-bottom: 20px; }
.process-step h3 { font-family: var(--serif); font-size: 19px; color: var(--white); margin-bottom: 10px; }
.process-step p  { font-size: 13.5px; color: #666; line-height: 1.75; }

/* ══════════════════════════════════════════
   REVIEWS SECTION
   ══════════════════════════════════════════ */
.reviews-section { background: var(--black); border-top: 1px solid #1A1A1A; }
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid #1A1A1A;
}
.reviews-header h2 { color: var(--white); margin-top: 10px; }

.google-rating .rating-num { font-family: var(--serif); font-size: 46px; color: var(--white); line-height: 1; text-align: right; }
.google-rating .rating-sub { font-family: var(--sans); font-size: 11.5px; color: #555; margin-top: 4px; text-align: right; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card {
  background: #111;
  border: 1px solid #1A1A1A;
  border-radius: var(--radius);
  padding: 26px 22px;
}
.review-stars  { font-size: 12px; color: #FBBC05; letter-spacing: 2px; margin-bottom: 14px; }
.review-text   { font-family: var(--serif); font-style: italic; font-size: 14.5px; color: #AAA; line-height: 1.7; margin-bottom: 18px; }
.review-author { font-family: var(--sans); font-size: 11.5px; color: #444; }
.review-author strong { color: #777; font-weight: 500; }

/* ══════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════ */
.faq-section { background: var(--bg); }
.faq-grid    { display: grid; grid-template-columns: 300px 1fr; gap: 72px; align-items: start; }
.faq-left h2 { margin: 14px 0 16px; }
.faq-left p  { font-size: 14.5px; color: var(--mid); line-height: 1.75; }
.faq-left .btn { margin-top: 24px; }

.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question-text { font-family: var(--sans); font-size: 14.5px; font-weight: 500; color: var(--black); line-height: 1.4; }
.faq-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans), border-color var(--trans);
}
.faq-icon svg { width: 10px; height: 10px; stroke: var(--muted); transition: transform 0.2s, stroke var(--trans); }
.faq-item.open .faq-icon { background: var(--green); border-color: var(--green); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 14px; color: var(--mid); line-height: 1.8; }

/* ══════════════════════════════════════════
   COVERAGE SECTION
   ══════════════════════════════════════════ */
.coverage-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.coverage-grid    { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }
.coverage-left h2 { margin: 14px 0 16px; }
.coverage-left p  { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 14px; }

.address-block {
  margin-top: 10px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}
.address-block p { font-size: 12.5px; color: var(--muted); line-height: 1.7; margin: 0; }
.address-block strong { color: var(--mid); font-weight: 500; }

.towns-list { display: flex; flex-wrap: wrap; gap: 7px; padding-top: 4px; }
.town {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--mid);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  transition: border-color var(--trans), color var(--trans);
}
.town:hover { border-color: var(--green); color: var(--green); }

/* ══════════════════════════════════════════
   BLOG SECTION
   ══════════════════════════════════════════ */
.blog-section { background: var(--bg); }
.blog-head    { margin-bottom: 44px; }
.blog-head h2 { margin: 14px 0 10px; }
.blog-head p  { font-size: 15px; color: var(--mid); max-width: 520px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--trans);
}
.blog-card:hover { border-color: #CCC; }
.blog-card-tag {
  padding: 22px 22px 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  display: block;
}
.blog-card-body { padding: 10px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3  { font-family: var(--serif); font-size: 17px; color: var(--black); line-height: 1.3; margin-bottom: 10px; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--green); }
.blog-card p   { font-size: 13px; color: var(--mid); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.blog-meta     { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 14px; }
.blog-date     { font-family: var(--sans); font-size: 11.5px; color: var(--muted); }
.blog-read-link { font-family: var(--sans); font-size: 12.5px; font-weight: 500; color: var(--green); border-bottom: 1px solid transparent; }
.blog-read-link:hover { border-color: var(--green); color: var(--green); }

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta-section      { background: var(--black); text-align: center; }
.cta-section .label { color: #3D8B37; }
.cta-section h2   { color: var(--white); margin: 14px auto 18px; max-width: 540px; }
.cta-section h2 em { font-style: italic; color: var(--green); }
.cta-section p    { font-size: 15.5px; color: #666; max-width: 460px; margin: 0 auto 32px; line-height: 1.75; }
.cta-btns         { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   RELATED SERVICES
   ══════════════════════════════════════════ */
.related-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.related-head { margin-bottom: 32px; }
.related-head h2 { margin-top: 12px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color var(--trans), background var(--trans);
}
.related-card:hover { border-color: var(--green); background: var(--green-pale); }
.related-card-tag { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: block; }
.related-card h3  { font-family: var(--serif); font-size: 18px; color: var(--black); margin-bottom: 8px; }
.related-card p   { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }
.related-card .service-link { font-size: 12.5px; }

/* ══════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════ */
.contact-section { background: var(--bg); }
.contact-grid    { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 7px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 11px 14px;
  transition: border-color var(--trans);
  outline: none;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--green); }
.form-row textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-row select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23777' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }

.form-submit { margin-top: 8px; }
.form-submit .btn { font-size: 15px; padding: 13px 28px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 10px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.contact-detail-box h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-detail-box a {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}
.contact-detail-box a:hover { color: var(--green); }
.contact-detail-box p { font-size: 12.5px; color: var(--muted); margin: 6px 0 0; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: #080808;
  border-top: 1px solid #141414;
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid #141414;
}
.footer-logo { font-family: var(--serif); font-size: 19px; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--green); }
.footer-brand p { font-size: 13px; color: #444; line-height: 1.75; margin-bottom: 18px; max-width: 290px; }
.footer-contact a { display: block; font-size: 13px; color: #444; margin-bottom: 5px; transition: color var(--trans); }
.footer-contact a:hover { color: #888; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-family: var(--sans); font-size: 13px; color: #444; transition: color var(--trans); }
.footer-col ul li a:hover { color: #888; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11.5px; color: #2A2A2A; }
.footer-bottom a { font-size: 11.5px; color: #2A2A2A; transition: color var(--trans); }
.footer-bottom a:hover { color: #555; }

/* ══════════════════════════════════════════
   RESPONSIVE - TABLET (≤1024px)
   Fix: collapse nav to hamburger at this breakpoint
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  /* NAV FIX - hide links, show hamburger, hide WhatsApp in header */
  .nav-links          { display: none; }
  .nav-hamburger      { display: flex; }
  .nav-cta .btn-wa    { display: none; }

  /* Homepage hero */
  .hero-grid   { grid-template-columns: 1fr; gap: 48px; }
  .hero        { padding: 72px 0 0; }
  .hero-body   { max-width: 100%; }
  .services-panel { border-radius: var(--radius); border-bottom: 1px solid #1A1A1A; }

  /* Layouts */
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .coverage-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid      { grid-template-columns: 1fr; gap: 40px; }
  .content-grid  { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }

  /* Grids */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
  .related-grid  { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step  { border-right: none; border-bottom: 1px solid #1A1A1A; }
  .process-step:last-child { border-bottom: none; }

  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE - MOBILE (≤768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section   { padding: 60px 0; }

  /* Hide phone button in header on mobile - it's in the mobile nav */
  .nav-cta   { display: none; }

  /* Hero */
  h1           { font-size: clamp(30px, 7vw, 44px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .hero-trust  { gap: 20px; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { text-align: center; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .related-grid  { grid-template-columns: 1fr; }

  .reviews-header      { flex-direction: column; align-items: flex-start; gap: 16px; }
  .google-rating .rating-num { text-align: left; }
  .google-rating .rating-sub { text-align: left; }

  .cta-btns    { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .ticker-inner { gap: 4px 20px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE - SMALL MOBILE (≤480px)
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section   { padding: 48px 0; }
  .faq-question-text { font-size: 14px; }
  .freq-table { font-size: 12.5px; }
}
