/* ============================================================
   Uniform Lighting & Power LLC — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ── */
:root {
  --navy-900: #000000;
  --navy-800: #000000;
  --navy-700: #0D0D0D;
  --navy-600: #141414;
  --navy-500: #1a1a1a;
  --gold:      #4DB8FF;
  --gold-hover:#79CCFF;
  --gold-glow: rgba(77,184,255,0.2);
  --gold-dim:  rgba(77,184,255,0.12);
  --border:    rgba(77,184,255,0.14);
  --white:     #FFFFFF;
  --off-white: #EDF2FF;
  --muted:     #8A9DBB;

  --font-h: 'Oswald', 'Arial Narrow', sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;

  --wrap: 1140px;
  --r:  6px;
  --rl: 10px;
  --t:  0.22s ease;
  --section: 5rem 1.25rem;
  --shadow: 0 6px 28px rgba(0,0,0,0.45);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--navy-800);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

/* ── Type ── */
h1 { font-family: var(--font-h); font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; line-height: 1.0; letter-spacing: 0.01em; }
h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.1; }
h3 { font-family: var(--font-h); font-size: clamp(1.05rem, 2.5vw, 1.35rem); font-weight: 600; line-height: 1.15; }

.label {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px var(--gold-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy-900);
}
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), padding var(--t);
  padding: 0.9rem 0;
}
.navbar.scrolled {
  border-color: var(--border);
  padding: 0.65rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  background: transparent;
}
.logo-bolt {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
  font-weight: 900;
  font-size: 1.2rem;
  font-family: var(--font-h);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.logo-words { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}
.logo-sub {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.45rem 0.7rem;
  border-radius: var(--r);
  transition: color var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Dropdown */
.dropdown { position: relative; }
/* Invisible bridge fills the gap between the trigger and the menu so
   moving the cursor downward doesn't lose the :hover state */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.75rem; /* slightly taller than the 0.6rem menu offset */
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--r);
  min-width: 195px;
  box-shadow: var(--shadow);
  padding: 0.45rem 0;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu:hover { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  border-radius: 0;
  color: rgba(255,255,255,0.8);
}
.dropdown-menu a:hover { background: var(--navy-600); color: var(--gold); }

.nav-phone {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: none;
  flex-shrink: 0;
  transition: color var(--t);
}
.nav-phone:hover { color: var(--gold-hover); }

/* Hamburger */
.hamburger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  background: var(--navy-900);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--t), background var(--t);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(77,184,255,0.04); }
.mobile-nav-phone {
  color: var(--gold) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  padding-bottom: 1.25rem !important;
}

@media (min-width: 780px) {
  .nav-links  { display: flex; }
  .nav-phone  { display: block; }
  .hamburger  { display: none; }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  padding: 7rem 1.25rem 4.5rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 65% 45%, rgba(77,184,255,0.055) 0%, transparent 70%),
    linear-gradient(140deg, var(--navy-900) 0%, #000000 55%, #0D0D0D 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(77,184,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,184,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77,184,255,0.08);
  border: 1px solid rgba(77,184,255,0.28);
  color: var(--gold);
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.42rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; text-transform: uppercase; }
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--muted);
}
.trust-item strong { color: var(--white); }
.trust-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy-700);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 1.25rem;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2.5rem;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.tb-dot { color: var(--gold); font-size: 1.1rem; }

@media (min-width: 900px) {
  .trust-bar .container {
    flex-wrap: nowrap;
    gap: 0.5rem 1.25rem;
  }
  .tb-item {
    font-size: 0.73rem;
    letter-spacing: 0.07em;
    white-space: nowrap;
    gap: 0.45rem;
  }
  .tb-dot { font-size: 0.95rem; }
}

/* ── Section base ── */
section { padding: var(--section); }
.sec-head { text-align: center; margin-bottom: 3rem; }
.sec-head h2 { margin-bottom: 0.9rem; }
.sec-head h2 em { color: var(--gold); font-style: normal; }
.sec-head p { color: var(--muted); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.75; }

/* ── Services ── */
.services { background: var(--navy-800); }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 500px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 880px) { .svc-grid { grid-template-columns: repeat(3,1fr); } }

