/* ═══════════════════════════════════════════════
   P&N ELECTRICAL SERVICES — DESIGN SYSTEM
   Dark industrial · Electric orange · Mobile-first
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Colour */
  --col-bg:          #0D0D0D;
  --col-surface:     #141414;
  --col-surface-2:   #1C1C1C;
  --col-border:      #2A2A2A;
  --col-orange:      #F97316;
  --col-orange-dim:  #C2560D;
  --col-amber:       #FBBF24;
  --col-text:        #F5F5F5;
  --col-text-muted:  #9A9A9A;
  --col-text-dim:    #767676;
  --col-white:       #FFFFFF;

  /* Typography */
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-normal: 250ms ease;
  --t-slow:   400ms ease;

  /* Z-index scale */
  --z-base:    10;
  --z-nav:     50;
  --z-overlay: 100;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 66px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--col-text);
  background-color: var(--col-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

.accent { color: var(--col-orange); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  min-height: 48px;
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--col-orange);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--col-orange);
  color: #000;
}
.btn-primary:hover {
  background: #FF9A3C;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--col-text);
  border: 2px solid var(--col-border);
}
.btn-secondary:hover {
  border-color: var(--col-orange);
  color: var(--col-orange);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

/* ── SECTION BASE ── */
.section {
  padding-block: var(--space-xl);
}

.section-dark {
  background-color: var(--col-surface);
}

@media (min-width: 768px) {
  .section { padding-block: var(--space-2xl); }
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-header p {
  color: var(--col-text-muted);
  font-size: 1.05rem;
  margin-top: var(--space-sm);
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--col-orange);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-normal), box-shadow var(--t-normal);
}

.nav-header.nav-scrolled {
  border-bottom-color: var(--col-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
  cursor: pointer;
}

.logo-pn {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--col-orange);
  letter-spacing: -0.02em;
}

.logo-pn .amp {
  color: var(--col-amber);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--col-text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--col-text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--col-text);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--col-orange);
  outline-offset: 2px;
}

.nav-cta {
  background: var(--col-orange) !important;
  color: #000 !important;
  font-weight: 600 !important;
  border-radius: var(--r-md) !important;
  padding: 0.55rem 1.1rem !important;
  gap: 0.4rem;
  transition: background var(--t-fast) !important;
}

.nav-cta:hover {
  background: #FF9A3C !important;
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--r-sm);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--col-text);
  border-radius: 2px;
  transition: transform var(--t-normal), opacity var(--t-normal);
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hamburger:focus-visible {
  outline: 2px solid var(--col-orange);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--col-surface);
    border-bottom: 1px solid var(--col-border);
    padding: 1rem 1.25rem;
    gap: 0.25rem;
  }

  .nav-links.nav-open { display: flex; }

  .nav-links a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: var(--r-md);
  }

  .nav-links a:hover { background: var(--col-surface-2); }

  .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
    border-radius: var(--r-md) !important;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 66px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(249,115,22,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(251,191,36,0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0D0D0D 0%, #141414 100%);
  z-index: 0;
}

/* Animated electric sparks */
.hero-sparks {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(249,115,22,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 15%, rgba(251,191,36,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 75%, rgba(249,115,22,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 60%, rgba(251,191,36,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 30% 50%, rgba(249,115,22,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(249,115,22,0.4) 0%, transparent 100%);
  animation: sparkle 8s ease-in-out infinite alternate;
}

@keyframes sparkle {
  0%   { opacity: 0.4; }
  100% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: var(--z-base);
  padding-block: var(--space-xl);
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--col-amber);
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--col-text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--col-text-muted);
  font-weight: 500;
}

.trust-item svg { color: var(--col-orange); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--col-text-dim);
  animation: bounce 2s ease-in-out infinite;
  z-index: var(--z-base);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--t-normal), transform var(--t-normal), box-shadow var(--t-normal);
  cursor: default;
}

.service-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249,115,22,0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-orange);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--col-text);
}

.service-card p {
  color: var(--col-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--col-orange);
  margin-top: 0.5rem;
  transition: gap var(--t-fast);
  cursor: pointer;
}

.card-link:hover { gap: 0.6rem; }

.card-link:focus-visible {
  outline: 2px solid var(--col-orange);
  border-radius: 4px;
}

/* ── EICR PRICING ── */
.eicr-wrapper {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.eicr-promo {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(249,115,22,0.12) 0%, rgba(251,191,36,0.08) 100%);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
}

