/* ACG Electrical — shared styles */
:root {
  --ink: #14181f;
  --ink-soft: #3a4352;
  --muted: #6b7485;
  --paper: #f7f6f3;
  --white: #ffffff;
  --line: #e4e2dc;
  --yellow: #e8b80e;
  --yellow-deep: #c99700;
  --navy: #1a2332;
  --navy-2: #243044;
  --shadow: 0 12px 40px rgba(20, 24, 31, .12);
  --radius: 14px;
  --wrap: 1120px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--yellow);
  color: var(--ink);
  padding: .75rem 1.25rem;
  font-weight: 700;
  border-radius: 8px;
  z-index: 9999;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--navy);
}

:focus-visible {
  outline: 2px solid var(--yellow-deep);
  outline-offset: 3px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

/* Header */
#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
#header.scrolled,
#header.solid {
  background: rgba(26, 35, 50, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-block: .6rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; }
.foot-logo { height: 40px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  padding: .55rem .8rem;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.nav-cta {
  background: var(--yellow) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  margin-left: .35rem;
  box-shadow: 0 4px 12px rgba(232, 184, 14, .25);
}
.nav-cta:hover {
  background: #f0c62a !important;
  transform: translateY(-1px);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  z-index: 101;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.35rem;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  transition: transform .15s, background .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(232, 184, 14, .35);
}
.btn-primary:hover { background: #f0c62a; }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.block .btn-ghost {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat var(--navy-2);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide.kb1 { animation: kb1 18s ease-in-out infinite alternate; }
.hero-slide.kb2 { animation: kb2 20s ease-in-out infinite alternate; }
.hero-slide.kb3 { animation: kb3 16s ease-in-out infinite alternate; }
@keyframes kb1 {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.08) translate(-1.5%, -1%); }
}
@keyframes kb2 {
  from { transform: scale(1.05) translate(1%, 0); }
  to { transform: scale(1.12) translate(-1%, 1%); }
}
@keyframes kb3 {
  from { transform: scale(1.02) translate(0, 1%); }
  to { transform: scale(1.1) translate(1%, -1%); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,24,31,.45) 0%, rgba(20,24,31,.55) 40%, rgba(20,24,31,.88) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(232,184,14,.12), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  max-width: 720px;
  margin-left: max(calc((100% - var(--wrap)) / 2), 1.25rem);
  margin-right: auto;
  width: min(100% - 2.5rem, 720px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(232,184,14,.25);
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 800;
  margin-bottom: .85rem;
  text-wrap: balance;
}
.hero h1 .hl { color: var(--yellow); }
.hero .lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  max-width: 36em;
  margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.78);
}
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust svg { width: 16px; height: 16px; color: var(--yellow); }

/* Enquiry form */
.enquiry {
  margin-top: -3.5rem;
  position: relative;
  z-index: 5;
  padding-bottom: 1rem;
}
.form-card {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.form-side { padding: 2rem 2.1rem 2.2rem; }
.form-head { margin-bottom: 1.25rem; }
.form-head h2 { font-size: 1.55rem; margin-bottom: .35rem; }
.form-head p { color: var(--muted); margin: 0; }
.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-bottom: .55rem;
}
.field { margin-bottom: .9rem; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--ink-soft);
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafaf8;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(232,184,14,.2);
  background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}
.form-note {
  font-size: .85rem;
  color: var(--muted);
  margin: .9rem 0 0;
}
.form-ok, .form-err {
  display: none;
  margin-top: .9rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
}
.form-ok { background: #e8f6ec; color: #1a6b36; }
.form-err { background: #fdeceb; color: #9b1c1c; }
.form-ok.show, .form-err.show { display: block; }
.form-aside {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 2.1rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.form-aside h3 { font-size: 1.2rem; margin: 0 0 .25rem; }
.aside-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.aside-ic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232,184,14,.15);
  color: var(--yellow);
  display: grid;
  place-items: center;
}
.aside-ic svg { width: 20px; height: 20px; }
.aside-item strong { display: block; margin-bottom: .15rem; }
.aside-item span { font-size: .88rem; color: rgba(255,255,255,.72); }

/* Sections */
.block { padding: 5rem 0; }
.sec-head { max-width: 640px; margin-bottom: 2.5rem; }
.sec-head h2 { font-size: clamp(1.7rem, 3vw, 2.25rem); }
.sec-head p { color: var(--muted); margin: 0; }

/* About */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: center;
}
.about p { color: var(--ink-soft); }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.stat {
  padding: 1rem 1.1rem;
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .15rem;
}
.stat span { font-size: .82rem; color: var(--muted); }
.about-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 360px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.about-visual .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,184,14,.35);
}
.r1 { inset: 8%; }
.r2 { inset: 20%; border-color: rgba(26,35,50,.12); }
.r3 { inset: 32%; background: rgba(232,184,14,.08); border: 0; }
.big-bolt {
  width: 88px;
  height: 88px;
  color: var(--yellow);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 20px rgba(232,184,14,.35));
}