.svc-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.35);
}
.svc-icon {
  width: 46px; height: 46px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.2rem;
}
.svc-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.svc-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ── Why Us ── */
.why-us { background: var(--navy-700); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 580px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 880px) { .why-grid { grid-template-columns: repeat(4,1fr); } }

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--rl);
}
.why-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.why-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.65; }

/* ── Reviews ── */
.reviews { background: var(--navy-800); }
.rev-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 680px) { .rev-grid { grid-template-columns: repeat(3,1fr); } }

.rev-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.stars { color: var(--gold); font-size: 0.95rem; display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.rev-text {
  color: var(--off-white);
  font-size: 0.92rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.25rem;
}
.rev-by {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.rev-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

/* ── Service Areas ── */
.areas { background: var(--navy-700); }
.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 2rem;
}
.area-chip {
  display: inline-block;
  background: var(--navy-800);
  border: 1px solid var(--border);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color var(--t), color var(--t);
  cursor: default;
}
.area-chip.linked { cursor: pointer; }
.area-chip.linked:hover { border-color: var(--gold); color: var(--gold); }

/* ── Contact ── */
.contact { background: var(--navy-900); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 760px) { .contact-wrap { grid-template-columns: 1fr 1fr; align-items: start; } }

.contact-info h2 { margin-bottom: 1rem; }
.contact-info h2 em { color: var(--gold); font-style: normal; }
.contact-info > p { color: var(--muted); margin-bottom: 2rem; line-height: 1.75; }

.contact-phone {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  transition: color var(--t);
}
.contact-phone:hover { color: var(--gold-hover); }

.contact-meta { display: flex; flex-direction: column; gap: 0.55rem; }
.contact-meta-row {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.875rem; color: var(--white);
}
.contact-meta-row strong { color: var(--gold); }

.contact-box {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 2rem;
}
.contact-box h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}
.contact-box p { color: var(--muted); font-size: 0.875rem; margin-bottom: 1.5rem; line-height: 1.65; }
.contact-box .btn { width: 100%; justify-content: center; margin-top: 0.75rem; }
.contact-box .btn:first-of-type { margin-top: 0; }

/* ── Footer ── */
footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.25rem 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 880px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand > p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 290px;
}
.footer-phone {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 1rem;
  transition: color var(--t);
}
.footer-phone:hover { color: var(--gold-hover); }

.footer-col h4 {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.45rem; }
.footer-col li a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color var(--t);
}
.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.footer-bottom p { color: var(--muted); font-size: 0.78rem; }
.footer-lic {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Scroll-to-top ── */
.scroll-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: var(--navy-900);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--t), transform var(--t), background var(--t);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.scroll-top.vis { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-hover); }

