/* ===========================
   ROOT & RESET
   Colors derived from Bright Wire Works logo:
   --teal     → Teal/cyan wire  #2EBEEF
   --amber    → Orange coil wire #FFD321
   --crimson  → Red wire        #FF7038
   --steel    → Diamond/conduit #54696E
   --slate-bg → Light steel bg  #4F6272
=========================== */
:root {
  --teal-dark:   #00E4EF;
  --teal-light:  #e0f7f5;
  --teal-xlight: #f0fbfa;

  --amber:       #FFD321;   /* orange-coil wire — replaces --yellow */
  --amber-dark:  #e6b800;
  --amber-light: #fff8e6;

  --crimson:     #FF7038;   /* red wire accent */
  --crimson-light: #fdf2f2;

  --steel:       #54696E;   /* diamond background blue */
  --steel-mid:   #4F6272;   /* conduit mid tone */
  --steel-light: #edf1f5;   /* very light steel bg */

  --dark:        #0f1a26;   /* near-black (logo bg direction) */
  --slate:       #5a6e82;
  --border:      #dce4ec;
  --light:       #f6f9fb;
  --white:       #ffffff;

  /* Wire accent palette for decorative use */
  --wire-teal:   #2EBEEF;
  --wire-amber:  #FFD321;
  --wire-red:    #FF7038;
  --wire-copper: #b87333;   /* copper strands at tips */
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #1e2d3d;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
section { scroll-margin-top: 80px; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 48px;
  background: var(--steel);
  box-shadow: 0 4px 20px rgba(15,26,38,0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Logo lockup with image + wordmark */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 50%;
  padding: 6px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.logo:hover .logo-img {
  transform: scale(1.08);
}
.logo-name {
  font-family: 'DM Serif Text', serif;
  color: white;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0;
}
.logo-name .logo-bright { color: var(--crimson); }
.logo-name .logo-wire { color: var(--teal-dark); }
.logo-name .logo-works { color: var(--amber); }
.logo-text p:not(.logo-name) { font-size: 10px; color: rgba(255, 255, 255, 0.6); margin-top: 2px; letter-spacing: .05em; text-transform: uppercase; font-weight: 600; }

nav { display: flex; align-items: center; }
nav a {
  margin-left: 22px;
  text-decoration: none;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: color .2s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--steel);
  transform: scaleX(0);
  transition: transform .2s;
  border-radius: 2px;
}
nav a:hover { color: var(--amber); }
nav a:hover::after { transform: scaleX(1); }
nav a.active { color: var(--amber); }
nav a.active::after { transform: scaleX(1); }

.btn { display: none !important; }

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.38);
  padding: 10px 24px;
  text-align: center;
  font-size: 12px;
}
footer span { color: var(--steel); }

/* ===========================
   FLOATING WHATSAPP BUTTON
=========================== */
.float-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  animation: floatPop .5s .3s cubic-bezier(.34,1.56,.64,1) both;
}
.float-wa:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 36px rgba(37,211,102,.6);
}
.float-wa svg { width: 24px; height: 24px; fill: white; flex-shrink: 0; }
.float-wa::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: .65; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes floatPop {
  from { opacity: 0; transform: scale(.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* ===========================
   RESPONSIVE NAV
=========================== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: white;
  z-index: 101;
}
.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  /* Keep navbar as a single row on mobile */
  .navbar {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    padding: 8px 16px;
    justify-content: space-between;
    align-items: center;
  }

  /* Tighten logo on mobile */
  .logo-img { height: 40px; width: 40px; padding: 4px; }
  .logo-text { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
  .logo-name { font-size: 17px; white-space: nowrap; }
  .logo-text p:not(.logo-name) { font-size: 8px; white-space: nowrap; margin-top: 2px; }

  /* Mobile Hamburger Menu */
  .mobile-menu-btn { display: block; }
  
  nav {
    position: absolute;
    top: calc(100% + 4px);
    right: 16px;
    left: auto;
    min-width: 180px;
    background: rgba(15, 26, 38, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 6px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15,26,38,0.12);
    display: none; /* hidden by default */
    align-items: stretch;
    overflow: hidden;
  }
  nav.active {
    display: flex;
  }
  nav a {
    margin: 0;
    padding: 12px 22px;
    width: 100%;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }
  nav a:last-child {
    border-bottom: none;
  }
  nav a::after { display: none; }

  footer { padding-bottom: 12px; }
  .service-tabs { display: none; }

  /* Reduce hero top padding on all pages */
  .hero        { padding-top: 48px !important; padding-bottom: 48px !important; }
  .about-hero  { padding-top: 48px !important; padding-bottom: 44px !important; }
  .contact-hero{ padding-top: 48px !important; padding-bottom: 44px !important; }
  .page-hero   { padding-top: 48px !important; padding-bottom: 44px !important; }

  /* Keep WhatsApp floating button at right corner on mobile */
  .float-wa {
    right: 22px;
    transform: none;
  }
  .float-wa:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 36px rgba(37,211,102,.6);
  }

  /* Center Quick Services section on mobile */
  .hero-right {
    width: 100%;
    flex: none;
  }
  .quick-links a {
    display: flex;
    justify-content: center;
  }
  .quick-box {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}



/* -- SHARED COMPONENT STYLES --------------------------- */
.wa-icon { width: 16px; height: 16px; flex-shrink: 0; }

.page-hero {
  background: linear-gradient(135deg, var(--steel) 0%, #2c3d50 60%, #1a2a38 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(46, 190, 239,.06) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(46, 190, 239,.06) 1px,transparent 1px);
  background-size:48px 48px; pointer-events:none;
}

.page-hero::after {
  content:""; position:absolute; width:700px; height:700px;
  background:radial-gradient(circle,rgba(46, 190, 239,.10) 0%,transparent 65%);
  top:-200px; right:-100px; pointer-events:none;
}

.hero-wire-bar {
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--wire-teal),var(--wire-amber),var(--wire-red));
  pointer-events:none;
}

/* Page specific hero paddings */
.hero { padding: 100px 20px 90px; }
.contact-hero, .about-hero, .services-hero { padding: 80px 24px 70px; }


/* ===========================
   SHARED HERO COMPONENTS
=========================== */
.hero-inner { position:relative; z-index:1; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(46,190,239,.14); border:1px solid rgba(46,190,239,.32);
  border-radius:50px; padding:5px 16px;
  font-size:12px; font-weight:600; letter-spacing:.04em;
  color:rgba(255,255,255,.92); margin-bottom:18px;
}

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

/* ===========================
   SHARED CTA BUTTONS (hero level)
=========================== */
.hero-cta { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.hero-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }

.hcta-primary, .ha-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--amber); color:#0f1a26;
  padding:12px 26px; border-radius:9px;
  font-weight:700; font-size:14px; text-decoration:none;
  transition:background .2s, transform .2s;
  box-shadow:0 4px 18px rgba(255,211,33,.40);
}
.hcta-primary:hover, .ha-primary:hover { background:var(--amber-dark); transform:translateY(-1px); }

