/* ==============================================
   EWIRE ELECTRICAL — style.css
   Matches the EWIRE mockup design exactly
   ============================================== */

/* ---- DESIGN TOKENS ---- */
:root {
  --green:        #004032;
  --green-dark:   #002F26;
  --green-mid:    #0B5A45;
  --orange:       #F7941D;
  --orange-hi:    #FF9F00;
  --cream:        #f8f7f7;
  --off-white:    #f8f7f7;
  --white:        #FFFFFF;

  --text-h:       #073B31;
  --text-b:       #263B36;
  --text-muted:   #6F7C77;
  --text-light:   #D8E4DD;

  --border:       #E7DFD0;
  --card-shadow:  0 2px 20px rgba(0, 47, 38, 0.07);
  --max-w:        1200px;
}

/* ---- RESET ---- */
*, *::before, *::after  { box-sizing: border-box; margin: 0; padding: 0; }
html                    { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-b);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
site-header, site-footer { display: block; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- SECTION LABEL (small orange uppercase tags) ---- */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* ---- SECTION HEADING ---- */
.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-h);
  letter-spacing: -0.3px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover           { transform: translateY(-1px); }
.btn svg             { width: 15px; height: 15px; flex-shrink: 0; transition: transform .2s; }
.btn:hover svg       { transform: translateX(3px); }

/* Orange filled */
.btn-primary         { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover   { background: var(--orange-hi); border-color: var(--orange-hi); }

/* White outline — hero secondary */
.btn-outline         { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover   { background: #fff; color: var(--green-dark); border-color: #fff; }

/* Dark outline — use on light backgrounds */
.btn-outline-dark    { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-dark:hover { background: var(--green); color: #fff; }

/* Orange outline — CTA strip */
.btn-outline-orange  { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }


/* ================================================
   SITE HEADER
   ================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 64px;
  width: auto;
  display: block;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-b);
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s;
}
.nav-link:hover          { color: var(--green); }
.nav-link:hover::after   { width: 100%; }
.nav-chevron             { width: 11px; height: 11px; opacity: 0.4; transition: transform .22s; }

/* Services button resets */
.nav-link-btn {
  background: none;
  border: none;
  padding: 0;
  padding-bottom: 2px;
  cursor: pointer;
  font-family: inherit;
}

/* Chevron rotates when mega is open */
.has-mega.open .nav-chevron { transform: rotate(180deg); opacity: 0.7; }

/* ---- MEGA MENU ---- */
.mega-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: 0 24px 64px rgba(0,47,38,0.13);
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s, visibility .22s, transform .22s;
  pointer-events: none;
}
.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  padding: 48px 0 52px;
}

.mega-intro {
  padding-right: 52px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.mega-intro .section-label { margin-bottom: 10px; }
.mega-intro h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-h);
  line-height: 1.25;
  margin-bottom: 12px;
}
.mega-intro p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap .2s;
}
.mega-view-all:hover { gap: 12px; }

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-left: 52px;
  align-content: center;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 10px;
  transition: background .2s;
  color: inherit;
}
.mega-item:hover { background: #f8f7f7; }

.mega-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.mega-item-icon.bg-green  { background: var(--green); }
.mega-item-icon.bg-orange { background: var(--orange); }
.mega-item-icon svg { width: 20px; height: 20px; }

.mega-item-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 5px;
}
.mega-item-text span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Header right: phone pill */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid #d0ccc4;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-h);
  transition: border-color .2s, color .2s;
}
.header-phone svg   { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
.header-phone:hover { border-color: var(--orange); color: var(--orange); }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}


/* ================================================
   HERO SECTION
   ================================================ */

.hero-section {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dark);
}

/* Full-bleed hero photo / video */
.hero-photo,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Full-bleed gradient overlay — dense green left, fades to transparent right */
.hero-panel {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,47,38,0.92) 0%,
    rgba(0,47,38,0.82) 32%,
    rgba(0,47,38,0.48) 58%,
    rgba(0,47,38,0.12) 80%,
    rgba(0,47,38,0.04) 100%
  );
  z-index: 1;
}


/* All text/content above layers */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 540px;
  padding: 110px 0;
}

