/*

Theme Name: Derby Emergency Plumbers

Theme URI: https://emergencyplumbingderby.co.uk

Description: Custom theme for Derby Emergency Plumbers - 24/7 Emergency Plumbing Service

Version: 2.6

Author: Derby Emergency Plumbers

Text Domain: dep

*/

/* ============================================================

   RESET & BASE

   ============================================================ */

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

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

body {

  margin: 0;

  overflow-x: hidden;

  font-family: 'DM Sans', sans-serif;

  background-color: #07111f;

  color: #ffffff;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

h1, h2, h3, h4, h5, h6 {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  line-height: 1.05;

  letter-spacing: -0.01em;

  text-transform: uppercase;

  margin: 0 0 1rem;

}

p { margin: 0 0 1rem; }

a { text-decoration: none; }

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

ul, ol { margin: 0; padding: 0; list-style: none; }

/* ============================================================

   CSS VARIABLES

   ============================================================ */

:root {

  --electric: #1a4fdb;

  --electric-light: #3b6ff0;

  --navy-950: #020817;

  --navy-900: #060f2e;

  --navy-800: #0a1845;

  --bg: #07111f;

  --card-bg: #0a1628;

  --dropdown-bg: #0c1e3a;

  --border: rgba(26,79,219,0.25);

  --border-subtle: rgba(26,79,219,0.15);

  --text-muted: rgba(255,255,255,0.55);

  --text-dim: rgba(255,255,255,0.7);

  --phone: '02038 076606';

}

/* ============================================================

   LAYOUT

   ============================================================ */

.container {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 1.5rem;

}

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

/* ============================================================

   UTILITIES

   ============================================================ */

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

.text-glow { text-shadow: 0 0 20px rgba(26,79,219,0.8), 0 0 40px rgba(26,79,219,0.4); }

.box-glow { box-shadow: 0 0 24px 4px rgba(26,79,219,0.4); }

.btn-primary {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  background: var(--electric);

  color: #fff;

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  border: none;

  border-radius: 0.75rem;

  cursor: pointer;

  transition: background 0.2s;

  text-decoration: none;

}

.btn-primary:hover { background: var(--electric-light); }

.btn-outline {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  border: 1px solid rgba(26,79,219,0.4);

  color: #fff;

  background: transparent;

  font-family: 'DM Sans', sans-serif;

  font-weight: 500;

  border-radius: 0.75rem;

  cursor: pointer;

  transition: border-color 0.2s, background 0.2s;

  text-decoration: none;

}

.btn-outline:hover { border-color: rgba(26,79,219,0.8); background: rgba(26,79,219,0.1); }

/* ============================================================

   HEADER

   ============================================================ */

.site-header {

  position: fixed;

  top: 0; left: 0; right: 0;

  z-index: 1000;

  background: #0a1628;

  border-bottom: 1px solid rgba(26,79,219,0.3);

}

.header-main {

  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 64px;

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 1.5rem;

}

@media (min-width: 640px) { .header-main { padding: 0 2rem; } }

.site-logo {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 1.25rem;

  color: #fff;

  letter-spacing: 0.05em;

  text-decoration: none;

  line-height: 1;

  white-space: nowrap;

}

@media (min-width: 768px) { .site-logo { font-size: 1.5rem; } }

.site-logo .em { color: var(--electric); }

/* Desktop nav */

.header-nav {

  display: none;

  align-items: center;

  gap: 0.25rem;

}

@media (min-width: 1024px) { .header-nav { display: flex; } }

.nav-link {

  position: relative;

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  font-weight: 500;

  color: rgba(255,255,255,0.7);

  padding: 6px 14px;

  border-radius: 6px;

  transition: color 0.15s;

  background: none;

  border: none;

  cursor: pointer;

  display: flex;

  align-items: center;

  gap: 4px;

  white-space: nowrap;

  text-decoration: none;

}

.nav-link:hover, .nav-link.active { color: #fff; }

.nav-link.active::after {

  content: '';

  position: absolute;

  bottom: -2px;

  left: 14px; right: 14px;

  height: 2px;

  background: var(--electric);

  border-radius: 2px;

}

/* ---------------------------------------------------------------
   DROPDOWN — hover bridge via always-rendered ::after pseudo-el
   The ::after is permanently in the DOM (not display:none) so it
   always intercepts mouse events in the gap between the trigger
   button and the dropdown panel, keeping :hover alive continuously.
   Nav-link padding is unchanged — no visual misalignment.
   --------------------------------------------------------------- */
.nav-dropdown {
  position: relative;
  display: flex;       /* make the div itself a flex container    */
  align-items: center; /* vertically centre the trigger button     */
  align-self: center;  /* centre this div in the parent flex row   */
}

/* Invisible bridge — always rendered, fills gap below trigger */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -4px;
  right: -4px;
  height: 14px; /* covers the 8px gap + small margin */
  /* No background/border — completely invisible */
}

.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px); /* natural 8px visual gap below button */
  left: 0;
  background: transparent;
  z-index: 9999;
  min-width: 220px;
  pointer-events: auto;
}
/* Inner styled panel box */
.dropdown-panel-inner {
  background: #0c1e3a;
  border: 1px solid rgba(26,79,219,0.35);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  overflow: hidden;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.open .dropdown-panel { display: block; }

.dropdown-item {

  display: block;

  padding: 10px 16px;

  font-family: 'DM Sans', sans-serif;

  font-size: 0.8125rem;

  font-weight: 400;

  color: rgba(255,255,255,0.72);

  text-decoration: none;

  transition: background 0.12s, color 0.12s;

}

.dropdown-item:hover { background: rgba(26,79,219,0.18); color: #fff; }

.dropdown-item.active { color: #93c5fd; background: rgba(26,79,219,0.12); }

/* Chevron */

.chevron {

  display: inline-block;

  width: 0; height: 0;

  border-left: 4px solid transparent;

  border-right: 4px solid transparent;

  border-top: 5px solid currentColor;

  transition: transform 0.2s;

  flex-shrink: 0;

}

.nav-dropdown:hover .chevron { transform: rotate(180deg); }

/* Header right */

.header-right {

  display: flex;

  align-items: center;

  gap: 0.75rem;

}

.header-phone-btn {

  display: none;

  align-items: center;

  gap: 0.5rem;

  background: rgba(26,79,219,0.9);

  border: 1px solid rgba(26,79,219,0.6);

  color: #fff;

  font-family: 'DM Sans', sans-serif;

  font-weight: 600;

  font-size: 0.875rem;

  padding: 0.5rem 0.875rem;

  border-radius: 0.5rem;

  text-decoration: none;

  transition: background 0.2s;

  animation: once_pulse 1.2s ease-out 0.4s 1 forwards;

  box-shadow: 0 0 24px rgba(26,79,219,0.35);

}

@media (min-width: 1024px) { .header-phone-btn { display: flex; } }

.header-phone-btn:hover { background: rgba(26,79,219,1); }

@keyframes once_pulse {

  0%   { box-shadow: 0 0 0 0 rgba(26,79,219,0); }

  30%  { box-shadow: 0 0 0 8px rgba(26,79,219,0.45); }

  60%  { box-shadow: 0 0 0 16px rgba(26,79,219,0.2); }

  100% { box-shadow: 0 0 24px rgba(26,79,219,0.35); }

}

.header-phone-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 2.5rem; height: 2.5rem;

  border-radius: 0.5rem;

  background: var(--electric);

  color: #fff;

  text-decoration: none;

}

@media (min-width: 1024px) { .header-phone-icon { display: none; } }

.hamburger {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 2.5rem; height: 2.5rem;

  border-radius: 0.5rem;

  background: rgba(255,255,255,0.06);

  border: none;

  color: #d1d5db;

  cursor: pointer;

  transition: color 0.2s;

}

.hamburger:hover { color: #fff; }

@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile phone bar */

.mobile-phone-bar {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.625rem;

  width: 100%;

  padding: 0.75rem 1rem;

  border-top: 1px solid rgba(26,79,219,0.2);

  background: #0c1e3a;

  text-decoration: none;

  color: #fff;

}

.mobile-phone-bar span {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 1.25rem;

  letter-spacing: 0.05em;

}

@media (min-width: 1024px) { .mobile-phone-bar { display: none; } }

/* Mobile menu drawer */

.mobile-menu {

  display: none;

  background: #0a1628;

  border-top: 1px solid rgba(26,79,219,0.2);

}

.mobile-menu.open { display: block; }

.mobile-nav {

  padding: 0.75rem 1.5rem;

}

.mobile-nav-link {

  display: flex;

  align-items: center;

  padding: 0.875rem 0;

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  font-weight: 500;

  color: #e5e7eb;

  border-bottom: 1px solid rgba(255,255,255,0.06);

  text-decoration: none;

  transition: color 0.2s;

}

.mobile-nav-link:hover { color: #fff; }

.mobile-accordion-btn {

  display: flex;

  align-items: center;

  justify-content: space-between;

  width: 100%;

  padding: 0.875rem 0;

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  font-weight: 500;

  color: #e5e7eb;

  background: none;

  border: none;

  border-bottom: 1px solid rgba(255,255,255,0.06);

  cursor: pointer;

  transition: color 0.2s;

}

.mobile-accordion-btn:hover { color: #fff; }

.mobile-accordion-btn .chevron-btn {

  color: var(--electric);

  transition: transform 0.2s;

}

.mobile-accordion-btn.open .chevron-btn { transform: rotate(180deg); }

.mobile-accordion-content {

  display: none;

  padding: 0.5rem 0 0.75rem 0.75rem;

}

.mobile-accordion-content.open { display: flex; flex-direction: column; gap: 0; }

.mobile-accordion-content.grid-2 { display: none; }

.mobile-accordion-content.grid-2.open { display: grid; grid-template-columns: 1fr 1fr; gap: 0 0.75rem; }

.mobile-sub-link {

  display: block;

  padding: 0.5rem 0;

  font-family: 'DM Sans', sans-serif;

  font-size: 0.75rem;

  color: #9ca3af;

  text-decoration: none;

  transition: color 0.2s;

}

.mobile-sub-link:hover { color: #fff; }

/* ============================================================

   MAIN CONTENT OFFSET (for fixed header)

   ============================================================ */

.site-main { padding-top: 100px; }

@media (min-width: 1024px) { .site-main { padding-top: 64px; } }

/* ============================================================

   PAGE HERO (inner pages)

   ============================================================ */

.page-hero {

  padding: 4rem 0 3rem;

  background: #07111f;

  position: relative;

  overflow: hidden;

}

.page-hero::before {

  content: '';

  position: absolute;

  top: 0; left: 0;

  width: 500px; height: 400px;

  background: radial-gradient(ellipse at left top, rgba(26,79,219,0.12) 0%, transparent 65%);

  pointer-events: none;

}

.page-hero-tag {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  margin-bottom: 1.25rem;

}

.page-hero-dot {

  position: relative;

  display: inline-block;

  width: 0.625rem; height: 0.625rem;

  border-radius: 50%;

  background: var(--electric);

  flex-shrink: 0;

}

/* Ping ring animates on a pseudo-element — the solid dot never moves */

/* Smooth breathing pulse animation */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.85); }
}
.page-hero-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--electric);
  animation: pulse-dot 2s ease-in-out infinite;
}

  80%, 100% { transform: scale(2.5); opacity: 0; }

}