.hcta-ghost, .ha-secondary {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(46,190,239,.12); border:1.5px solid rgba(46,190,239,.35);
  color:white; padding:12px 26px; border-radius:9px;
  font-weight:600; font-size:14px; text-decoration:none;
  transition:background .2s;
}
.hcta-ghost:hover, .ha-secondary:hover { background:rgba(46,190,239,.24); }

/* ===========================
   SHARED CTA BAND
=========================== */
.cta-band { background:var(--dark); padding:80px 24px; text-align:center; }
.cta-band h2 { font-family:'DM Serif Text',serif; font-size:32px; font-weight:400; color:white; margin-bottom:12px; line-height:1.3; }
.cta-band p { font-size:14.5px; color:rgba(255,255,255,.52); max-width:480px; margin:0 auto 36px; line-height:1.65; }
.cta-band-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.cband-call { display:inline-flex; align-items:center; gap:8px; background:var(--steel); color:white; padding:14px 30px; border-radius:9px; font-weight:700; font-size:14px; text-decoration:none; transition:background .2s, transform .2s; }
.cband-call:hover { background:var(--teal-dark); transform:translateY(-1px); }
.cband-wa { display:inline-flex; align-items:center; gap:8px; background:transparent; border:1.5px solid rgba(255,255,255,.22); color:rgba(255,255,255,.78); padding:14px 30px; border-radius:9px; font-weight:600; font-size:14px; text-decoration:none; transition:border-color .2s, color .2s; }
.cband-wa:hover { border-color:rgba(255,255,255,.48); color:white; }

