@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');
/* Laws Electric — Bold Modern variant (Charcoal + Electric Blue + Yellow) */

:root {
  --brand-primary: #0066FF;
  --brand-primary-dark: #0052CC;
  --brand-primary-tint: #E6F0FF;
  --brand-secondary: #FFD700;
  --brand-dark: #1A1A1A;
  --brand-charcoal: #2D3436;
}

/* Hero full-bleed fix */
html, body { margin: 0; padding: 0; overflow-x: hidden; }

.hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center top; }

/* ── Mobile overflow guard ── */
*, *::before, *::after { box-sizing: border-box; }

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

/* Button text alignment */
.btn, .btn-primary, .btn-secondary, .cta-btn, .nav-cta, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

:root {
    --blue: var(--brand-primary);
    --blue-dark: var(--brand-primary-dark);
    --yellow: var(--brand-secondary);
    --black: #0F0F0F;
    --dark: #1A1A1A;
    --charcoal: var(--brand-charcoal);
    --mid: #3D3D3D;
    --muted: #6B6B6B;
    --border: #E5E5E5;
    --light-bg: #F7F7F7;
    --white: #FFFFFF;
    --slate: #475569;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

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

body { font-family: var(--font); color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; margin: 0; padding: 0; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container { padding: 0 48px; }
}

/* ── UTILITY BAR ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 9998;
  background: var(--charcoal);
}

.util-bar {
    position: relative;
    background: var(--charcoal);
    padding: 10px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    text-align: center;
    letter-spacing: 0.02em;
  }

.util-bar span { color: var(--yellow); font-weight: 600; }

.util-bar a { color: #ccc; text-decoration: none; margin: 0 12px; white-space: nowrap; }

.util-bar a:hover { color: var(--white); }

.util-social { display: flex; align-items: center; gap: 14px; margin-left: auto; flex-shrink: 0; }
.util-social a { color: #fff; display: inline-flex; align-items: center; opacity: .82; margin: 0; }
.util-social svg { width: 15px; height: 15px; display: block; flex-shrink: 0; }

/* ── NAV ── */
nav {
  position: relative;
  top: auto;
  left: auto; right: auto;
  z-index: 9997;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--charcoal);
  border-bottom: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.03em;
  z-index: 201;
  font-family: var(--font-display);
}

.nav-logo-dot {
  width: 10px; height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-logo-text { display: none; }

@media (min-width: 768px) {
  .nav-logo-text { display: inline; }
}

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

.nav-cta-arrow {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

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

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height, 0);
  left: 0; right: 0;
  background: var(--charcoal);
  padding: 24px;
  z-index: 9996;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu a:hover { color: var(--white); }

.mobile-cta, .mobile-phone {
  background: var(--blue);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
}

.mobile-phone { background: rgba(0, 102, 255, 0.8); }

/* Responsive NAV */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  nav { padding: 12px 16px; }
  .nav-logo { font-size: 16px; }
}

/* ── HERO ── */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
}

.hero-img { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px 0;
  font-family: var(--font-display);
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  gap: 8px;
}

.btn-primary:hover { background: var(--blue-dark); }

.arrow-circle {
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.hero-proof {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  z-index: 2;
}

.hero-proof-text {
  font-size: 13px;
  color: var(--charcoal);
}

.hero-proof-stars {
  font-size: 16px;
  color: var(--yellow);
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .hero { min-height: 500px; padding-bottom: 40px; }
  .hero-proof { bottom: 20px; right: 20px; padding: 16px 20px; }
  .hero h1 { font-size: 32px; }
}

/* ── LOGO BAR ── */
.logo-bar {
  background: var(--light-bg);
  padding: 24px 0;
}

.logo-bar-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-right: 32px;
  white-space: nowrap;
}

.logo-bar-items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.logo-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .logo-bar { padding: 16px 0; }
  .logo-bar-items { gap: 16px; }
  .logo-item { font-size: 12px; }
}

/* ── SECTIONS ── */
.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin: 0 0 32px 0;
  font-family: var(--font-display);
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s;
  aspect-ratio: 1;
}

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

.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  transition: background 0.3s;
}

.service-card:hover .service-card-overlay { background: rgba(0,0,0,0.6); }

.service-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.service-card-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.service-card-name span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}

.service-arrow {
  font-size: 20px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.service-card:hover .service-arrow { opacity: 1; }

/* Why Section */
.why-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.why-header {
  margin-bottom: 60px;
}

.why-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid transparent;
  transition: border-color 0.2s;
}

.feature-card.highlight {
  border-left-color: var(--yellow);
  background: rgba(255,215,0,0.05);
}

.feature-card:not(.highlight) {
  border-left-color: var(--blue);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}

.feature-card.highlight .feature-icon {
  background: var(--yellow);
  color: var(--charcoal);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--black);
  font-family: var(--font-display);
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Stats Band */
.stats-band {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stats-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.stats-overlay {
  position: relative;
  z-index: 1;
}

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 13px;
  opacity: 0.9;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .stats-band { height: 250px; }
  .stats-bar { gap: 16px; }
  .stat-divider { display: none; }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

/* CTA Section */
.cta-section {
  background: var(--charcoal);
  padding: 80px 0;
  color: var(--white);
}

.cta-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.cta-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px 0;
  font-family: var(--font-display);
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.cta-phone {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}

.cta-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.btn-orange-solid {
  background: var(--blue);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-orange-solid:hover { background: var(--blue-dark); }

.btn-white-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-white-outline:hover { border-color: var(--white); }

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover { background: var(--blue-dark); }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand { }

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}

.footer-logo .dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-copy { margin: 0; }

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  font-size: 13px;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* ── CONTACT PAGE ── */
.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 14px;
  border: 1px solid #d8d2c4;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: #15201a;
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  background: var(--blue);
  color: var(--white);
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--blue-dark); }

.form-disclosure {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--light-bg);
  padding: 24px;
  border-radius: 12px;
}

.info-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin: 0 0 12px 0;
}

.info-card a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.info-card a:hover { color: var(--blue-dark); }

.info-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.phone-card a {
  font-size: 20px;
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background: var(--light-bg);
}

.map-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.map-address {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* Emergency Section */
.emergency-section {
  padding: 60px 0;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.emergency-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.emergency-phone {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  transition: color 0.2s;
}

.emergency-phone:hover { color: var(--yellow); }

.emergency-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr; }
  .services-section { padding: 60px 0; }
  .why-section { padding: 60px 0; }
  .cta-section { padding: 60px 0; }
}