/* ── City Hero ── */
.city-hero {
  background: var(--navy-900);
  padding: 8.5rem 1.25rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 85% 50%, rgba(77,184,255,0.05) 0%, transparent 65%),
    linear-gradient(140deg, var(--navy-900) 0%, var(--navy-700) 100%);
  pointer-events: none;
}
.city-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(77,184,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,184,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.city-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.city-hero h1 { text-transform: uppercase; margin-bottom: 1.1rem; }
.city-hero h1 em { color: var(--gold); font-style: normal; }
.city-hero > .container > .city-hero-inner > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 600px;
}
.city-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* City services list */
.city-svc-list {
  background: var(--navy-800);
}
.city-svc-ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
@media (min-width: 500px) { .city-svc-ul { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 880px) { .city-svc-ul { grid-template-columns: repeat(3,1fr); } }

.city-svc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.1rem 1.25rem;
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.city-svc-item::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Trust cards */
.city-trust { background: var(--navy-700); }
.trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
@media (min-width: 600px)  { .trust-cards { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 880px)  { .trust-cards { grid-template-columns: repeat(3,1fr); } }

.trust-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tc-icon { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.trust-card h4 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.trust-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* City CTA banner */
.city-cta-banner {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  border-top: 2px solid var(--gold);
  padding: 4rem 1.25rem;
  text-align: center;
}
.city-cta-banner h2 { text-transform: uppercase; margin-bottom: 1rem; }
.city-cta-banner h2 em { color: var(--gold); font-style: normal; }
.city-cta-banner p { color: var(--muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.banner-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-form-wrap { max-width: 500px; margin: 0 auto; text-align: left; }

/* ── Reviews page ── */
.reviews-hero {
  background: var(--navy-900);
  padding: 8.5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reviews-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(77,184,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,184,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.reviews-hero-inner { position: relative; z-index: 1; }
.reviews-hero h1 { text-transform: uppercase; margin-bottom: 1rem; }
.reviews-hero h1 em { color: var(--gold); font-style: normal; }
.reviews-hero p { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto; line-height: 1.75; }

.leave-review {
  background: var(--navy-700);
  padding: 2.75rem 1.25rem;
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border);
}
.leave-review p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.leave-review-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.all-reviews { background: var(--navy-800); }
.all-rev-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 680px) { .all-rev-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .all-rev-grid { grid-template-columns: repeat(3,1fr); } }

.rev-card-full {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.rev-card-full .rev-text { flex: 1; font-size: 0.95rem; line-height: 1.78; margin-bottom: 1.5rem; }
.rev-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.rev-name {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rev-source {
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--navy-800);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-h);
  font-weight: 600;
}

/* ── Logo image ── */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  background: transparent;
  mix-blend-mode: screen;
}

/* ── Contact form ── */
.contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label {
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group textarea {
  background: #000;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 0.9rem;
  width: 100%;
  transition: border-color var(--t);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Form success state ── */
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--gold);
}
.form-success i {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}
.form-success p {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--navy-700);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1.25rem;
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .bc-sep { color: var(--muted); font-size: 0.65rem; }
.breadcrumb .bc-current { color: var(--white); }

/* ── Mobile nav section label ── */
.mobile-nav-label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.65rem 1.25rem 0.3rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.sub-link {
  padding-left: 2.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.mobile-nav a.sub-link:hover { color: var(--gold); }

/* ── City service items as links ── */
a.city-svc-item {
  text-decoration: none;
  transition: border-color var(--t), color var(--t);
}
a.city-svc-item:hover { border-color: var(--gold); color: var(--gold); }

/* ── Areas We Serve section (homepage) ── */
.serve-areas { background: var(--navy-700); }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 580px) { .serve-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .serve-grid { grid-template-columns: repeat(4, 1fr); } }
.serve-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.6rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color var(--t), transform var(--t), color var(--t);
}
.serve-card i { font-size: 1.25rem; color: var(--gold); }
.serve-card:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── Service detail pages ── */
.svc-hero { background: var(--navy-900); padding: 8.5rem 1.25rem 4.5rem; position: relative; overflow: hidden; }
.svc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 80% 50%, rgba(77,184,255,0.05) 0%, transparent 65%), linear-gradient(140deg, var(--navy-900) 0%, var(--navy-700) 100%);
  pointer-events: none;
}
.svc-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(77,184,255,0.03) 1px, transparent 1px), linear-gradient(90deg,rgba(77,184,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.svc-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.svc-hero h1 { text-transform: uppercase; margin-bottom: 1.1rem; }
.svc-hero h1 em { color: var(--gold); font-style: normal; }
.svc-hero > .container > .svc-hero-inner > p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; max-width: 600px; }
.svc-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.svc-what { background: var(--navy-800); }
.svc-who  { background: var(--navy-700); }
.svc-why  { background: var(--navy-800); }

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) { .svc-detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .svc-detail-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-detail-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.5rem;
}
.svc-why .svc-detail-card { background: var(--navy-800); }
.svc-detail-card h3 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.svc-detail-card p, .svc-detail-card li { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }
.svc-detail-card ul { padding-left: 1.1rem; display: flex; flex-direction: column; gap: 0.3rem; }
.svc-detail-card li::marker { color: var(--gold); }

.signs-section { background: var(--navy-700); }
.signs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 1rem;
}
@media (min-width: 500px) { .signs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .signs-grid { grid-template-columns: repeat(3, 1fr); } }
.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  color: var(--off-white);
  line-height: 1.55;
}
.sign-item i { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }

.faq-section { background: var(--navy-800); }
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 0.5rem; }
.faq-item {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem 1.5rem;
}
.faq-item h3 {
  font-family: var(--font-h);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.55rem;
}
.faq-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

.related-links { background: var(--navy-700); }
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.related-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: border-color var(--t), color var(--t);
}
.related-chip:hover { border-color: var(--gold); color: var(--gold); }
.related-chip i { font-size: 0.7rem; }