/* ===========================
   SHARED REVEAL ANIMATION
=========================== */
.reveal { opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ===========================
   SHARED SECTION LABEL
=========================== */
.section-label { font-size:11.5px; font-weight:700; letter-spacing:.1em; color:var(--steel); text-transform:uppercase; margin-bottom:12px; }

/* ===========================
   SHARED FAQ ACCORDION
=========================== */
.faq-list { display:flex; flex-direction:column; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-item:last-child { border-bottom:none; }
.faq-btn { width:100%; background:none; border:none; padding:14px 4px; display:flex; justify-content:space-between; align-items:center; gap:12px; cursor:pointer; font-family:'Poppins',sans-serif; font-size:13px; font-weight:600; color:var(--dark); text-align:left; transition:color .18s; }
.faq-btn:hover { color:var(--steel); }
.faq-btn[aria-expanded="true"] { color:var(--steel); }
.faq-icon { font-size:20px; font-weight:300; color:#94a3b8; flex-shrink:0; line-height:1; transition:transform .25s, color .18s; font-style:normal; }
.faq-btn[aria-expanded="true"] .faq-icon { transform:rotate(45deg); color:var(--steel); }
.faq-answer { padding:0 4px 14px; font-size:13px; color:#475569; line-height:1.65; }
.faq-answer[hidden] { display:none; }

/* ===========================
   ABOUT PAGE — UNIQUE STYLES
=========================== */
.about-hero { text-align:center; }
.about-hero .hero-inner { max-width:860px; margin:0 auto; }
.about-hero h1 { font-family:'DM Serif Text',serif; font-size:48px; font-weight:400; line-height:1.15; margin-bottom:18px; letter-spacing:-.3px; }
.about-hero h1 em { font-style:italic; color:var(--amber); }
.about-hero p { font-size:16px; opacity:.80; max-width:620px; margin:0 auto 36px; line-height:1.7; }

.stats-strip { background:var(--dark); padding:0 24px; }
.stats-inner { max-width:1000px; margin:auto; display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { padding:36px 24px; text-align:center; border-right:1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right:none; }
.stat-num { font-size:36px; font-weight:700; color:var(--steel); line-height:1; margin-bottom:6px; }
.stat-label { font-size:13px; color:rgba(255,255,255,.42); font-weight:500; }

.who-section { max-width:1100px; margin:auto; padding:96px 24px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.who-left h2 { font-family:'DM Serif Text',serif; font-size:34px; font-weight:400; color:var(--dark); line-height:1.3; margin-bottom:18px; }
.who-left p { font-size:14.5px; color:#475569; line-height:1.78; margin-bottom:16px; }
.who-credentials { display:flex; flex-direction:column; gap:12px; margin-top:28px; }
.credential { display:flex; align-items:center; gap:12px; padding:14px 16px; background:var(--light); border:1px solid var(--border); border-radius:12px; transition:border-color .2s, box-shadow .2s; }
.credential:hover { border-color:#00E4EF; box-shadow:0 4px 16px rgba(46,190,239,.10); }
.credential-icon { width:36px; height:36px; border-radius:9px; background:var(--steel-xlight); border:1px solid #b4e8e2; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.credential-icon svg { width:17px; height:17px; }
.credential-text strong { display:block; font-size:13px; font-weight:700; color:var(--dark); }
.credential-text span { font-size:12px; color:var(--slate); }
.who-right { display:flex; flex-direction:column; gap:16px; }
.who-card { background:#fff; border:1px solid var(--border); border-radius:18px; padding:28px 26px; box-shadow:0 4px 18px rgba(15,26,38,.05); transition:box-shadow .25s, transform .25s, border-color .25s; }
.who-card:hover { box-shadow:0 10px 36px rgba(46,190,239,.12); transform:translateY(-3px); border-color:#00E4EF; }
.who-card-icon { font-size:28px; margin-bottom:12px; }
.who-card h4 { font-size:15px; font-weight:700; color:var(--dark); margin-bottom:6px; }
.who-card p { font-size:13px; color:var(--slate); line-height:1.62; }

.mission-section { background:var(--light); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:88px 24px; }
.mission-inner { max-width:900px; margin:auto; text-align:center; }
.mission-inner h2 { font-family:'DM Serif Text',serif; font-size:34px; font-weight:400; color:var(--dark); margin-bottom:18px; line-height:1.3; }
.mission-text { font-size:16px; color:#475569; line-height:1.8; max-width:700px; margin:0 auto 48px; }
.mission-pillars { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; text-align:left; }
.pillar { background:#fff; border:1px solid var(--border); border-radius:16px; padding:28px 24px; box-shadow:0 2px 12px rgba(15,26,38,.04); transition:box-shadow .25s, transform .25s; }
.pillar:hover { box-shadow:0 8px 28px rgba(46,190,239,.12); transform:translateY(-3px); }
.pillar-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.pillar-icon svg { width:20px; height:20px; }
.pi-steel { background:var(--steel-light); border:1px solid #c0cdd8; }
.pi-amber { background:var(--amber-light); border:1px solid #f0c06a; }
.pillar h4 { font-size:15px; font-weight:700; color:var(--dark); margin-bottom:8px; }
.pillar p { font-size:13px; color:var(--slate); line-height:1.62; }

.why-section { max-width:1100px; margin:auto; padding:96px 24px; }
.why-section h2 { font-family:'DM Serif Text',serif; font-size:34px; font-weight:400; color:var(--dark); text-align:center; margin-bottom:8px; line-height:1.3; }
.why-sub { text-align:center; font-size:14px; color:var(--slate); margin-bottom:52px; }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.why-card { background:#fff; border:1px solid var(--border); border-radius:18px; padding:30px 22px; text-align:center; box-shadow:0 2px 12px rgba(15,26,38,.04); transition:box-shadow .25s, transform .25s, border-color .25s; }
.why-card:hover { box-shadow:0 10px 32px rgba(46,190,239,.13); transform:translateY(-4px); border-color:#b4e8e2; }
.why-card-icon { width:52px; height:52px; border-radius:14px; background:var(--steel-xlight); border:1px solid #b4e8e2; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.why-card-icon svg { width:22px; height:22px; }
.why-card h4 { font-size:14.5px; font-weight:700; color:var(--dark); margin-bottom:8px; }
.why-card p { font-size:13px; color:var(--slate); line-height:1.6; }

.areas-section { background:linear-gradient(135deg,var(--steel) 0%,#1a2a38 100%); padding:88px 24px; position:relative; overflow:hidden; }
.areas-section::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(46,190,239,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(46,190,239,.05) 1px,transparent 1px); background-size:48px 48px; pointer-events:none; }
.areas-wire-bar { position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--wire-teal),var(--wire-amber),var(--wire-red)); }
.areas-inner { max-width:1000px; margin:auto; position:relative; z-index:1; }
.areas-inner .section-label { color:rgba(46,190,239,.75); text-align:center; }
.areas-inner h2 { font-family:'DM Serif Text',serif; font-size:34px; font-weight:400; color:white; text-align:center; margin-bottom:8px; }
.areas-sub { text-align:center; font-size:14px; color:rgba(255,255,255,.60); margin-bottom:48px; }
.areas-chips { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.area-chip { display:inline-flex; align-items:center; gap:7px; background:rgba(46,190,239,.12); border:1px solid rgba(46,190,239,.28); border-radius:50px; padding:9px 18px; font-size:13.5px; font-weight:600; color:white; transition:background .2s; }
.area-chip:hover { background:rgba(46,190,239,.28); }
.area-chip::before { content:""; width:6px; height:6px; border-radius:50%; background:var(--steel); flex-shrink:0; }

/* ===========================
   SERVICES PAGE — UNIQUE STYLES
=========================== */
.services-hero { text-align: center; }
.services-hero .page-hero-inner { max-width: 800px; margin: 0 auto; }
.services-hero h1 { font-family:'DM Serif Text',serif; font-size:42px; font-weight:400; line-height:1.15; margin-bottom:14px; letter-spacing:-.3px; }
.services-hero p { font-size:15px; opacity:.80; max-width:520px; margin:0 auto 32px; line-height:1.65; }

.service-tabs { background:#fff; border-bottom:1px solid var(--border); position:sticky; top:66px; z-index:90; overflow-x:auto; box-shadow:0 2px 8px rgba(0,0,0,.04); }
.service-tabs-inner { max-width:1100px; margin:auto; display:flex; padding:0 24px; }
.stab { display:flex; align-items:center; gap:7px; padding:15px 18px; font-size:13px; font-weight:600; color:var(--slate); text-decoration:none; white-space:nowrap; border-bottom:2.5px solid transparent; transition:color .2s, border-color .2s; }
.stab:hover, .stab.active { color:var(--steel); border-bottom-color:var(--steel); }

.services-page { max-width:1100px; margin:auto; padding:72px 24px 90px; display:flex; flex-direction:column; gap:80px; }
.service-block { display:grid; grid-template-columns:1fr 400px; gap:52px; align-items:start; scroll-margin-top:200px; }
.service-block.reverse { grid-template-columns:400px 1fr; }
.service-block.reverse .sb-left { order:2; }
.service-block.reverse .sb-right { order:1; }

.sb-tag { display:inline-flex; align-items:center; gap:6px; background:var(--steel-xlight); border:1px solid #b4e8e2; border-radius:50px; padding:4px 12px; font-size:11.5px; font-weight:600; color:var(--steel-dark); letter-spacing:.03em; margin-bottom:14px; }
.sb-left h2 { font-family:'DM Serif Text',serif; font-size:28px; font-weight:400; color:var(--dark); margin-bottom:8px; line-height:1.3; }
.sb-tagline { font-size:14px; font-weight:600; color:var(--steel); margin-bottom:14px; }
.sb-desc { font-size:14px; color:#475569; line-height:1.72; margin-bottom:24px; }
.sb-what-label { font-size:13px; font-weight:700; color:var(--dark); margin-bottom:12px; }
.sb-list { list-style:none; padding:0; margin:0 0 22px; display:flex; flex-direction:column; gap:9px; }
.sb-list li { display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:#334155; line-height:1.5; }
.sb-list li::before { content:""; display:inline-block; min-width:17px; height:17px; margin-top:1px; border-radius:50%; border:1.8px solid var(--steel); background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232EBEEF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat; flex-shrink:0; }
.sb-meta { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:10px; }
.sb-meta-chip { display:inline-flex; align-items:center; gap:6px; background:var(--light); border:1px solid var(--border); border-radius:8px; padding:6px 12px; font-size:12.5px; font-weight:600; color:#334155; }
.sb-cta-text { font-size:13px; color:#475569; margin-bottom:16px; line-height:1.6; }
.sb-cta-text a { color:var(--steel); font-weight:600; text-decoration:none; }
.sb-cta-text a:hover { text-decoration:underline; }
.sb-actions { display:flex; gap:10px; flex-wrap:wrap; }
.sb-btn-call { display:inline-flex; align-items:center; gap:7px; background:var(--steel); color:white; padding:11px 20px; border-radius:9px; font-weight:700; font-size:13.5px; text-decoration:none; transition:background .2s; }
.sb-btn-call:hover { background:var(--steel-dark); }
.sb-btn-wa { display:inline-flex; align-items:center; gap:7px; background:transparent; border:1.5px solid #16a34a; color:#16a34a; padding:10px 18px; border-radius:9px; font-weight:600; font-size:13.5px; text-decoration:none; transition:background .2s, color .2s; }
.sb-btn-wa:hover { background:#16a34a; color:white; }
.sb-right { background:var(--light); border:1px solid var(--border); border-radius:18px; padding:28px 26px; position:sticky; top:160px; border-top:3px solid var(--steel); }
.sb-right-label { font-size:12px; font-weight:700; letter-spacing:.08em; color:#94a3b8; text-transform:uppercase; margin-bottom:16px; }
.svc-divider { border:none; border-top:1px solid #f1f5f9; margin:0; }
.custom-cta-section { background:linear-gradient(135deg,var(--steel-light) 0%,var(--steel-xlight) 100%); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:60px 24px; text-align:center; }
.custom-cta-section p { font-size:15px; color:var(--slate); margin-bottom:20px; font-weight:500; }
.btn-discuss { display:inline-flex; align-items:center; gap:8px; background:var(--amber); color:#0f1a26; padding:13px 30px; border-radius:9px; text-decoration:none; font-weight:700; font-size:14px; box-shadow:0 4px 18px rgba(255,211,33,.35); transition:background .2s, transform .2s; }
.btn-discuss:hover { background:var(--amber-dark); transform:translateY(-1px); }

/* ===========================
   CONTACT PAGE — UNIQUE STYLES
=========================== */
.contact-hero { text-align:center; }
.contact-hero h1 { font-family:'DM Serif Text',serif; font-size:44px; font-weight:400; line-height:1.15; margin-bottom:14px; letter-spacing:-.3px; }
.contact-hero h1 em { font-style:italic; color:var(--amber); }
.contact-hero p { font-size:15px; opacity:.80; max-width:440px; margin:0 auto; line-height:1.68; }

.contact-page { max-width:1100px; margin:52px auto 80px; padding:0 24px; display:grid; grid-template-columns:310px 1fr; gap:36px; align-items:start; }
.contact-left { display:flex; flex-direction:column; gap:12px; }
.contact-item { background:#fff; border:1px solid var(--border); border-radius:16px; padding:22px 20px; display:flex; align-items:flex-start; gap:14px; box-shadow:0 2px 10px rgba(15,26,38,.04); transition:box-shadow .25s, transform .25s, border-color .25s; }
.contact-item:hover { box-shadow:0 6px 24px rgba(46,190,239,.12); transform:translateX(3px); border-color:#00E4EF; }
.ci-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:20px; }
.ci-steel { background:var(--steel-light); border:1px solid #c0cdd8; }
.ci-amber { background:var(--amber-light); border:1px solid #f0c06a; }
.ci-indigo { background:#eff6ff; border:1px solid #bfdbfe; }
.ci-body { flex:1; min-width:0; }
.ci-sub { font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:#94a3b8; margin-bottom:3px; }
.ci-label { font-size:13.5px; font-weight:700; color:var(--dark); margin-bottom:5px; }
.ci-value { font-size:13.5px; font-weight:600; color:var(--steel); text-decoration:none; word-break:break-all; transition:color .15s; display:block; }
.ci-value:hover { color:var(--teal-dark); text-decoration:underline; }
.ci-value-amber { color:var(--amber); }
.ci-value-amber:hover { color:var(--amber-dark); }
.ci-note { font-size:12px; color:var(--slate); line-height:1.55; margin-top:3px; }
.ci-hours { list-style:none; padding:0; margin:4px 0 0; }
.ci-hours li { font-size:12px; color:var(--slate); line-height:1.8; display:flex; justify-content:space-between; gap:8px; }
.ci-hours li span { color:var(--steel); font-weight:600; }

.contact-right { background:#fff; border:1px solid var(--border); border-radius:20px; padding:44px 44px 36px; box-shadow:0 4px 24px rgba(15,26,38,.06); position:relative; overflow:hidden; }
.contact-right::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--wire-teal),var(--wire-amber),var(--wire-red)); }
.form-eyebrow { display:flex; align-items:center; gap:9px; margin-bottom:4px; }
.form-eyebrow-dot { width:8px; height:8px; border-radius:50%; background:var(--steel); box-shadow:0 0 8px rgba(46,190,239,.5); }
.form-eyebrow span { font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--steel); }
.contact-right h2 { font-family:'DM Serif Text',serif; font-size:26px; font-weight:400; color:var(--dark); margin-bottom:6px; }
.form-desc { font-size:13.5px; color:var(--slate); line-height:1.65; margin-bottom:32px; }

.form-progress { display:flex; align-items:center; gap:10px; margin-bottom:28px; }
.progress-bar { flex:1; height:4px; background:var(--border); border-radius:999px; overflow:hidden; }
.progress-fill { height:100%; background:linear-gradient(90deg,var(--steel),var(--amber)); border-radius:999px; width:0%; transition:width .4s ease; }
.progress-label { font-size:11px; color:#94a3b8; font-weight:500; white-space:nowrap; }

.f-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.f-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.f-group label { font-size:12px; font-weight:700; color:#374151; text-transform:uppercase; letter-spacing:.06em; }
.f-group input,.f-group select,.f-group textarea { width:100%; padding:12px 14px; border:1.5px solid var(--border); border-radius:10px; font-family:'Poppins',sans-serif; font-size:13.5px; color:#1e293b; background:#fdfdfd; outline:none; transition:border-color .2s, box-shadow .2s, background .2s; }
.f-group input:focus,.f-group select:focus,.f-group textarea:focus { border-color:var(--steel); background:#fff; box-shadow:0 0 0 3px rgba(46,190,239,.12); }
.f-group input::placeholder,.f-group textarea::placeholder { color:#c8d2e0; font-size:13px; }
.f-group select { appearance:none; -webkit-appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; background-color:#fdfdfd; padding-right:40px; cursor:pointer; color:#94a3b8; }
.f-group select.chosen { color:#1e293b; }
.f-group select option { background:#fff; color:#1e293b; }
.f-group textarea { resize:vertical; min-height:110px; line-height:1.55; }

.f-actions { display:grid; grid-template-columns:1fr auto; gap:12px; align-items:stretch; margin-top:8px; }
.btn-send { background:linear-gradient(135deg,var(--steel),var(--teal-dark)); color:white; padding:13px 24px; border:none; border-radius:10px; font-family:'Poppins',sans-serif; font-size:14px; font-weight:700; cursor:pointer; transition:opacity .2s, transform .2s, box-shadow .2s; box-shadow:0 4px 18px rgba(46,190,239,.35); display:flex; align-items:center; justify-content:center; gap:8px; }
.btn-send:hover { opacity:.9; transform:translateY(-1px); box-shadow:0 6px 26px rgba(46,190,239,.5); }
.btn-send:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.btn-call-alt { display:flex; align-items:center; justify-content:center; gap:7px; padding:13px 20px; border:1.5px solid var(--border); border-radius:10px; background:#fff; color:#334155; font-family:'Poppins',sans-serif; font-size:13px; font-weight:600; text-decoration:none; white-space:nowrap; transition:border-color .2s, color .2s; }
.btn-call-alt:hover { border-color:var(--steel); color:var(--steel); }
.btn-call-alt svg { width:15px; height:15px; flex-shrink:0; }
.f-note { font-size:11.5px; color:#94a3b8; text-align:center; margin-top:14px; line-height:1.5; }
#msg { font-size:13px; font-weight:600; text-align:center; margin-top:12px; min-height:20px; line-height:1.5; transition:opacity .3s; }

/* ===========================
   RESPONSIVE — ALL PAGES
=========================== */
@media (max-width:960px) {
  .who-section { grid-template-columns:1fr; gap:48px; }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.07); }
  .mission-pillars { grid-template-columns:1fr; }
}
@media (max-width:900px) {
  .service-block,.service-block.reverse { grid-template-columns:1fr; gap:32px; }
  .service-block.reverse .sb-left,.service-block.reverse .sb-right { order:unset; }
  .sb-right { position:static; }
  .page-hero h1 { font-size:30px; }
}
@media (max-width:860px) {
  .contact-page { grid-template-columns:1fr; gap:24px; margin:36px auto 60px; }
  .contact-right { padding:28px 22px 22px; }
}
@media (max-width:640px) {
  .about-hero h1 { font-size:32px; }
  .hero-cta,.cta-band-btns { flex-direction:column; align-items:center; }
  .who-section,.why-section,.mission-section,.areas-section,.cta-band { padding-top:64px; padding-bottom:64px; }
  .services-page { padding:40px 16px 60px; gap:56px; }
  .sb-actions { flex-direction:column; }
  .sb-btn-call,.sb-btn-wa { width:100%; justify-content:center; }
  .contact-hero h1 { font-size:30px; }
  .f-row { grid-template-columns:1fr; }
  .f-actions { grid-template-columns:1fr; }
}
@media (max-width:400px) { .why-grid { grid-template-columns:1fr; } }

/* === HOMEPAGE STYLES === */
/* ── HERO ─────────────────────────────────── */






    /* Wire colour accent bar at top */


    .hero-wrap {
      max-width: 1200px;
      margin: auto;
      display: flex;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }

    .hero-left {
      flex: 1;
      min-width: 300px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(46, 190, 239, .15);
      border: 1px solid rgba(46, 190, 239, .35);
      border-radius: 50px;
      padding: 7px 20px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: .03em;
      color: rgba(255, 255, 255, .95);
      margin-bottom: 18px;
      animation: fadeUp .6s ease both;
    }

    .hero-left h1 {
      font-size: clamp(34px, 4.5vw, 52px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -.5px;
      margin-bottom: 16px;
      animation: fadeUp .7s .1s ease both;
    }

    .hero-left h1 span {
      color: var(--amber);
    }

    .hero-left .sub {
      font-weight: 600;
      font-size: 15px;
      margin-bottom: 6px;
      opacity: .88;
      animation: fadeUp .7s .15s ease both;
    }

    .hero-left p.body {
      opacity: .72;
      font-size: 14px;
      margin-bottom: 0;
      line-height: 1.7;
      animation: fadeUp .7s .2s ease both;
    }

    .hero-btns {
      margin-top: 32px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeUp .7s .25s ease both;
    }

    /* PRIMARY = amber coil colour */
    .btn-main {
      background: var(--amber);
      color: #0f1a26;
      padding: 13px 26px;
      border-radius: 9px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      transition: background .2s, transform .2s;
      box-shadow: 0 4px 20px rgba(255, 211, 33, .4);
    }

    .btn-main:hover {
      background: var(--amber-dark);
      transform: translateY(-1px);
    }

    .btn-outline {
      border: 2px solid rgba(255, 255, 255, .40);
      color: white;
      padding: 11px 24px;
      border-radius: 9px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: border-color .2s, background .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-outline:hover {
      border-color: var(--steel);
      background: rgba(46, 190, 239, .12);
    }

    .hero-trust {
      display: flex;
      gap: 20px;
      margin-top: 28px;
      flex-wrap: wrap;
      animation: fadeUp .7s .3s ease both;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .09);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 50px;
      padding: 5px 13px;
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, .82);
    }

    /* RIGHT QUICK-LINKS CARD */
    .hero-right {
      flex: 0 0 340px;
      min-width: 280px;
      background: rgba(255, 255, 255, .09);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 28px;
      border-radius: 18px;
      border: 1px solid rgba(46, 190, 239, .25);
      box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
      animation: fadeUp .7s .2s ease both;
    }

    .hero-right h3 {
      text-align: center;
      margin-bottom: 16px;
      font-size: 14.5px;
      font-weight: 700;
      letter-spacing: .02em;
      opacity: .88;
      color: white;
    }

    .quick-links {
      display: grid;
      gap: 9px;
    }

    .quick-links a {
      text-decoration: none;
      color: white;
    }

    .quick-box {
      background: rgba(255, 255, 255, .10);
      padding: 11px 14px;
      border-radius: 9px;
      font-weight: 600;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background .2s, transform .2s;
      border: 1px solid rgba(46, 190, 239, .15);
    }

    .quick-box:hover {
      background: rgba(46, 190, 239, .22);
      transform: translateX(5px);
      border-color: rgba(46, 190, 239, .45);
    }

    .quick-box .qb-arrow {
      margin-left: auto;
      opacity: .5;
      font-size: 16px;
      flex-shrink: 0;
    }

    .qb-emoji {
      font-size: 16px;
      flex-shrink: 0;
    }

    .qb-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .qb-text strong {
      font-size: 13px;
      font-weight: 600;
      line-height: 1.2;
    }

    .qb-text small {
      font-size: 10.5px;
      font-weight: 400;
      opacity: .72;
      line-height: 1.3;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── STATS STRIP ─────────────────────────── */
    .stats-strip {
      background: var(--dark);
      padding: 0 24px;
    }

    .stats-inner {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-item {
      padding: 36px 24px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, .07);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-size: 36px;
      font-weight: 700;
      color: var(--steel);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 13px;
      color: rgba(255, 255, 255, .42);
      font-weight: 500;
    }

    /* ── SERVICES SECTION ────────────────────── */
    .services-section {
      max-width: 1200px;
      margin: auto;
      padding: 88px 24px;
    }

    .section-eyebrow {
      text-align: center;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--steel);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-title {
      text-align: center;
      font-family: 'DM Serif Text', serif;
      font-size: 34px;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 8px;
      line-height: 1.25;
    }

    .section-sub {
      text-align: center;
      color: #94a3b8;
      font-size: 14px;
      margin-bottom: 52px;
    }

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

    .service-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 30px 26px 24px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 2px 12px rgba(15, 26, 38, .05);
      transition: box-shadow .3s, transform .3s, border-color .3s;
      text-decoration: none;
      color: inherit;
    }

    .service-card:hover {
      box-shadow: 0 12px 36px rgba(46, 190, 239, .14);
      transform: translateY(-4px);
      border-color: #00E4EF;
    }

    .sc-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--steel-xlight);
      border: 1px solid #b4e8e2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 18px;
      transition: transform .25s;
    }

    .service-card:hover .sc-icon {
      transform: scale(1.08) rotate(-3deg);
    }

    .sc-title {
      font-size: 15.5px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .sc-desc {
      font-size: 13px;
      color: var(--slate);
      line-height: 1.62;
      flex: 1;
    }

    .sc-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 18px;
      font-size: 13px;
      font-weight: 700;
      color: var(--steel);
      transition: gap .2s;
    }

    .service-card:hover .sc-link {
      gap: 8px;
    }

    /* ── WIRING SECTION ──────────────────────── */
    .wiring-section {
      background: var(--light);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 88px 20px;
    }

    .wiring-wrap {
      max-width: 1200px;
      margin: auto;
    }

    .wiring-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
    }

    .wiring-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 30px 28px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 2px 14px rgba(15, 26, 38, .05);
      transition: box-shadow .3s, transform .3s;
    }

    .wiring-card:hover {
      box-shadow: 0 12px 36px rgba(15, 26, 38, .10);
      transform: translateY(-3px);
    }

    .wiring-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--steel-xlight);
      border: 1px solid #b4e8e2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin: 0 auto 18px;
    }

    .wiring-card h3 {
      text-align: center;
      font-size: 19px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .card-tagline {
      text-align: center;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--steel);
      margin-bottom: 14px;
    }

    .card-sub {
      text-align: center;
      color: var(--slate);
      font-size: 13px;
      line-height: 1.65;
      margin-bottom: 22px;
    }

    .included-label {
      font-weight: 700;
      font-size: 13px;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .wiring-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 22px;
    }

    .wiring-card ul li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 13px;
      color: #334155;
      padding: 4px 0;
      line-height: 1.5;
    }

    .wiring-card ul li::before {
      content: "";
      display: inline-block;
      min-width: 16px;
      height: 16px;
      margin-top: 2px;
      border-radius: 50%;
      border: 1.8px solid var(--steel);
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232EBEEF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat;
    }

    .card-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 0 0 20px;
    }

    .card-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: auto;
    }

    .card-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 11px 12px;
      border-radius: 9px;
      font-weight: 600;
      font-size: 13px;
      text-decoration: none;
      transition: all .2s;
    }

    .card-btn-call {
      border: 1.5px solid var(--steel);
      color: var(--steel);
      background: transparent;
    }

    .card-btn-call:hover {
      background: var(--steel);
      color: white;
    }

    .card-btn-wa {
      border: 1.5px solid #16a34a;
      color: #16a34a;
      background: transparent;
    }

    .card-btn-wa:hover {
      background: #16a34a;
      color: white;
    }

    /* ── CARD FAQ ────────────────────────────── */
    .card-faq {
      margin-top: 20px;
      border-top: 1px solid #e2e8f0;
      padding-top: 16px;
    }

    .card-faq-label {
      font-size: 12px;
      font-weight: 700;
      color: #94a3b8;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .card-faq .faq-item {
      border-bottom: 1px solid #f1f5f9;
    }

    .card-faq .faq-item:last-child {
      border-bottom: none;
    }

    .card-faq .faq-btn {
      width: 100%;
      background: none;
      border: none;
      padding: 11px 2px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--dark);
      text-align: left;
      transition: color .18s;
    }

    .card-faq .faq-btn:hover {
      color: var(--steel);
    }

    .card-faq .faq-btn[aria-expanded="true"] {
      color: var(--steel);
    }

    .card-faq .faq-icon {
      font-size: 18px;
      font-weight: 300;
      color: #94a3b8;
      flex-shrink: 0;
      line-height: 1;
      transition: transform .25s, color .18s;
      font-style: normal;
    }

    .card-faq .faq-btn[aria-expanded="true"] .faq-icon {
      transform: rotate(45deg);
      color: var(--steel);
    }

    .card-faq .faq-answer {
      padding: 0 2px 12px;
      font-size: 12.5px;
      color: #475569;
      line-height: 1.6;
    }

    .card-faq .faq-answer[hidden] {
      display: none;
    }

    /* ── CUSTOM SOLUTION CTA ─────────────────── */
    .custom-cta-section {
      background: linear-gradient(135deg, var(--steel-light) 0%, var(--steel-xlight) 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 60px 24px;
      text-align: center;
    }

    .custom-cta-section p {
      font-size: 15px;
      color: var(--slate);
      margin-bottom: 20px;
      font-weight: 500;
    }

    .custom-cta-section .btn-discuss {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--amber);
      color: #0f1a26;
      padding: 13px 30px;
      border-radius: 9px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 4px 20px rgba(255, 211, 33, .35);
      transition: background .2s, transform .2s, box-shadow .2s;
    }

    .custom-cta-section .btn-discuss:hover {
      background: var(--amber-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(255, 211, 33, .45);
    }

    /* ── WHY CHOOSE ──────────────────────────── */
    .why-section {
      padding: 88px 20px;
      background: #fff;
    }

    .why-wrap {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 64px;
      align-items: start;
    }

    .why-left h2 {
      font-family: 'DM Serif Text', serif;
      font-size: 34px;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .why-intro {
      color: var(--slate);
      font-size: 13.5px;
      line-height: 1.75;
      margin-bottom: 30px;
    }

    .why-points {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 32px;
    }

    .why-point {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .why-point-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--steel-xlight);
      border: 1px solid #b4e8e2;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .why-point-icon svg {
      width: 18px;
      height: 18px;
    }

    .why-point strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 2px;
    }

    .why-point p {
      font-size: 13px;
      color: var(--slate);
      line-height: 1.55;
      margin: 0;
    }

    .why-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .why-btn-call {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--steel);
      color: white;
      padding: 12px 22px;
      border-radius: 9px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      transition: background .2s;
    }

    .why-btn-call:hover {
      background: var(--teal-dark);
    }

    .why-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid var(--border);
      color: var(--dark);
      padding: 12px 22px;
      border-radius: 9px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: .2s;
    }

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

    .why-right {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .areas-card {
      background: linear-gradient(135deg, var(--steel) 0%, #2c3d50 100%);
      border-radius: 18px;
      padding: 28px 30px 26px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .areas-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(46, 190, 239, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 190, 239, .06) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }

    /* Wire stripe accent on areas card */
    .areas-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--wire-teal), var(--wire-amber), var(--wire-red));
    }

    .areas-card h3 {
      font-size: 15.5px;
      font-weight: 700;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, .18);
      position: relative;
      z-index: 1;
    }

    .areas-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 24px;
      position: relative;
      z-index: 1;
    }

    .areas-grid ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .areas-grid ul li {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .85);
      padding: 5px 0;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .areas-grid ul li::before {
      content: "•";
      color: var(--steel);
      font-size: 16px;
      line-height: 1;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .stat-box {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px 10px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      background: #fff;
      transition: box-shadow .25s, transform .25s;
    }

    .stat-box:hover {
      box-shadow: 0 4px 18px rgba(46, 190, 239, .14);
      transform: translateY(-2px);
    }

    .stat-box svg {
      width: 26px;
      height: 26px;
      margin-bottom: 4px;
    }

    .stat-box .stat-num {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1;
    }

    .stat-box .stat-label {
      font-size: 11px;
      color: var(--slate);
      font-weight: 500;
      line-height: 1.3;
    }

    /* ── CTA STRIP ───────────────────────────── */
    .cta-strip {
      background: linear-gradient(135deg, var(--steel) 0%, #1a2a38 100%);
      color: white;
      padding: 72px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-strip::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(46, 190, 239, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 190, 239, .05) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }

    .cta-strip-wire-bar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--wire-teal), var(--wire-amber), var(--wire-red));
    }

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

    .cta-strip h2 {
      font-family: 'DM Serif Text', serif;
      font-size: 34px;
      font-weight: 400;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .cta-strip p {
      font-size: 15px;
      opacity: .76;
      max-width: 480px;
      margin: 0 auto 36px;
      line-height: 1.65;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 52px;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all .2s;
    }

    .cta-call {
      background: var(--amber);
      color: #0f1a26;
      box-shadow: 0 4px 18px rgba(255, 211, 33, .4);
    }

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

    .cta-whatsapp {
      background: rgba(34, 197, 94, .18);
      color: white;
      border: 1.5px solid rgba(34, 197, 94, .4);
    }

    .cta-whatsapp:hover {
      background: rgba(34, 197, 94, .32);
    }

    .cta-services {
      background: transparent;
      color: rgba(255, 255, 255, .78);
      border: 1.5px solid rgba(255, 255, 255, .25);
    }

    .cta-services:hover {
      background: rgba(255, 255, 255, .1);
      color: white;
    }

    .badge-section {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      max-width: 820px;
      margin: 0 auto;
    }

    .badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      padding: 0 40px;
      background: transparent;
      border: none;
      box-shadow: none;
    }

    .badge+.badge {
      border-left: 1px solid rgba(255, 255, 255, .18);
    }

    .badge-svg {
      width: 32px;
      height: 32px;
      margin-bottom: 4px;
    }

    .badge h4 {
      color: rgba(255, 255, 255, .75);
      font-size: 13px;
      font-weight: 500;
    }

    /* WhatsApp SVG icon */


    /* ── REVEAL ──────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 960px) {
      .wiring-grid {
        grid-template-columns: 1fr;
      }

      .why-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
      }
    }

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

      .hero-left {
        text-align: center;
      }
      .hero-left h1 {
        font-size: 30px;
      }
      .hero-trust {
        justify-content: center;
      }

      .hero-btns {
        flex-direction: column;
        align-items: center;
      }

      .badge-section {
        gap: 24px;
      }

      .badge {
        padding: 0 18px;
      }

      .badge+.badge {
        border-left: none;
      }

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

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .hero-wrap {
        justify-content: center;
      }

      .hero-right {
        flex: 0 0 100%;
        max-width: 480px;
        margin: 0 auto;
      }
    }