.hero-labels {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-labels span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}
.hero-labels i {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(247,148,29,0.5);
  font-style: normal;
  flex-shrink: 0;
}

/* UPPERCASE hero heading — matches mockup exactly */
.hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 0.97;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.hero-heading .accent {
  color: var(--orange);
  display: block;
}

.hero-body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ================================================
   WHAT WE DO + SERVICES  (single white section)
   ================================================ */

.what-we-do-section {
  background: #f8f7f7;
  padding: 90px 0 100px;
}

/* Two-column intro */
.intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 70px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.intro-left .section-heading  { font-size: 46px; }
.intro-right p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: none;
  border-radius: 10px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .28s, transform .28s;
  cursor: pointer;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,47,38,0.10); transform: translateY(-4px); }

/* Icon box */
.service-icon {
  width: 68px; height: 68px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.service-icon.bg-green  { background: var(--green); }
.service-icon.bg-orange { background: var(--orange); }
.service-icon svg       { width: 30px; height: 30px; color: #fff; }

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 12px;
  letter-spacing: -0.1px;
}
.service-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 28px;
  flex: 1;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap .2s;
  margin-top: auto;
}
.learn-more svg   { width: 14px; height: 14px; }
.learn-more:hover { gap: 14px; }


/* ================================================
   WHY CHOOSE EWIRE — dark green strip
   ================================================ */

.why-section {
  background: var(--green);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.why-item {
  padding: 56px 36px;
  position: relative;
}
/* Thin vertical dividers between items */
.why-item + .why-item::before {
  content: '';
  position: absolute;
  left: 0; top: 24%; bottom: 24%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

/* Line-style orange icon */
.why-icon {
  width: 47px; height: 47px;
  color: var(--orange);
  margin-bottom: 16px;
}

.why-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.why-item p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}


/* ================================================
   PROJECTS SECTION
   ================================================ */

.projects-section {
  background: var(--off-white);
  padding: 100px 0;
}

.projects-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}

.projects-left .section-heading  { margin-bottom: 16px; }
.projects-left p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Asymmetric grid: 1 tall left + 2 stacked right */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.project-card:first-child  { grid-row: 1 / 3; }   /* spans full height */

.project-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover img { transform: scale(1.05); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,47,38,0.88) 0%, transparent 52%);
}

.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.project-card-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.15;
}
.project-card-text span  { font-size: 11px; color: rgba(255,255,255,0.65); }

.project-arrow {
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.project-arrow svg { width: 22px; height: 22px; }
.project-card:hover .project-arrow { color: #fff; transform: translateX(4px); }


/* ================================================
   TESTIMONIALS
   ================================================ */

.testimonials-section {
  background: var(--white);
  padding: 100px 0;
}

/* Header row: label+heading LEFT, arrows RIGHT */
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.testimonials-header-text .section-heading { margin-bottom: 0; }

/* Navigation arrows */
.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.t-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-b);
  transition: border-color .2s, background .2s, color .2s;
}
.t-nav-btn svg  { width: 14px; height: 14px; }
.t-nav-btn:hover { border-color: var(--orange); background: var(--orange); color: #fff; }

/* Testimonial cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.quote-icon            { color: var(--orange); margin-bottom: 18px; }
.quote-icon svg        { width: 28px; }

.testimonial-card blockquote {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  color: var(--text-b);
  line-height: 1.8;
  font-style: normal;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-info strong { display: block; font-size: 13px; font-weight: 600; color: var(--text-h); }
.t-info span   { font-size: 12px; color: var(--text-muted); }


/* ================================================
   CTA BANNER  — 3-column layout with dividers
   ================================================ */

.cta-section {
  background: var(--green-dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

/* Faint bolt behind content */
.cta-section::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px; height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 130'%3E%3Cpolygon points='65,0 18,60 48,60 22,130 92,52 58,52 82,0' fill='white'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: 0.04;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 52px;
  align-items: center;
}

/* Left block: icon + heading */
.cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-bolt-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-bolt-icon svg { width: 28px; height: 28px; color: var(--orange); }

.cta-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  white-space: nowrap;
}


/* Centre text */
.cta-center p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 280px;
}

/* Right: button */
.cta-right {
  padding-left: 52px;
  flex-shrink: 0;
}