/* Services grid */
.services { background: var(--paper); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
a.svc:hover,
.svc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.svc-ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(232,184,14,.12);
  color: var(--yellow-deep);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.svc-ic svg { width: 22px; height: 22px; }
.svc h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.svc p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Areas */
.areas { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.area {
  display: block;
  padding: 1.35rem 1.3rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.area:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.area h3 {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: 1.1rem;
  margin-bottom: .4rem;
}
.area h3 svg {
  width: 18px;
  height: 18px;
  color: var(--yellow-deep);
  flex-shrink: 0;
}
.area p { color: var(--muted); font-size: .9rem; margin-bottom: .75rem; }
.area .go {
  color: var(--yellow-deep);
  font-weight: 600;
  font-size: .88rem;
}

/* Gallery */
.gallery { background: var(--paper); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.gal {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy-2);
  aspect-ratio: 4/3;
  position: relative;
}
.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gal:hover img { transform: scale(1.05); }
.gal figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: .7rem .85rem;
  font-size: .78rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}

/* Reviews */
.reviews { background: var(--white); }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.rev {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}
.stars { color: var(--yellow-deep); letter-spacing: .05em; margin-bottom: .65rem; }
.rev p {
  font-size: .92rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.who {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.who b { display: block; font-size: .9rem; }
.who span { font-size: .78rem; color: var(--muted); }

/* Contact strip */
.contact { background: var(--navy); color: #fff; }
.contact .tag { color: var(--yellow); }
.contact .sec-head p { color: rgba(255,255,255,.7); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ct {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
}
.ct-ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(232,184,14,.15);
  color: var(--yellow);
  display: grid;
  place-items: center;
  margin-bottom: .9rem;
}
.ct-ic svg { width: 20px; height: 20px; }
.ct h3 { font-size: 1rem; margin-bottom: .35rem; }
.ct a { color: var(--yellow); font-weight: 600; word-break: break-word; }
.ct a:hover { text-decoration: underline; }
.ct p { margin: 0; color: rgba(255,255,255,.75); }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy) 0%, #2a3a52 100%);
  color: #fff;
  padding: 7.5rem 0 3.25rem;
  overflow: hidden;
}
.page-hero .glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(232,184,14,.22), transparent 65%);
  pointer-events: none;
}
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--yellow); }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: .6rem;
}
.page-hero .sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 40em;
  margin: 0;
}

/* Prose / service & location pages */
.prose { max-width: 760px; }
.prose .lead-p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.prose h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: .75rem;
}
.prose p { color: var(--ink-soft); }
.checklist, .faults {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.checklist li, .faults li {
  position: relative;
  padding: .55rem 0 .55rem 1.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(232,184,14,.2);
  box-shadow: inset 0 0 0 4px var(--yellow);
}
.faults li::before {
  content: "•";
  position: absolute;
  left: .35rem;
  color: var(--yellow-deep);
  font-weight: 700;
}
.svc-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0 1.5rem;
}
.svc-links a {
  display: inline-block;
  padding: .55rem .9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  transition: border-color .15s, background .15s;
}
.svc-links a:hover {
  border-color: var(--yellow);
  background: rgba(232,184,14,.08);
}
.module {
  margin: 1.75rem 0;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.module h2 { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: .15rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--display);
  padding: .9rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--yellow-deep);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; }
.faq-a {
  padding: 0 0 1rem;
  color: var(--ink-soft);
  font-size: .95rem;
}
.nearby {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.nearby b {
  display: block;
  margin-bottom: .75rem;
  font-family: var(--display);
}
.nearby a {
  display: inline-block;
  margin: 0 .75rem .5rem 0;
  color: var(--yellow-deep);
  font-weight: 600;
  font-size: .92rem;
}
.nearby a:hover { text-decoration: underline; }
.nearby .svc-links { margin-top: .75rem; }

/* Footer */
footer {
  background: #0f141c;
  color: rgba(255,255,255,.72);
  padding: 2.75rem 0 1.75rem;
  font-size: .9rem;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
}
.foot-links a:hover { color: var(--yellow); }
.foot-areas {
  margin-bottom: .75rem;
  line-height: 1.8;
}
.foot-areas a { color: rgba(255,255,255,.78); }
.foot-areas a:hover { color: var(--yellow); }
.foot-bottom {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* Floating reviews popup */
.rev-pop {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: min(320px, calc(100vw - 2rem));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.22);
  padding: 1rem 1.1rem 1.1rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.rev-pop.show {
  transform: translateY(0);
  opacity: 1;
}
.rev-pop .close {
  position: absolute;
  top: .45rem;
  right: .55rem;
  border: 0;
  background: none;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.rev-pop .gh {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .55rem;
}
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.rev-pop .stars { color: #f4b400; font-size: .85rem; }
.rev-pop .rtext {
  font-size: .88rem;
  color: var(--ink-soft);
  margin-bottom: .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rev-pop .who .av {
  width: 32px;
  height: 32px;
  font-size: .78rem;
}
.rev-pop .seeall {
  display: block;
  margin-top: .75rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--yellow-deep);
}
.rev-pop .dots {
  display: flex;
  gap: .35rem;
  margin-top: .75rem;
}
.rev-pop .dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
}
.rev-pop .dots span.on { background: var(--yellow-deep); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Lightbox Modal */
.gal { cursor: pointer; }
.gal::after {
  content: "🔍";
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(26, 35, 50, 0.75);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.gal:hover::after {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 20, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.lightbox-caption {
  margin-top: 1rem;
  color: #fff;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.lightbox-close:hover {
  background: var(--yellow);
  color: var(--ink);
}

/* CTA Banner for Subpages */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  margin-top: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,184,14,0.18), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: .5rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 1.5rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .form-card,
  .about-grid,
  .svc-grid,
  .areas-grid,
  .gal-grid,
  .rev-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-aside { display: none; }
  .stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 72px 1rem auto;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    padding: .75rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .85rem 1rem; }
  .nav-cta { margin-left: 0; text-align: center; justify-content: center; }
  .hero-inner { padding: 7rem 0 4rem; }
  .svc-grid,
  .areas-grid,
  .gal-grid,
  .rev-grid,
  .contact-grid,
  .form-card,
  .about-grid,
  .field-row {
    grid-template-columns: 1fr;
  }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .enquiry { margin-top: -2rem; }
  .form-side { padding: 1.5rem; }
  .rev-pop { right: .75rem; bottom: .75rem; }
}
@media (max-width: 480px) {
  .gal-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}