.promo-bolt {
  color: var(--col-orange);
  flex-shrink: 0;
}

.eicr-promo strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--col-text);
  font-size: 1rem;
}

.eicr-promo span {
  font-size: 0.88rem;
  color: var(--col-text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 600px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.price-card {
  background: var(--col-surface-2);
  border: 1px solid var(--col-border);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  transition: border-color var(--t-normal), transform var(--t-normal);
  cursor: default;
}

.price-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-2px);
}

.price-card--featured {
  border-color: var(--col-orange);
  background: rgba(249,115,22,0.06);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--col-orange);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.price-beds {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--col-text-muted);
  margin-bottom: 0.75rem;
}

.price-normal {
  font-size: 0.85rem;
  color: var(--col-text-dim);
}

.price-offer {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--col-orange);
  line-height: 1;
  margin: 0.25rem 0;
}

.price-save {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--col-amber);
  margin-top: 0.25rem;
}

.eicr-includes {
  background: var(--col-surface-2);
  border: 1px solid var(--col-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}

.eicr-includes h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--col-text);
}

.includes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .includes-list { grid-template-columns: repeat(2, 1fr); }
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--col-text-muted);
}

.includes-list li svg { color: var(--col-orange); flex-shrink: 0; }

.eicr-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.eicr-note {
  font-size: 0.85rem;
  color: var(--col-text-dim);
}

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-card {
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color var(--t-normal);
  cursor: default;
}

.why-card:hover { border-color: rgba(249,115,22,0.3); }

.why-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(249,115,22,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--col-text);
}

.why-card p {
  font-size: 0.92rem;
  color: var(--col-text-muted);
  line-height: 1.65;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--col-surface-2);
  border: 1px solid var(--col-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--t-normal), transform var(--t-normal);
  cursor: default;
}

.review-card:hover {
  border-color: rgba(249,115,22,0.35);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--col-amber);
}

.review-card blockquote {
  flex: 1;
}

.review-card blockquote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--col-text-muted);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--col-border);
  padding-top: 1rem;
  margin-top: auto;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--col-orange);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--col-text);
  font-weight: 600;
}

.review-author span {
  font-size: 0.78rem;
  color: var(--col-text-dim);
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--col-surface-2);
  aspect-ratio: 1;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

@media (max-width: 767px) {
  .gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 16/10;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

/* ── COMMUNITY ── */
.community-section {
  background: linear-gradient(160deg, #0D0D0D 0%, #111111 100%);
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(249,115,22,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.community-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 860px) {
  .community-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.community-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.community-text .section-label { align-self: flex-start; }

.community-text > p {
  color: var(--col-text-muted);
  line-height: 1.7;
}

.community-offers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.5rem 0;
}

.community-offer {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
}

.offer-icon {
  width: 48px;
  height: 48px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-orange);
  flex-shrink: 0;
}

.community-offer strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--col-text);
  font-size: 1rem;
}

.community-offer span {
  font-size: 0.88rem;
  color: var(--col-text-muted);
}

.community-note {
  font-size: 0.88rem;
  color: var(--col-text-dim);
  margin-top: 0;
}

.community-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: none;
}

@media (min-width: 860px) {
  .community-image { display: block; }
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.2) 0%, transparent 60%);
}

/* ── CONTACT ── */
.contact-section {
  background: var(--col-bg);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.contact-header {
  margin-bottom: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 800px;
}

@media (min-width: 600px) {
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  transition: border-color var(--t-normal), transform var(--t-normal);
  cursor: pointer;
  min-height: 44px;
}

a.contact-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-2px);
}

a.contact-card:focus-visible {
  outline: 2px solid var(--col-orange);
  outline-offset: 2px;
  border-radius: var(--r-lg);
}

.contact-card--static {
  cursor: default;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-orange);
  flex-shrink: 0;
}

.contact-card strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--col-text);
}

.contact-card span {
  font-size: 0.85rem;
  color: var(--col-text-muted);
}

/* ── FOOTER ── */
.footer {
  background: #080808;
  border-top: 1px solid var(--col-border);
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .footer-inner { grid-template-columns: 1fr auto auto; align-items: start; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--col-text-dim);
  margin-top: 0.4rem;
  max-width: 260px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--col-text-muted);
  transition: color var(--t-fast);
  padding: 0.2rem 0;
}

.footer-nav a:hover { color: var(--col-orange); }