.page-hero-tag-text {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #93c5fd;

  font-weight: 500;

  letter-spacing: 0.1em;

  text-transform: uppercase;

}

.page-hero h1 {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: clamp(2rem, 5vw, 4rem);

  color: #fff;

  text-transform: uppercase;

  margin-bottom: 1rem;

  line-height: 1;

}

.page-hero-sub {

  font-family: 'DM Sans', sans-serif;

  font-size: 1.125rem;

  color: #d1d5db;

  max-width: 42rem;

  line-height: 1.6;

}

/* ============================================================

   HERO (homepage)

   ============================================================ */

.hero {

  position: relative;

  min-height: 100vh;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 5rem 0 3rem;

  overflow: hidden;

  /* Hero background image — plumber working on pipes */

  background: #07111f url('https://images.unsplash.com/photo-1676210134188-4c05dd172f89?w=1920&q=85') center top/cover no-repeat;

}

/* Dark overlay keeps text fully legible over the image */

.hero::after {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(7,17,31,0.82) 0%, rgba(7,17,31,0.65) 60%, rgba(7,17,31,0.80) 100%);

  pointer-events: none;

  z-index: 0;

}

.hero-glow {

  position: absolute;

  top: 33%; left: 0;

  width: 600px; height: 600px;

  background: radial-gradient(ellipse at left center, rgba(26,79,219,0.18) 0%, transparent 65%);

  pointer-events: none;

  z-index: 1;

}