/* ================================================
   FOOTER
   ================================================ */

.site-footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-main { padding: 80px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
}

/* Brand column */
.footer-logo img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 28px;
}

.footer-socials { display: flex; gap: 8px; }

.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: border-color .2s, color .2s, background .2s;
}
.social-btn svg   { width: 18px; height: 18px; }
.social-btn:hover { border-color: var(--orange); background: var(--orange); color: var(--white); }

/* Footer link columns */
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

/* Contact list */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-item svg {
  width: 20px; height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item span,
.footer-contact-item a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  transition: color .2s;
}
.footer-contact-item a:hover { color: var(--orange); }

/* Bottom bar */
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.28); transition: color .2s; }
.footer-legal a:hover { color: var(--orange); }


/* ================================================
   FAQ SECTION
   ================================================ */

.faq-section {
  background: var(--white);
  padding: 90px 0 100px;
}

.faq-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left .section-heading { margin-bottom: 18px; }
.faq-left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Accordion items */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-h);
  transition: color .2s;
  user-select: none;
}
.faq-question:hover { color: var(--green); }

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform .3s;
}
.faq-icon svg { width: 22px; height: 22px; }

/* Smooth height animation via CSS grid trick */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
details[open] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer-inner p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  padding-bottom: 22px;
}

/* Rotate icon when open */
details[open] .faq-icon { transform: rotate(45deg); }
details[open] .faq-question { color: var(--green); }


/* ================================================
   RESPONSIVE  — TABLET ≤ 1080px
   ================================================ */

@media (max-width: 1080px) {
  .container              { padding: 0 28px; }
  .hero-heading           { font-size: 58px; }
  .services-grid          { grid-template-columns: repeat(2, 1fr); }
  .faq-inner              { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid            { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-inner              { grid-template-columns: 1fr; gap: 28px; }
  .cta-divider            { display: none; }
  .cta-left               { padding-right: 0; }
  .cta-center             { padding: 0; }
  .cta-right              { padding-left: 0; }
  .cta-left h2            { font-size: 34px; white-space: normal; }
}

@media (max-width: 900px) {
  .intro-row              { grid-template-columns: 1fr; gap: 24px; }
  .projects-inner         { grid-template-columns: 1fr; gap: 48px; }
  .why-grid               { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3)::before { display: none; }
  .why-item:nth-child(even)::before { display: none; }
  .testimonials-grid      { grid-template-columns: 1fr 1fr; }
  .section-heading        { font-size: 36px; }
  .hero-heading           { font-size: 50px; }
}


/* ================================================
   RESPONSIVE  — MOBILE ≤ 660px
   ================================================ */

@media (max-width: 660px) {
  .container              { padding: 0 20px; }

  /* Nav collapse */
  .header-nav             { display: none; }
  .header-phone           { display: none; }
  .hamburger              { display: flex; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    z-index: 800;
  }

  /* Mega menu — hide on mobile, show inline sub-links */
  .mega-menu              { display: none; }
  .has-mega.open .mega-menu { display: none; }
  .nav-item               { flex-direction: column; align-items: flex-start; width: 100%; }

  /* Hero — full width, image visible */
  .hero-panel             { clip-path: none; }
  .hero-content           { padding: 70px 0; }
  .hero-heading           { font-size: 44px; }
  .hero-body              { font-size: 14px; }

  /* Sections */
  .what-we-do-section     { padding: 60px 0; }
  .intro-row              { margin-bottom: 40px; padding-bottom: 40px; }
  .services-grid          { grid-template-columns: 1fr; }

  .why-grid               { grid-template-columns: 1fr; }
  .why-item + .why-item::before { display: none; }

  .projects-section       { padding: 60px 0; }
  .projects-grid          { grid-template-columns: 1fr; grid-template-rows: auto; }
  .project-card           { height: 220px; }
  .project-card:first-child { grid-row: auto; }

  .testimonials-section   { padding: 60px 0; }
  .testimonials-grid      { grid-template-columns: 1fr; }
  .testimonials-header    { flex-direction: column; align-items: flex-start; gap: 20px; }

  .cta-section            { padding: 52px 0; }
  .cta-left h2            { font-size: 30px; }

  .footer-grid            { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar-inner       { flex-direction: column; gap: 10px; text-align: center; }
  .section-heading        { font-size: 30px; }

  /* Commercial page */
  .page-hero-heading      { font-size: 48px; }
  .page-hero-content      { padding: 60px 0; }
  .approach-grid          { grid-template-columns: 1fr 1fr; }
  .approach-item:nth-child(2) { border-right: none; }
  .approach-item:nth-child(3) { border-top: 1px solid var(--border); }
  .approach-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .comm-services-intro    { grid-template-columns: 1fr; gap: 20px; }
  .comm-services-grid     { grid-template-columns: 1fr 1fr; }
  .industries-inner       { grid-template-columns: 1fr; gap: 48px; }
  .comm-preview-section   { grid-template-columns: 1fr; }
  .comm-preview-image     { min-height: 320px; position: relative; }
  .comm-preview-content   { padding: 60px 40px; }
}


/* ================================================
   INNER PAGE — SHARED (used by all service pages)
   ================================================ */

.page-hero {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dark);
}

.page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,47,38,0.94) 0%,
    rgba(0,47,38,0.84) 30%,
    rgba(0,47,38,0.52) 56%,
    rgba(0,47,38,0.14) 78%,
    rgba(0,47,38,0.04) 100%
  );
  z-index: 1;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero-content {
  max-width: 580px;
  padding: 100px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a               { color: rgba(255,255,255,0.45); transition: color .2s; }
.breadcrumb a:hover         { color: var(--orange); }
.breadcrumb .current        { color: rgba(255,255,255,0.75); }

.page-hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.page-hero-heading .accent  { color: var(--orange); display: block; }

.page-hero-body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.page-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ================================================
   COMMERCIAL PAGE — APPROACH SECTION
   ================================================ */

.approach-section {
  background: var(--white);
  padding: 90px 0 100px;
}

.approach-heading {
  font-size: 36px;
  max-width: 560px;
  margin-bottom: 64px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.approach-item {
  padding: 0 44px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.approach-item:first-child { padding-left: 0; }
.approach-item:last-child  { padding-right: 0; border-right: none; }

.approach-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
}
.approach-icon svg { width: 34px; height: 34px; }

.approach-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 10px;
}
.approach-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ================================================
   COMMERCIAL PAGE — SERVICES GRID
   ================================================ */

.comm-services-section {
  background: #f8f7f7;
  padding: 90px 0 100px;
}

.comm-services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 52px;
}
.comm-services-intro .section-heading { margin-bottom: 0; font-size: 40px; }
.comm-services-intro p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
}