.footer-nav a:focus-visible,
.footer-contact a:focus-visible {
  outline: 2px solid var(--col-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--col-text-muted);
  font-weight: 500;
  transition: color var(--t-fast);
}

.footer-contact a:first-child {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--col-orange);
}

.footer-contact a:hover { color: var(--col-text); }
.footer-contact a:first-child:hover { color: #FF9A3C; }

.footer-bottom {
  border-top: 1px solid var(--col-border);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--col-text-dim);
}

/* ── ELECTRIC ANIMATIONS ── */

/* Logo neon flicker */
@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 6px #F97316,
      0 0 16px #F97316,
      0 0 32px #F97316,
      0 0 60px rgba(249,115,22,0.6);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

.logo-pn {
  animation: neonFlicker 6s infinite;
}

/* Orange accent pulse glow */
@keyframes electricPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(249,115,22,0.4), 0 0 20px rgba(249,115,22,0.2); }
  50%       { box-shadow: 0 0 16px rgba(249,115,22,0.8), 0 0 40px rgba(249,115,22,0.4), 0 0 70px rgba(249,115,22,0.15); }
}

.btn-primary {
  animation: electricPulse 2.5s ease-in-out infinite;
}

/* Hero heading shimmer */
@keyframes headingShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.hero h1 .accent,
.section-header h2 .accent {
  background: linear-gradient(
    90deg,
    #F97316 0%,
    #FBBF24 30%,
    #fff    50%,
    #FBBF24 70%,
    #F97316 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headingShimmer 3s linear infinite;
}

/* Electric border on cards */
@keyframes borderCharge {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.service-card::before,
.review-card::before,
.why-card::before,
.price-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #F97316, #FBBF24, #ff4500, #F97316);
  background-size: 300% 300%;
  opacity: 0;
  z-index: -1;
  transition: opacity var(--t-normal);
  animation: borderCharge 3s ease infinite;
}

.service-card { position: relative; z-index: 0; }
.review-card  { position: relative; z-index: 0; }
.why-card     { position: relative; z-index: 0; }

.service-card:hover::before,
.review-card:hover::before,
.why-card:hover::before {
  opacity: 1;
}

.price-card--featured::before { opacity: 0.6; }
.price-card--featured:hover::before { opacity: 1; }

/* Section entry zap flash */
@keyframes sectionZap {
  0%   { box-shadow: inset 0 0 0 1px transparent; }
  15%  { box-shadow: inset 0 0 0 1px rgba(249,115,22,0.8), 0 0 30px rgba(249,115,22,0.2); }
  100% { box-shadow: inset 0 0 0 1px transparent; }
}

.section-zap {
  animation: sectionZap 0.6s ease-out forwards;
}

/* Electric divider lines */
.section + .section::before,
.section-dark + .section::before,
.section + .section-dark::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(249,115,22,0.6) 30%,
    rgba(251,191,36,1) 50%,
    rgba(249,115,22,0.6) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: dividerCharge 3s linear infinite;
}

@keyframes dividerCharge {
  0%   { background-position:  100% 0; }
  100% { background-position: -100% 0; }
}

/* Section label electric flicker */
@keyframes labelPulse {
  0%, 90%, 100% { border-color: rgba(249,115,22,0.25); }
  95%            { border-color: rgba(249,115,22,0.9); box-shadow: 0 0 8px rgba(249,115,22,0.4); }
}

.section-label {
  animation: labelPulse 4s ease-in-out infinite;
}

/* Nav CTA spark on hover */
.nav-cta {
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: navSweep 3s ease-in-out infinite;
}

@keyframes navSweep {
  0%, 70%, 100% { left: -60%; opacity: 0; }
  30%           { left: 130%; opacity: 1; }
}

/* Hero badge crackle */
@keyframes badgeCrackle {
  0%, 100% { box-shadow: 0 0 4px rgba(251,191,36,0.3); }
  50%       { box-shadow: 0 0 12px rgba(251,191,36,0.7), 0 0 24px rgba(249,115,22,0.3); }
}

.hero-badge {
  animation: badgeCrackle 2s ease-in-out infinite;
}

/* Trust items zap in sequence */
.trust-item:nth-child(1) { animation: trustZap 4s 0.0s ease-in-out infinite; }
.trust-item:nth-child(2) { animation: trustZap 4s 0.5s ease-in-out infinite; }
.trust-item:nth-child(3) { animation: trustZap 4s 1.0s ease-in-out infinite; }
.trust-item:nth-child(4) { animation: trustZap 4s 1.5s ease-in-out infinite; }