.hero-noise {

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.15;

  z-index: 1;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");

  background-repeat: repeat;

  background-size: 200px 200px;

}

.hero-inner { position: relative; z-index: 1; }

.hero-status {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  margin-bottom: 1.75rem;

}

.hero-status-dot {

  position: relative;

  width: 0.625rem; height: 0.625rem;

  flex-shrink: 0;

}

.hero-status-dot-inner {

  position: relative;

  display: inline-flex;

  width: 0.625rem; height: 0.625rem;

  border-radius: 50%;

  background: var(--electric);

}

.hero-status-dot-ping {

  position: absolute;

  inset: 0;

  border-radius: 50%;

  background: var(--electric);

  animation: pulse-dot 2s ease-in-out infinite;

}

.hero-status-text {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #93c5fd;

  font-weight: 500;

  letter-spacing: 0.1em;

  text-transform: uppercase;

}

.hero-headline {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  line-height: 0.95;

  color: #fff;

  margin-bottom: 1.25rem;

  text-transform: uppercase;

}

.hero-headline .line1,

.hero-headline .line3 { display: block; font-size: clamp(3rem, 8vw, 100px); }

.hero-headline .line2 { display: block; font-size: clamp(3rem, 8vw, 100px); color: var(--electric); }

.hero-sub {

  font-family: 'DM Sans', sans-serif;

  color: #d1d5db;

  font-size: clamp(1.125rem, 2.5vw, 1.5rem);

  margin-bottom: 2.5rem;

  max-width: 42rem;

  line-height: 1.6;

}

.hero-ctas {

  display: flex;

  flex-direction: column;

  gap: 1rem;

  margin-bottom: 3.5rem;

}

@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.hero-phone-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 0.75rem;

  background: var(--electric);

  color: #fff;

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: clamp(1.5rem, 3vw, 2.25rem);

  padding: 1.25rem 2rem;

  border-radius: 0.75rem;

  text-decoration: none;

  box-shadow: 0 0 32px rgba(26,79,219,0.5);

  letter-spacing: 0.05em;

  transition: background 0.2s;

}

.hero-phone-btn:hover { background: var(--electric-light); }

.hero-callback-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  border: 1px solid rgba(26,79,219,0.4);

  color: #fff;

  background: transparent;

  font-family: 'DM Sans', sans-serif;

  font-weight: 500;

  font-size: 1.125rem;

  padding: 1.25rem 2rem;

  border-radius: 0.75rem;

  text-decoration: none;

  transition: border-color 0.2s, background 0.2s;

}

.hero-callback-btn:hover { border-color: rgba(26,79,219,0.8); background: rgba(26,79,219,0.1); }

.hero-badges {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 0.75rem;

}

@media (min-width: 640px) { .hero-badges { grid-template-columns: repeat(4, 1fr); } }

.hero-badge {

  display: flex;

  align-items: center;

  gap: 0.75rem;

  border-radius: 0.75rem;

  padding: 0.75rem 1rem;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(26,79,219,0.18);

}

.hero-badge-icon {

  flex-shrink: 0;

  width: 2.25rem; height: 2.25rem;

  border-radius: 0.5rem;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(26,79,219,0.2);

  color: #93c5fd;

  font-size: 1rem;

}

.hero-badge-label {

  font-family: 'DM Sans', sans-serif;

  font-weight: 600;

  font-size: 0.875rem;

  color: #fff;

  line-height: 1.2;

}

.hero-badge-sub {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.75rem;

  color: #6b7280;

}

/* ============================================================

   SERVICES SECTION

   ============================================================ */

.section { padding: 5rem 0; }

@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-label {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  font-weight: 500;

  color: #93c5fd;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  margin-bottom: 0.75rem;

}

.section-headline {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: clamp(2.5rem, 6vw, 4.5rem);

  color: #fff;

  line-height: 0.95;

  text-transform: uppercase;

  margin-bottom: 1.25rem;

}

.section-headline .em { color: var(--electric); }

.section-body {

  font-family: 'DM Sans', sans-serif;

  font-size: 1.125rem;

  color: #9ca3af;

  line-height: 1.6;

  max-width: 42rem;

}