.comm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comm-service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow .28s, transform .28s;
}
.comm-service-card:hover { box-shadow: 0 12px 40px rgba(0,47,38,0.10); transform: translateY(-3px); }

.comm-service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.comm-service-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.comm-service-icon svg { width: 26px; height: 26px; }

.comm-service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-h);
  line-height: 1.25;
}

.comm-service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 20px;
}

.comm-service-arrow {
  color: var(--orange);
  display: flex;
  align-items: center;
}
.comm-service-arrow svg { width: 20px; height: 20px; transition: transform .2s; }
.comm-service-card:hover .comm-service-arrow svg { transform: translateX(4px); }


/* ================================================
   COMMERCIAL PAGE — INDUSTRIES SECTION
   ================================================ */

.industries-section {
  background: var(--green-dark);
  padding: 88px 0;
}

.industries-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.industries-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  margin-top: 14px;
}
.industries-left p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 20px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.industry-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: background .2s, border-color .2s;
}
.industry-icon svg { width: 34px; height: 34px; }
.industry-item:hover .industry-icon { background: rgba(247,148,29,0.1); border-color: var(--orange); }

.industry-item span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.3px;
}


/* ================================================
   COMMERCIAL PAGE — PROJECT PREVIEW
   ================================================ */

.comm-preview-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.comm-preview-image {
  position: relative;
  overflow: hidden;
}
.comm-preview-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comm-preview-content {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 80px 72px;
}
.comm-preview-content .section-heading { font-size: 40px; margin-bottom: 18px; }
.comm-preview-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}


/* ================================================
   ABOUT PAGE
   ================================================ */