@keyframes trustZap {
  0%, 85%, 100% { color: var(--col-text-muted); }
  90%           { color: var(--col-text); text-shadow: 0 0 8px rgba(249,115,22,0.6); }
}

/* EICR promo bolt pulse */
.promo-bolt {
  animation: boltSpin 0.6s ease-in-out infinite alternate;
}

@keyframes boltSpin {
  0%   { transform: scale(1) rotate(-5deg); filter: drop-shadow(0 0 4px rgba(249,115,22,0.8)); }
  100% { transform: scale(1.2) rotate(5deg); filter: drop-shadow(0 0 10px rgba(249,115,22,1)); }
}

/* Featured price card glow pulse */
.price-card--featured .price-offer {
  animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
  0%, 100% { text-shadow: 0 0 8px rgba(249,115,22,0.4); }
  50%       { text-shadow: 0 0 20px rgba(249,115,22,0.9), 0 0 40px rgba(249,115,22,0.4); }
}

/* Community offer icon crackle */
.offer-icon {
  animation: iconCrackle 3s ease-in-out infinite;
}

.community-offer:nth-child(2) .offer-icon {
  animation-delay: 1.5s;
}

@keyframes iconCrackle {
  0%, 80%, 100% { box-shadow: none; }
  90%           { box-shadow: 0 0 12px rgba(249,115,22,0.7), 0 0 24px rgba(249,115,22,0.3); }
}

/* Footer brand flicker */
.footer-brand .logo-pn {
  animation: neonFlicker 8s 2s infinite;
}

/* ── UTILITY ── */
@media (max-width: 400px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════
   AREA PAGES
   ══════════════════════════════════════════════ */

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--col-surface);
  border-bottom: 1px solid var(--col-border);
  padding: 0.6rem 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: var(--col-text-muted);
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.5rem;
  color: var(--col-border);
}

.breadcrumb a {
  color: var(--col-text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--col-orange);
}

/* Area hero — slimmer than homepage hero */
.area-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
}

.area-hero-content {
  position: relative;
  z-index: 2;
}

.area-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.area-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--col-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.area-hero .hero-sub {
  max-width: 560px;
  color: var(--col-text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.area-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Two-column layout: main content + sidebar */
.area-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .area-content-grid {
    grid-template-columns: 1fr 300px;
    gap: 3rem;
  }
}

/* Main prose */
.area-main h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.area-main h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--col-orange);
  margin: 2rem 0 0.6rem;
}

.area-main p {
  color: var(--col-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.area-services {
  margin-top: 2rem;
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
}

.area-services h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--col-text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--col-border);
}

.service-list li::before {
  content: '⚡';
  font-size: 0.75rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Sidebar */
.area-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
}

.sidebar-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--col-text-muted);
  margin: 0 0 0.85rem;
}

.sidebar-phone {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--col-orange);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color var(--t-fast);
}

.sidebar-phone:hover,
.sidebar-phone:focus-visible {
  color: var(--col-amber);
}

.sidebar-card > p {
  font-size: 0.82rem;
  color: var(--col-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Nearby areas list */
.nearby-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.nearby-list a {
  display: block;
  font-size: 0.9rem;
  color: var(--col-text-muted);
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--col-border);
  transition: color var(--t-fast);
}

.nearby-list a:hover,
.nearby-list a:focus-visible {
  color: var(--col-orange);
}

/* EICR price list in sidebar */
.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--col-border);
  font-size: 0.88rem;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list span {
  color: var(--col-text-muted);
}

.price-list strong {
  color: var(--col-orange);
  font-weight: 700;
}

/* Area CTA section */
.area-cta-section {
  padding: 4rem 0;
}

/* Areas hub grid (areas/index.html) */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--col-surface);
  border: 1px solid var(--col-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color var(--t-normal), transform var(--t-normal), box-shadow var(--t-normal);
}

.area-card:hover,
.area-card:focus-visible {
  border-color: var(--col-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.12);
}

.area-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(249,115,22,0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-orange);
  flex-shrink: 0;
}

.area-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--col-text);
  margin: 0;
}

.area-card p {
  font-size: 0.85rem;
  color: var(--col-text-muted);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

.area-card span.area-link {
  font-size: 0.82rem;
  color: var(--col-orange);
  font-weight: 600;
}

.area-card--surrounding {
  border-style: dashed;
}
