/* HEPBURN ELECTRICAL — Shared Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #D0021B; --red-dark: #A50016;
  --black: #0D0D0D; --charcoal: #1A1A1A; --mid: #2E2E2E;
  --steel: #5A5A5A; --silver: #A8A8A8; --light: #F2F2F2;
  --white: #FFFFFF; --green: #16a34a;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); line-height: 1.6; margin: 0; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(13,13,13,0.97); backdrop-filter: blur(8px);
}
.nav-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: -0.3px; }
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a { font-size: 12.5px; font-weight: 500; letter-spacing: 0.4px; color: var(--silver); text-decoration: none; text-transform: uppercase; transition: color 0.2s; padding: 0 14px; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--red); }
.nav-cta { background: var(--red); color: var(--white); font-size: 13px; font-weight: 700; padding: 9px 20px; border-radius: 4px; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--red-dark); }

/* PAGE HERO */
.page-hero { padding: 110px 40px 70px; background: var(--charcoal); position: relative; overflow: hidden; }
.page-hero-grid { position: absolute; inset: 0; opacity: 0.06; background-image: linear-gradient(var(--red) 1px, transparent 1px), linear-gradient(90deg, var(--red) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.page-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.page-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 62px); font-weight: 800; color: var(--white); line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 18px; }
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p { font-size: 17px; color: var(--silver); line-height: 1.7; max-width: 620px; }
.page-hero-cta { margin-top: 32px; }
.page-hero-cta a { display: inline-block; background: var(--red); color: var(--white); font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: 4px; text-decoration: none; transition: background 0.2s; }
.page-hero-cta a:hover { background: var(--red-dark); }

/* SECTION WRAPPERS */
.section-light { padding: 90px 40px; background: var(--light); }
.section-white { padding: 90px 40px; background: var(--white); }
.section-dark { padding: 90px 40px; background: var(--charcoal); }
.section-green { padding: 90px 40px; background: #f0faf4; }
.inner { max-width: 1100px; margin: 0 auto; }

/* SECTION HEADINGS */
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-eyebrow.green { color: var(--green); }
h2.section-title { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -1px; color: var(--black); line-height: 1.1; margin-bottom: 16px; }
h2.section-title.white { color: var(--white); }
.section-intro { color: var(--steel); font-size: 16px; line-height: 1.7; max-width: 620px; margin-bottom: 52px; }
.section-intro.light { color: var(--silver); }

/* CARDS */
.card-grid { display: grid; gap: 20px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border-radius: 10px; padding: 32px 28px; border: 1px solid transparent; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.card.dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.card.dark:hover { border-color: var(--red); }
.card-icon { font-size: 32px; margin-bottom: 16px; }
.card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 10px; }
.card.dark h3 { color: var(--white); }
.card p { font-size: 13.5px; color: var(--steel); line-height: 1.65; margin-bottom: 18px; }
.card.dark p { color: var(--silver); }
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.bullet-list li { font-size: 12.5px; color: var(--steel); padding-left: 16px; position: relative; }
.bullet-list.light li { color: var(--silver); }
.bullet-list li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-size: 10px; }

/* TWO COL LAYOUT */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col.center { align-items: center; }

/* FEATURE LIST */
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 8px; }
.feature-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.feature-text span { font-size: 13.5px; color: var(--silver); }
.feature-text strong.dark { color: var(--black); }
.feature-text span.dark { color: var(--steel); }

/* STEP PROCESS */
.step-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step { background: var(--white); border-radius: 10px; padding: 28px 24px; border: 1px solid #e0f0e8; }
.step-num { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: #bbf7d0; margin-bottom: 12px; }
.step h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--steel); line-height: 1.6; }

/* DARK QUOTE CARD */
.quote-card { background: rgba(208,2,27,0.07); border: 1px solid rgba(208,2,27,0.2); border-radius: 10px; padding: 40px; }
.quote-card blockquote { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.45; margin-bottom: 24px; }
.quote-card blockquote::before { content: '\201C'; color: var(--red); font-size: 60px; line-height: 0; vertical-align: -24px; margin-right: 4px; }
.quote-cite { color: var(--silver); font-size: 13px; }
.quote-cite strong { color: var(--red); display: block; font-size: 14px; margin-bottom: 2px; }