.about-story-section {
  background: var(--white);
  padding: 100px 0;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-story-text .section-heading { margin-bottom: 20px; }
.about-story-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-story-text p:last-of-type { margin-bottom: 36px; }

/* Stats strip */
.about-stats-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number span { color: var(--orange); }

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}


/* ================================================
   CONTACT PAGE
   ================================================ */

.contact-page-section {
  background: var(--off-white);
  padding: 100px 0;
}

.contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}

.contact-page-title .section-heading { margin-bottom: 10px; }
.contact-page-title p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-h);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-b);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,64,50,0.08);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%236F7C77' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 4 6 8 10 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.65;
}

.contact-info-card {
  background: var(--green);
  border-radius: 12px;
  padding: 48px 40px;
  position: sticky;
  top: 100px;
}

.contact-info-card-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-info-card-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.contact-info-card-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(247,148,29,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.contact-detail-icon svg { width: 20px; height: 20px; }

.contact-detail-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 5px;
}
.contact-detail-text a,
.contact-detail-text span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}
.contact-detail-text a:hover { color: var(--orange); }

.contact-hours {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-hours h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.contact-hours p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
}


/* ================================================
   PROJECTS PAGE
   ================================================ */

.projects-page-section {
  background: var(--off-white);
  padding: 90px 0 100px;
}

.projects-page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.projects-page-intro p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
}

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-full-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-full-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-full-card:hover img { transform: scale(1.05); }

.project-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,47,38,0.88) 0%, transparent 52%);
}

.project-full-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.project-full-text .project-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  background: var(--orange);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.project-full-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.15;
}
.project-full-text span { font-size: 11px; color: rgba(255,255,255,0.65); }

.project-full-arrow {
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.project-full-arrow svg { width: 22px; height: 22px; }
.project-full-card:hover .project-full-arrow { color: #fff; transform: translateX(4px); }


/* ================================================
   RESPONSIVE — new page sections
   ================================================ */

@media (max-width: 1080px) {
  .about-stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)     { border-right: none; }
  .stat-item:nth-child(3)     { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4)     { border-top: 1px solid var(--border); border-right: none; }
  .contact-page-inner         { grid-template-columns: 1fr; }
  .contact-info-card          { position: static; }
  .projects-full-grid         { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-story-inner          { grid-template-columns: 1fr; gap: 48px; }
  .projects-page-intro        { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 660px) {
  .about-stats-grid           { grid-template-columns: 1fr 1fr; }
  .stat-item                  { padding: 40px 24px; }
  .stat-number                { font-size: 48px; }
  .contact-page-inner         { gap: 40px; }
  .form-row                   { grid-template-columns: 1fr; }
  .projects-full-grid         { grid-template-columns: 1fr; }
  .projects-page-intro        { margin-bottom: 40px; padding-bottom: 40px; }
}


/* ════════════════════════════════════════════════════════
   FUTURISTIC FX LAYER — eWire Electrical
   ════════════════════════════════════════════════════════ */

/* ── KEYFRAMES ─────────────────────────────────────────── */

@keyframes fxRevealUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fxGradShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes fxShimmer {
  0%   { left: -80%; }
  100% { left: 180%; }
}

@keyframes fxOrbFloat {
  0%   { transform: translate(0, 0)       scale(1);    }
  33%  { transform: translate(22px, -16px) scale(1.07); }
  66%  { transform: translate(-16px, 12px) scale(0.94); }
  100% { transform: translate(0, 0)       scale(1);    }
}

@keyframes fxGridDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 40px); }
}

@keyframes fxIconPop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.16); }
  100% { transform: scale(1); }
}

@keyframes fxBorderGlow {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50%       { box-shadow: 0 0 20px 2px rgba(247,148,29,.18); }
}

@keyframes fxPulseRing {
  0%   { opacity: .7; transform: scale(1); }
  100% { opacity: 0;  transform: scale(2.2); }
}