.service-section { background: #07111f; border-top: 1px solid rgba(26,79,219,0.08); }

.services-divider {

  display: flex;

  align-items: center;

  gap: 0.75rem;

  margin-bottom: 1.25rem;

}

.services-divider-label {

  display: inline-flex;

  font-family: 'DM Sans', sans-serif;

  font-size: 0.75rem;

  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  padding: 0.25rem 0.75rem;

  border-radius: 9999px;

  border: 1px solid;

  white-space: nowrap;

}

.services-divider-label.emergency { color: #f87171; background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.3); }

.services-divider-label.same-day { color: #93c5fd; background: rgba(26,79,219,0.1); border-color: rgba(26,79,219,0.2); }

.services-divider-line { flex: 1; height: 1px; }

.services-divider-line.emergency { background: rgba(239,68,68,0.15); }

.services-divider-line.same-day { background: rgba(26,79,219,0.15); }

.services-grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 0.75rem; }

@media (min-width: 640px) { .services-grid-4 { grid-template-columns: 1fr 1fr; } }

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

.services-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 42rem; }

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

.service-card {

  display: flex;

  flex-direction: column;

  border-radius: 1rem;

  overflow: hidden;

  background: var(--card-bg);

  border: 1px solid rgba(26,79,219,0.35);

  text-decoration: none;

  transition: transform 0.3s;

}

.service-card:hover { transform: translateY(-4px); }

.service-card.subtle { border-color: rgba(26,79,219,0.18); }

.service-card-img {

  position: relative;

  height: 176px;

  overflow: hidden;

  flex-shrink: 0;

}

.service-card-img img {

  width: 100%; height: 100%;

  object-fit: cover;

  transition: transform 0.5s;

}

.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-img-overlay {

  position: absolute; inset: 0;

  background: linear-gradient(to bottom, rgba(7,17,31,0.1) 0%, rgba(7,17,31,0.7) 100%);

}

.service-card-badge {

  position: absolute;

  bottom: 0.75rem; left: 1rem;

}

.urgency-badge {

  display: inline-flex;

  font-family: 'DM Sans', sans-serif;

  font-size: 0.75rem;

  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  padding: 0.25rem 0.625rem;

  border-radius: 9999px;

  border: 1px solid;

}

.urgency-badge.emergency { color: #f87171; background: rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.3); }

.urgency-badge.same-day { color: #93c5fd; background: rgba(26,79,219,0.15); border-color: rgba(26,79,219,0.25); }

.urgency-badge.critical { color: #fca5a5; background: rgba(127,29,29,0.4); border-color: rgba(239,68,68,0.5); }

.service-card-body { display: flex; flex-direction: column; flex-grow: 1; padding: 1.5rem; }

.service-card-icon {

  width: 2.75rem; height: 2.75rem;

  border-radius: 0.75rem;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 1rem;

  background: rgba(26,79,219,0.15);

  color: #93c5fd;

  font-size: 1.125rem;

}

.service-card-icon.critical { background: rgba(239,68,68,0.2); color: #f87171; }

.service-card h3 {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 1.875rem;

  color: #fff;

  line-height: 1.1;

  margin-bottom: 0.5rem;

}

.service-card p {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #9ca3af;

  line-height: 1.6;

  flex-grow: 1;

  margin-bottom: 0;

}

.service-card-more {

  display: flex;

  align-items: center;

  gap: 0.25rem;

  margin-top: 1.25rem;

  color: #93c5fd;

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  font-weight: 500;

  transition: gap 0.2s;

}

.service-card:hover .service-card-more { gap: 0.5rem; }

.services-bottom-cta {

  display: flex;

  flex-direction: column;

  gap: 1rem;

  margin-top: 3.5rem;

  border-radius: 1rem;

  padding: 1.25rem 1.5rem;

  background: rgba(26,79,219,0.1);

  border: 1px solid rgba(26,79,219,0.25);

}

@media (min-width: 640px) {

  .services-bottom-cta {

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

  }

}

.services-bottom-cta h3 {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 1.5rem;

  color: #fff;

  margin-bottom: 0.25rem;

}

.services-bottom-cta p {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #9ca3af;

  margin: 0;

}

/* ============================================================

   WHY US

   ============================================================ */

.why-section {

  background: #07111f;

  border-top: 1px solid rgba(26,79,219,0.12);

}

.why-grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 1.5rem;

}

@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }

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

.why-card {

  display: flex;

  flex-direction: column;

  border-radius: 1rem;

  padding: 1.5rem;

  background: var(--card-bg);

  border: 1px solid rgba(26,79,219,0.18);

  transition: border-color 0.2s;

}

.why-card:hover { border-color: rgba(26,79,219,0.35); }

.why-stat {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 3rem;

  color: var(--electric);

  line-height: 1;

  margin-bottom: 0.25rem;

}

.why-stat-label {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.75rem;

  color: #6b7280;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  margin-bottom: 1.25rem;

}

.why-icon {

  width: 2.5rem; height: 2.5rem;

  border-radius: 0.5rem;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(26,79,219,0.18);

  color: #93c5fd;

  font-size: 1rem;

  margin-bottom: 1rem;

}

.why-card h3 {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 1.5rem;

  color: #fff;

  margin-bottom: 0.75rem;

}

.why-card p {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #9ca3af;

  line-height: 1.6;

  margin: 0;

}

/* ============================================================

   CTA BANNER

   ============================================================ */

.cta-banner {

  position: relative;

  padding: 4rem 0 5rem;

  overflow: hidden;

  border-top: 1px solid rgba(26,79,219,0.25);

  border-bottom: 1px solid rgba(26,79,219,0.25);

  text-align: center;

}

.cta-banner-bg {

  position: absolute; inset: 0;

}

.cta-banner-bg img {

  width: 100%; height: 100%;

  object-fit: cover;

}

.cta-banner-bg-overlay {

  position: absolute; inset: 0;

  background: linear-gradient(135deg, rgba(7,17,31,0.93) 0%, rgba(10,22,40,0.88) 50%, rgba(7,17,31,0.95) 100%);

}

.cta-banner-inner { position: relative; max-width: 56rem; margin: 0 auto; }

.cta-banner-label {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  font-weight: 500;

  color: #93c5fd;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  margin-bottom: 1rem;

}

.cta-banner h2 {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: clamp(2.5rem, 7vw, 5rem);

  color: #fff;

  line-height: 0.95;

  text-transform: uppercase;

  margin-bottom: 1rem;

}

.cta-banner h2 .em { color: var(--electric); }

.cta-banner-body {

  font-family: 'DM Sans', sans-serif;

  font-size: 1.125rem;

  color: #d1d5db;

  margin-bottom: 2.5rem;

  max-width: 28rem;

  margin-left: auto;

  margin-right: auto;

}

.cta-banner-phone {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 0.75rem;

  background: var(--electric);

  color: #fff;

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: clamp(2rem, 4vw, 3rem);

  padding: 1.25rem 3rem;

  border-radius: 1rem;

  box-shadow: 0 0 40px rgba(26,79,219,0.6);

  text-decoration: none;

  letter-spacing: 0.05em;

  transition: background 0.2s, transform 0.2s;

}

.cta-banner-phone:hover { background: var(--electric-light); transform: scale(1.02); }

.cta-banner-note {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #6b7280;

  margin-top: 1.5rem;

}

/* ============================================================

   TESTIMONIALS

   ============================================================ */

.testimonials-section { background: #07111f; border-top: 1px solid rgba(26,79,219,0.08); }

.testimonials-grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 1.5rem;

}

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

.testimonial-card {

  display: flex;

  flex-direction: column;

  padding: 1.5rem;

  border-radius: 1rem;

  background: var(--card-bg);

  border: 1px solid rgba(26,79,219,0.18);

}

.testimonial-stars { color: #fbbf24; margin-bottom: 0.75rem; font-size: 0.875rem; letter-spacing: 2px; }

.testimonial-text {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.9375rem;

  color: #d1d5db;

  line-height: 1.6;

  flex-grow: 1;

  font-style: italic;

  margin-bottom: 1.25rem;

}

.testimonial-author {

  display: flex;

  align-items: center;

  gap: 0.75rem;

  padding-top: 1rem;

  border-top: 1px solid rgba(255,255,255,0.06);

}

.testimonial-avatar {

  width: 2.5rem; height: 2.5rem;

  border-radius: 50%;

  background: rgba(26,79,219,0.3);

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 1.125rem;

  color: #93c5fd;

  flex-shrink: 0;

}

.testimonial-name {

  font-family: 'DM Sans', sans-serif;

  font-weight: 600;

  font-size: 0.875rem;

  color: #fff;

}

.testimonial-location {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.75rem;

  color: #6b7280;

}

/* ============================================================

   FAQ

   ============================================================ */

.faq-section { background: #07111f; border-top: 1px solid rgba(26,79,219,0.08); }

.faq-list { max-width: 48rem; }

.faq-item {

  border-bottom: 1px solid rgba(26,79,219,0.15);

}

.faq-question {

  display: flex;

  align-items: center;

  justify-content: space-between;

  width: 100%;

  background: none;

  border: none;

  padding: 1.25rem 0;

  cursor: pointer;

  text-align: left;

  gap: 1rem;

  transition: color 0.2s;

}

.faq-question-text {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 1.25rem;

  color: #fff;

  text-transform: uppercase;

  line-height: 1.2;

}

.faq-question:hover .faq-question-text { color: #93c5fd; }

.faq-icon {

  flex-shrink: 0;

  width: 1.5rem; height: 1.5rem;

  border-radius: 50%;

  background: rgba(26,79,219,0.2);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #93c5fd;

  font-size: 1.125rem;

  font-weight: 300;

  line-height: 1;

  transition: transform 0.2s, background 0.2s;

}

.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(26,79,219,0.4); }

.faq-answer {

  display: none;

  font-family: 'DM Sans', sans-serif;

  font-size: 0.9375rem;

  color: #9ca3af;

  line-height: 1.7;

  padding-bottom: 1.25rem;

}

.faq-item.open .faq-answer { display: block; }

/* ============================================================

   SIDEBAR (service/area pages)

   ============================================================ */

.content-sidebar-layout {

  display: grid;

  grid-template-columns: 1fr;

  gap: 2.5rem;

}

@media (min-width: 1024px) { .content-sidebar-layout { grid-template-columns: 1fr 320px; } }

.sidebar-card {

  border-radius: 1rem;

  padding: 1.5rem;

  background: var(--card-bg);

  border: 1px solid rgba(26,79,219,0.25);

  position: sticky;

  top: 6rem;

}

.sidebar-label {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.75rem;

  color: #9ca3af;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  margin-bottom: 0.25rem;

}

.sidebar-phone {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 2.5rem;

  color: var(--electric);

  line-height: 1;

  display: block;

  margin-bottom: 1rem;

  text-decoration: none;

  transition: color 0.2s;

}

.sidebar-phone:hover { color: var(--electric-light); }

.sidebar-note {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #9ca3af;

  margin-bottom: 1.25rem;

}

.sidebar-rows { display: flex; flex-direction: column; gap: 0; }

.sidebar-row {

  display: flex;

  justify-content: space-between;

  padding: 0.5rem 0;

  border-bottom: 1px solid rgba(255,255,255,0.05);

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #9ca3af;

}

.sidebar-row:last-child { border-bottom: none; }

.sidebar-row span:last-child { color: #fff; font-weight: 600; }

.sidebar-row .text-electric { color: var(--electric); }

/* Content sections */

.content-section { padding: 4rem 0 5rem; background: #07111f; }

.content-h2 {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: clamp(2rem, 4vw, 3rem);

  color: #fff;

  text-transform: uppercase;

  margin-bottom: 1.25rem;

}

.content-p {

  font-family: 'DM Sans', sans-serif;

  font-size: 1rem;

  color: #d1d5db;

  line-height: 1.7;

  margin-bottom: 1rem;

}

.checklist {

  display: grid;

  grid-template-columns: 1fr;

  gap: 0.75rem;

  margin-bottom: 2.5rem;

}

@media (min-width: 640px) { .checklist { grid-template-columns: 1fr 1fr; } }

.checklist-item {

  display: flex;

  align-items: center;

  gap: 0.75rem;

}

.checklist-icon { color: var(--electric); flex-shrink: 0; font-size: 1rem; }

.checklist-text {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #e5e7eb;

}

.checklist-text a { color: #93c5fd; text-decoration: none; transition: color 0.2s; }

.checklist-text a:hover { color: #fff; }

.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.area-tag {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #93c5fd;

  border-radius: 0.5rem;

  padding: 0.375rem 0.75rem;

  border: 1px solid rgba(26,79,219,0.3);

  text-decoration: none;

  transition: color 0.2s, border-color 0.2s;

}

.area-tag:hover { color: #fff; border-color: rgba(26,79,219,0.6); }

.response-box {

  display: flex;

  align-items: flex-start;

  gap: 1rem;

  border-radius: 1rem;

  padding: 1.25rem;

  margin-bottom: 2.5rem;

  background: var(--card-bg);

  border: 1px solid rgba(26,79,219,0.22);

}

.response-box-icon { color: var(--electric); font-size: 1.375rem; flex-shrink: 0; margin-top: 2px; }

.response-box h3 {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 1.5rem;

  color: #fff;

  margin-bottom: 0.25rem;

}

.response-box p {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: #9ca3af;

  margin: 0;

}

/* ============================================================

   CONTACT PAGE

   ============================================================ */

.contact-section { padding: 4rem 0 5rem; background: #020817; }

.contact-grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 3rem;

}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.form-section h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 0.5rem; }

.form-note { font-family: 'DM Sans', sans-serif; font-size: 1rem; color: #9ca3af; margin-bottom: 2rem; }

/* WPForms overrides */

.dep-form-wrap .wpforms-container { max-width: 100% !important; }

.dep-form-wrap .wpforms-field-label {

  font-family: 'DM Sans', sans-serif !important;

  font-size: 0.875rem !important;

  font-weight: 500 !important;

  color: #d1d5db !important;

  margin-bottom: 0.375rem !important;

}

.dep-form-wrap input[type="text"],

.dep-form-wrap input[type="email"],

.dep-form-wrap input[type="tel"],

.dep-form-wrap textarea {

  width: 100% !important;

  background: rgba(6,15,46,0.8) !important;

  border: 1px solid rgba(26,79,219,0.2) !important;

  color: #fff !important;

  border-radius: 0.75rem !important;

  padding: 0.875rem 1rem !important;

  font-family: 'DM Sans', sans-serif !important;

  font-size: 1rem !important;

  outline: none !important;

  transition: border-color 0.2s !important;

}

.dep-form-wrap input:focus, .dep-form-wrap textarea:focus {

  border-color: rgba(26,79,219,0.6) !important;

}

.dep-form-wrap .wpforms-submit,

.dep-form-wrap button[type="submit"] {

  width: 100% !important;

  background: var(--electric) !important;

  color: #fff !important;

  font-family: 'Barlow Condensed', sans-serif !important;

  font-weight: 900 !important;

  font-size: 1.25rem !important;

  text-transform: uppercase !important;

  letter-spacing: 0.05em !important;

  padding: 1rem 1.5rem !important;

  border-radius: 0.75rem !important;

  border: none !important;

  cursor: pointer !important;

  transition: background 0.2s !important;

}

.dep-form-wrap .wpforms-submit:hover { background: var(--electric-light) !important; }

.contact-info-card {

  padding: 1.75rem;

  border-radius: 1rem;

  background: rgba(6,15,46,0.8);

  border: 1px solid rgba(26,79,219,0.25);

  margin-bottom: 1.25rem;

}

.contact-info-card .emergency-label {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.75rem;

  color: #9ca3af;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  margin-bottom: 0.5rem;

}

.contact-info-card .big-phone {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 3rem;

  color: var(--electric);

  line-height: 1;

  display: block;

  margin-bottom: 0.75rem;

  text-decoration: none;

  transition: color 0.2s;

}

.contact-info-card .big-phone:hover { color: var(--electric-light); }

.contact-info-card p {

  font-family: 'DM Sans', sans-serif;

  font-size: 1rem;

  color: #d1d5db;

  margin: 0;

  line-height: 1.6;

}

.contact-checklist-card, .contact-hours-card {

  padding: 1.5rem;

  border-radius: 1rem;

  background: rgba(6,15,46,0.6);

  border: 1px solid rgba(26,79,219,0.15);

  margin-bottom: 1.25rem;

}

.contact-checklist-card h3, .contact-hours-card h3 {

  font-size: 1.5rem;

  color: #fff;

  margin-bottom: 1rem;

}

.emergency-strip {

  padding: 2.5rem 0;

  background: #060f2e;

  border-top: 1px solid rgba(26,79,219,0.15);

}

.emergency-strip-inner {

  max-width: 56rem;

  margin: 0 auto;

  padding: 0 1.5rem;

  display: flex;

  flex-direction: column;

  gap: 1rem;

  align-items: center;

  justify-content: space-between;

}

@media (min-width: 640px) { .emergency-strip-inner { flex-direction: row; } }

.emergency-strip h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; margin: 0; }

.emergency-strip-btn {

  display: flex;

  align-items: center;

  gap: 0.75rem;

  background: var(--electric);

  color: #fff;

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 1.5rem;

  padding: 1rem 1.75rem;

  border-radius: 0.75rem;

  text-decoration: none;

  box-shadow: 0 0 24px rgba(26,79,219,0.4);

  white-space: nowrap;

  transition: background 0.2s;

}

.emergency-strip-btn:hover { background: var(--electric-light); }

/* ============================================================

   FOOTER

   ============================================================ */

.site-footer {

  background: #07111f;

  border-top: 1px solid var(--electric);

}

.footer-grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 3rem;

  padding: 3.5rem 0 2.5rem;

}

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

.footer-logo {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 1.25rem;

  color: #fff;

  letter-spacing: 0.05em;

  text-decoration: none;

  line-height: 1;

  margin-bottom: 1.25rem;

  display: inline-block;

}

.footer-logo .em { color: var(--electric); }

.footer-nap { display: flex; flex-direction: column; gap: 0.625rem; font-style: normal; }

.footer-nap-row {

  display: flex;

  align-items: flex-start;

  gap: 0.625rem;

}

.footer-nap-icon { color: var(--electric); flex-shrink: 0; margin-top: 2px; font-size: 0.875rem; }

.footer-nap-text {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.875rem;

  color: var(--text-muted);

}

.footer-nap-phone {

  display: flex;

  align-items: center;

  gap: 0.625rem;

  margin-top: 0;

  text-decoration: none;

}

.footer-nap-phone span {

  font-family: 'DM Sans', sans-serif !important;

  font-weight: 400;

  font-size: 0.875rem !important;

  color: rgba(255,255,255,0.55) !important;

  transition: color 0.2s !important;

}

.footer-nap-phone:hover span { color: var(--electric) !important; }

/* Icon inside footer-nap-row: match map/clock icon colour + alignment */

.footer-nap-row > svg, .footer-nap-phone > svg {

  color: var(--electric);

  flex-shrink: 0;

  margin-top: 1px;

}

.footer-cta-small {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  margin-top: 0.75rem;

  font-family: 'DM Sans', sans-serif;

  font-weight: 500;

  font-size: 0.875rem;

  color: #fff;

  background: rgba(26,79,219,0.22);

  border: 1px solid rgba(26,79,219,0.4);

  border-radius: 0.5rem;

  padding: 0.625rem 1rem;

  text-decoration: none;

  transition: background 0.2s;

}

.footer-cta-small:hover { background: rgba(26,79,219,0.38); }

.footer-col-label {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.6875rem;

  font-weight: 500;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: rgba(255,255,255,0.38);

  margin-bottom: 0.875rem;

}

.footer-links { display: flex; flex-direction: column; }

.footer-link {

  display: block;

  font-family: 'DM Sans', sans-serif;

  font-size: 0.8125rem;

  color: rgba(255,255,255,0.65);

  text-decoration: none;

  padding: 3px 0;

  transition: color 0.18s, padding-left 0.18s;

}

.footer-link:hover { color: #fff; padding-left: 5px; }

.footer-areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }

.footer-bottom {

  border-top: 1px solid rgba(255,255,255,0.06);

  padding: 1rem 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.5rem;

  text-align: center;

}

.footer-bottom p {

  font-family: 'DM Sans', sans-serif;

  font-size: 0.75rem;

  color: rgba(255,255,255,0.28);

  margin: 0;

}

/* ============================================================

   SVG ICONS (inline)

   ============================================================ */

.icon { display: inline-block; vertical-align: middle; }

/* ============================================================

   RESPONSIVE UTILS

   ============================================================ */

@media (max-width: 1023px) {

  .desktop-only { display: none !important; }

}

@media (min-width: 1024px) {

  .mobile-only { display: none !important; }

}

/* ============================================================

   MAP SECTION (area pages)

   ============================================================ */

/* ============================================================
   COVERAGE / MAP SECTION (area pages) — two-column layout
   ============================================================ */
.coverage-section {
  padding: 3.5rem 0 5rem;
  background: #07111f;
  border-top: 1px solid rgba(26,79,219,0.1);
}
.coverage-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.coverage-heading .em { color: var(--electric); }
.coverage-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .coverage-cols { grid-template-columns: 2fr 3fr; align-items: stretch; }
}
.coverage-details {
  background: #0a1628;
  border: 1px solid rgba(26,79,219,0.25);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.coverage-details h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
}
.coverage-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
}
.coverage-detail-row:last-of-type { border-bottom: none; }
.coverage-detail-row .lbl { color: #9ca3af; }
.coverage-detail-row .val { color: #fff; font-weight: 600; }
.coverage-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: var(--electric);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.coverage-call-btn:hover { background: var(--electric-light); }
.coverage-map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(26,79,219,0.2);
  min-height: 380px;
}
.coverage-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}
@media (max-width: 767px) {
  .coverage-cols { display: flex; flex-direction: column-reverse; }
  .coverage-map,
  .coverage-map iframe { min-height: 260px; }
}

/* ============================================================

   REDUCED MOTION

   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  *, *::before, *::after {

    animation-duration: 0.01ms !important;

    transition-duration: 0.01ms !important;

  }

}
/* ============================================================
   COVERAGE / MAP SECTION (area pages) - two-column layout
   ============================================================ */
.coverage-section {
  padding: 3.5rem 0 5rem;
  background: #07111f;
  border-top: 1px solid rgba(26,79,219,0.1);
}
.coverage-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.coverage-heading .em { color: var(--electric); }
.coverage-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .coverage-cols { grid-template-columns: 2fr 3fr; align-items: stretch; }
}
.coverage-details {
  background: #0a1628;
  border: 1px solid rgba(26,79,219,0.25);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.coverage-details h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
}
.coverage-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
}
.coverage-detail-row:last-of-type { border-bottom: none; }
.coverage-detail-row .lbl { color: #9ca3af; }
.coverage-detail-row .val { color: #fff; font-weight: 600; }
.coverage-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: var(--electric);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.coverage-call-btn:hover { background: var(--electric-light); }
.coverage-map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(26,79,219,0.2);
  min-height: 380px;
}
.coverage-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}
@media (max-width: 767px) {
  .coverage-cols { display: flex; flex-direction: column-reverse; }
  .coverage-map,
  .coverage-map iframe { min-height: 260px; }
}

/* ============================================================

   REDUCED MOTION

   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  *, *::before, *::after {

    animation-duration: 0.01ms !important;

    transition-duration: 0.01ms !important;

  }

}
/* ============================================================
   AREAS COVERED SECTION (homepage)
   ============================================================ */
.areas-section {
  padding: 4rem 0 5rem;
  background: #07111f;
  border-top: 1px solid rgba(26,79,219,0.08);
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px)  { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(5, 1fr); } }
.area-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a1628;
  border: 1px solid rgba(26,79,219,0.25);
  border-radius: 0.75rem;
  padding: 1rem 1.125rem;
  text-decoration: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(26,79,219,0.4);
  border-color: rgba(26,79,219,0.65);
  color: #fff;
}
.area-card-arrow {
  color: var(--electric);
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.area-card:hover .area-card-arrow { transform: translateX(3px); }





/* ═══════════════════════════════════════════════════
   CONTACT FORM — ENHANCED INTEGRATION
   ═══════════════════════════════════════════════════ */

/* Select dropdown — match text inputs exactly */
.dep-form-wrap select {
  width: 100% !important;
  display: block !important;
  background-color: rgba(6,15,46,0.8) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  border: 1px solid rgba(26,79,219,0.2) !important;
  color: #fff !important;
  border-radius: 0.75rem !important;
  padding: 0.875rem 2.5rem 0.875rem 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  cursor: pointer !important;
  transition: border-color 0.2s !important;
  line-height: 1.5 !important;
}
.dep-form-wrap select:focus {
  border-color: rgba(26,79,219,0.6) !important;
}
/* Style the placeholder option inside select */
.dep-form-wrap select option {
  background: #0a1628 !important;
  color: #fff !important;
}

/* Name field: two-column side-by-side layout */
.dep-form-wrap .wpforms-field-name .wpforms-field-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.75rem !important;
}

/* Sub-labels (First / Last): move ABOVE the input using flex column-reverse */
.dep-form-wrap .wpforms-field-row-block {
  display: flex !important;
  flex-direction: column-reverse !important;
  gap: 0 !important;
}

/* Sub-label text styling */
.dep-form-wrap .wpforms-field-sublabel {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.45) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 0.375rem !important;
  margin-top: 0 !important;
}

/* Field spacing: consistent gaps between all fields */
.dep-form-wrap .wpforms-field {
  padding-bottom: 1.25rem !important;
}

/* Remove WPForms default error red background on inputs */
.dep-form-wrap .wpforms-field input.wpforms-error,
.dep-form-wrap .wpforms-field textarea.wpforms-error,
.dep-form-wrap .wpforms-field select.wpforms-error {
  border-color: rgba(239,68,68,0.5) !important;
  background-color: rgba(6,15,46,0.8) !important;
}

/* Error messages */
.dep-form-wrap .wpforms-error-container,
.dep-form-wrap label.wpforms-error {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8125rem !important;
  color: #f87171 !important;
  margin-top: 0.375rem !important;
}

/* Spinner on submit */
.dep-form-wrap .wpforms-submit-spinner { filter: brightness(10); }

/* Remove WPForms footer branding if any */
.dep-form-wrap .wpforms-confirmation-container-full { color: #d1d5db !important; }

/* Confirmation/success message */
.dep-form-wrap .wpforms-confirmation-container {
  background: rgba(26,79,219,0.1) !important;
  border: 1px solid rgba(26,79,219,0.35) !important;
  border-radius: 0.75rem !important;
  padding: 1.5rem !important;
  color: #93c5fd !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* ====================================================
   404 ERROR PAGE
   ==================================================== */
.fourofour-hero {
    padding: 6rem 0 5rem;
    background: #07111f;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fourohfour-headline {
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(2.5rem, 8vw, 5rem) !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    margin: 0 0 1.25rem !important;
    line-height: 1 !important;
    letter-spacing: -0.01em !important;
}
.fourohfour-sub {
    font-family: "DM Sans", sans-serif;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.65);
    max-width: 36rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
}
.fourofour-phone-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    background: #1a4fdb !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 900 !important;
    font-size: 2.25rem !important;
    letter-spacing: 0.02em !important;
    padding: 1rem 2rem !important;
    border-radius: 0.875rem !important;
    box-shadow: 0 0 32px rgba(26,79,219,0.55) !important;
    margin-bottom: 2rem !important;
    transition: background 0.2s !important;
}
.fourofour-phone-btn:hover { background: #3b6ff0 !important; }
.fourofour-phone-btn svg { flex-shrink: 0; color: #ffffff; }
.fourofour-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 1.75rem;
}
.fourofour-link {
    display: inline-flex;
    align-items: center;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(26,79,219,0.4) !important;
    border-radius: 0.625rem;
    padding: 0.625rem 1.25rem;
    text-decoration: none !important;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.fourofour-link:hover {
    color: #ffffff !important;
    border-color: rgba(26,79,219,0.75) !important;
    background: rgba(26,79,219,0.12);
}
.fourofour-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

/* 404 big number */
.fourohfour-num {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(6rem, 20vw, 12rem);
    color: #1a4fdb;
    line-height: 1;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}