/* HIGHLIGHT BOX */
.highlight-box { background: var(--black); border-radius: 12px; padding: 40px 48px; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.highlight-box h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.highlight-box p { color: var(--silver); font-size: 14px; line-height: 1.7; max-width: 520px; }
.highlight-box .facts { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.highlight-box .fact { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--white); }
.highlight-box .fact span { color: var(--red); font-weight: 700; }
.btn-red { display: inline-block; background: var(--red); color: var(--white); font-size: 13px; font-weight: 700; padding: 13px 24px; border-radius: 4px; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.btn-red:hover { background: var(--red-dark); }
.btn-green { display: inline-block; background: var(--green); color: var(--white); font-size: 13px; font-weight: 700; padding: 13px 24px; border-radius: 4px; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.btn-green:hover { background: #15803d; }

/* SEANZ BADGE */
.seanz-card { background: var(--black); border-radius: 12px; padding: 40px; }
.seanz-icon { width: 60px; height: 60px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.seanz-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.seanz-card p { color: var(--silver); font-size: 13.5px; line-height: 1.7; margin-bottom: 24px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--white); list-style: none; }
.check-list li span { color: var(--green); font-weight: 700; }

/* AVAIL PULSE */
.avail-bar { background: var(--charcoal); border-radius: 10px; padding: 24px 28px; display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.avail-dot { width: 12px; height: 12px; border-radius: 50%; background: #22c55e; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(34,197,94,0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.2); } 50% { box-shadow: 0 0 0 8px rgba(34,197,94,0.08); } }
.avail-bar strong { display: block; color: var(--white); font-size: 14px; font-weight: 600; }
.avail-bar span { color: var(--silver); font-size: 13px; }

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--steel); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 14px; border: 1.5px solid #E0E0E0; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--black); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { background: var(--charcoal); color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; padding: 14px; border-radius: 6px; border: none; cursor: pointer; width: 100%; transition: background 0.2s; margin-top: 4px; }
.form-submit:hover { background: var(--black); }

/* CONTACT DETAILS */
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon { width: 40px; height: 40px; background: var(--light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--silver); margin-bottom: 3px; }
.contact-item-text a, .contact-item-text span { font-size: 15px; color: var(--black); font-weight: 600; text-decoration: none; }
.contact-item-text a:hover { color: var(--red-dark); }

/* FOOTER */
footer { background: var(--black); padding: 48px 40px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); }
.footer-logo span { color: var(--red); }
.footer-tagline { color: var(--steel); font-size: 13px; margin-top: 4px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--silver); margin-bottom: 14px; }
.footer-col a { display: block; color: #6B6B6B; font-size: 13px; text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--steel); font-size: 12px; }
.master-badge { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--silver); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.master-badge::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; background: var(--red); border-radius: 50%; color: var(--white); font-size: 9px; font-weight: 800; }

/* SOCIAL ICONS */
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.social-links a:hover { background: var(--red); transform: translateY(-2px); }
.social-links svg { width: 16px; height: 16px; fill: var(--white); }
.nav-socials { display: flex; gap: 8px; align-items: center; margin-right: 4px; }
.nav-socials a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.nav-socials a:hover { background: var(--red); }
.nav-socials svg { width: 14px; height: 14px; fill: var(--white); }
@media (max-width: 900px) { .nav-socials { display: none; } }

/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.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 DRAWER */
.nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  height: calc(100vh - 64px);
  background: #0d0d0d;
  z-index: 99;
  overflow-y: auto;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 15px;
  font-weight: 600;
  color: var(--silver);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover, .nav-drawer a.active { color: var(--red); }
.nav-drawer .drawer-cta {
  margin-top: 16px;
  background: var(--red);
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 4px;
  border-bottom: none !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero, .section-light, .section-white, .section-dark, .section-green { padding-left: 20px; padding-right: 20px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .card-grid.cols-4, .card-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .highlight-box { flex-direction: column; }
  footer { padding: 40px 20px 24px; }
  .accred-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 600px) {
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .accred-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .solar-bottom-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (prefers-reduced-motion: reduce) { .avail-dot { animation: none; } }