/* ── ACCENT TEXT — animated orange-to-gold gradient ─────── */
.hero-heading .accent,
.page-hero-heading .accent {
  background: linear-gradient(135deg, #F7941D 0%, #ffd070 45%, #F7941D 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: fxGradShift 5s ease infinite;
  display: block;
}

/* ── SCROLL REVEAL SYSTEM ───────────────────────────────── */
.fx-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  .7s cubic-bezier(.16, 1, .3, 1),
    transform .7s cubic-bezier(.16, 1, .3, 1);
}
.fx-in.fx-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO — content staggered load animation ────────────── */
.hero-labels {
  animation: fxRevealUp .7s cubic-bezier(.16,1,.3,1) .1s both;
}
.hero-heading {
  animation: fxRevealUp .7s cubic-bezier(.16,1,.3,1) .22s both;
}
.hero-body {
  animation: fxRevealUp .7s cubic-bezier(.16,1,.3,1) .36s both;
}
.hero-ctas {
  animation: fxRevealUp .7s cubic-bezier(.16,1,.3,1) .5s both;
}

/* ── PAGE HERO — staggered load ─────────────────────────── */
.breadcrumb {
  animation: fxRevealUp .65s cubic-bezier(.16,1,.3,1) .1s both;
}
.page-hero-heading {
  animation: fxRevealUp .7s cubic-bezier(.16,1,.3,1) .22s both;
}
.page-hero-body {
  animation: fxRevealUp .65s cubic-bezier(.16,1,.3,1) .36s both;
}
.page-hero-ctas {
  animation: fxRevealUp .65s cubic-bezier(.16,1,.3,1) .5s both;
}

/* ── HERO LABELS — electric badge style ─────────────────── */
.hero-labels span {
  padding: 5px 14px;
  border: 1px solid rgba(247,148,29,.3);
  border-radius: 100px;
  background: rgba(247,148,29,.06);
  backdrop-filter: blur(6px);
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.hero-labels span:hover {
  border-color: rgba(247,148,29,.65);
  background: rgba(247,148,29,.13);
  box-shadow: 0 0 14px rgba(247,148,29,.25);
}

/* ── PAGE HERO — animated accent rule at bottom ─────────── */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(247,148,29,.7) 25%,
    rgba(0,180,100,.6) 50%,
    rgba(247,148,29,.7) 75%,
    transparent 100%);
  background-size: 200% auto;
  animation: fxGradShift 5s ease infinite;
  z-index: 3;
}

/* ── CURSOR GLOW BLOB ───────────────────────────────────── */
.fx-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(247,148,29,.3) 0%, rgba(247,148,29,0) 70%);
  mix-blend-mode: screen;
  transition: width .25s, height .25s, background .25s;
  will-change: transform;
}
.fx-cursor.fx-cursor--active {
  width: 70px; height: 70px;
  background: radial-gradient(circle, rgba(247,148,29,.22) 0%, rgba(0,180,100,.12) 55%, transparent 100%);
}

/* ── BACKGROUND ORBS (why / cta sections) ───────────────── */
.fx-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, rgba(0,220,110,.04) 45%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  animation: fxOrbFloat 9s ease-in-out infinite;
  z-index: 0;
}

/* ── CIRCUIT GRID OVERLAY (cta sections) ────────────────── */
.fx-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,148,29,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,148,29,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  animation: fxGridDrift 10s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV LINKS — electric underline ─────────────────────── */
a.nav-link {
  position: relative;
}
a.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(247,148,29,.7);
  border-radius: 2px;
  transition: left .25s cubic-bezier(.16,1,.3,1), right .25s cubic-bezier(.16,1,.3,1);
}
a.nav-link:hover::after,
a.nav-link.active::after { left: 0; right: 0; }

/* ── MEGA MENU — glass + icon hover ─────────────────────── */
.mega-menu {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.mega-item {
  transition: background .22s, transform .22s;
}
.mega-item:hover {
  background: rgba(0,64,50,.06);
  transform: translateX(4px);
}
.mega-item-icon {
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.mega-item:hover .mega-item-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 18px rgba(247,148,29,.4);
}

/* ── SERVICE CARDS — neon frame on hover ────────────────── */
.service-card {
  border: 1px solid rgba(0,64,50,.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow .4s cubic-bezier(.16,1,.3,1), transform .4s cubic-bezier(.16,1,.3,1), border-color .4s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 55%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(0,180,80,.28);
  box-shadow:
    0 20px 60px rgba(0,47,38,.13),
    0 0 0 1px rgba(0,180,80,.18),
    0 0 45px rgba(0,150,60,.1);
  transform: translateY(-7px);
}
.service-card:hover::before {
  animation: fxShimmer .55s ease forwards;
}
.service-card:hover .service-icon {
  animation: fxIconPop .5s ease forwards;
}

/* ── SERVICE ICONS — shimmer sweep ──────────────────────── */
.service-icon {
  position: relative;
  overflow: hidden;
}
.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.0) 40%, rgba(255,255,255,.25) 50%, rgba(255,255,255,.0) 60%);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover .service-icon::after { opacity: 1; }

/* ── COMMERCIAL SERVICE CARDS — glow ────────────────────── */
.comm-service-card {
  border: 1px solid rgba(0,64,50,.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow .35s, transform .35s, border-color .35s;
}
.comm-service-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
}
.comm-service-card:hover {
  border-color: rgba(0,180,80,.22);
  box-shadow: 0 16px 50px rgba(0,47,38,.11), 0 0 32px rgba(0,150,60,.09);
  transform: translateY(-4px);
}
.comm-service-card:hover::before {
  animation: fxShimmer .5s ease forwards;
}

/* ── BUTTONS — shimmer + glow ───────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
}
.btn:hover::before {
  animation: fxShimmer .5s ease forwards;
}
.btn-primary:hover {
  box-shadow: 0 0 28px rgba(247,148,29,.45), 0 6px 22px rgba(247,148,29,.25);
}
.btn-outline-orange:hover {
  box-shadow: 0 0 28px rgba(247,148,29,.38), 0 6px 18px rgba(247,148,29,.2);
}

/* ── WHY SECTION — icon hover glow ─────────────────────── */
.why-icon {
  transition: filter .35s, transform .35s;
}
.why-item:hover .why-icon {
  filter: drop-shadow(0 0 10px rgba(247,148,29,.6));
  transform: scale(1.1) rotate(-4deg);
}

/* ── APPROACH ITEMS — icon hover ────────────────────────── */
.approach-icon {
  transition: box-shadow .35s, transform .35s;
}
.approach-item:hover .approach-icon {
  box-shadow: 0 0 22px rgba(0,180,80,.35);
  transform: scale(1.08) rotate(-4deg);
}

/* ── TESTIMONIAL CARDS — hover lift ─────────────────────── */
.testimonial-card {
  border: 1px solid transparent;
  transition: box-shadow .35s, transform .35s, border-color .35s;
}
.testimonial-card:hover {
  border-color: rgba(0,180,80,.15);
  box-shadow: 0 16px 50px rgba(0,47,38,.1), 0 0 32px rgba(0,150,60,.07);
  transform: translateY(-4px);
}

/* ── INDUSTRY ITEMS — icon hover ────────────────────────── */
.industry-icon {
  border: 1px solid rgba(247,148,29,.15);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.industry-item:hover .industry-icon {
  border-color: rgba(247,148,29,.45);
  box-shadow: 0 0 18px rgba(247,148,29,.3);
  transform: scale(1.08);
}

/* ── FAQ ITEMS — glow when open ─────────────────────────── */
.faq-item[open] {
  box-shadow: 0 4px 28px rgba(0,64,50,.08);
}
.faq-item {
  transition: box-shadow .3s;
}

/* ── SECTION LABELS — subtle pulse ──────────────────────── */
.section-label {
  position: relative;
  display: inline-block;
}

/* ── FOOTER — animated gradient top border ──────────────── */
.site-footer {
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(247,148,29,.5) 20%,
    rgba(0,180,100,.4) 50%,
    rgba(247,148,29,.5) 80%,
    transparent 100%);
  background-size: 200% auto;
  animation: fxGradShift 7s ease infinite;
}

/* ── PROJECT CARDS — hover glow ─────────────────────────── */
.project-card {
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.project-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,47,38,.2), 0 0 30px rgba(0,150,60,.1);
}

/* ── FORM INPUTS — electric focus ───────────────────────── */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,64,50,.08), 0 0 15px rgba(0,180,100,.12);
}

/* ── FX MOBILE GUARD ─────────────────────────────────────── */
@media (max-width: 768px) {
  .fx-cursor { display: none; }
  .fx-in { transition-duration: .5s; }
}
