/* ============================================
   BILLINGS MT ELECTRICIANS — SHARED STYLESHEET
   electricianmontana.com
   Font: Poppins
   Colors: Navy #1C2B4A | Orange #E8620A | White #FFFFFF
   ============================================ */

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

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: #E8620A; }
a:hover { color: #C4500A; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --navy: #1C2B4A;
  --navy-dark: #152238;
  --navy-light: #243560;
  --orange: #E8620A;
  --orange-dark: #C4500A;
  --orange-light: #FF7A1A;
  --orange-bg: #FFF0E8;
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --light-gray: #EEEEEE;
  --mid-gray: #888888;
  --dark-gray: #444444;
  --text: #1a1a1a;
  --text-light: #555555;
  --text-muted: #888888;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: all 0.2s ease;
}

/* ── CONTAINER ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }
p { color: var(--text-light); line-height: 1.8; }

/* ── SECTION LABELS ── */
.sec-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.sec-title { color: var(--navy); margin-bottom: 12px; }
.sec-title span { color: var(--orange); }
.sec-sub { font-size: 15px; color: var(--text-muted); max-width: 580px; line-height: 1.8; margin-bottom: 40px; }
.sec-sub-center { text-align: center; margin-left: auto; margin-right: auto; }

.orange-line { width: 50px; height: 4px; background: var(--orange); margin-bottom: 20px; border-radius: 2px; }
.orange-line-center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; border: none; cursor: pointer; border-radius: var(--radius-md); transition: var(--transition); text-decoration: none; white-space: nowrap; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-orange { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--off-white); color: var(--orange-dark); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy-dark);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #9AABC2;
}
.topbar-left i { color: var(--orange); font-size: 11px; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #9AABC2;
  text-decoration: none;
  transition: var(--transition);
}
.topbar-link:hover { color: var(--orange); }
.topbar-link i { color: var(--orange); font-size: 11px; }
.topbar-link strong { color: var(--white); font-weight: 600; }

/* ── NAVIGATION ── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.nav-logo-text span { font-size: 10px; font-weight: 600; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--orange); background: var(--orange-bg); }
.nav-link.active { color: var(--orange); }
.nav-link i { font-size: 10px; transition: var(--transition); }
.nav-item:hover .nav-link i { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { color: var(--orange); background: var(--orange-bg); }
.dropdown-item i { color: var(--orange); font-size: 14px; width: 18px; }

/* NAV CTA */
.nav-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone { text-align: right; }
.nav-phone span { display: block; font-size: 10px; color: var(--text-muted); font-weight: 500; }
.nav-phone strong { display: block; font-size: 16px; color: var(--navy); font-weight: 800; }

/* MOBILE MENU */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* ── EMERGENCY BANNER ── */
.emergency-banner {
  background: var(--orange);
  padding: 12px 0;
  text-align: center;
}
.emergency-banner p {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.emergency-banner a { color: var(--white); font-weight: 800; text-decoration: underline; }
.emergency-banner i { font-size: 14px; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,43,74,0.97) 45%, rgba(28,43,74,0.75) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,98,10,0.12);
  border: 1px solid rgba(232,98,10,0.3);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero-sub { font-size: 15px; color: #8EA3BC; line-height: 1.8; margin-bottom: 28px; max-width: 540px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: #ccc;
  font-weight: 500;
}
.trust-pill i { color: var(--orange); font-size: 11px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-rating { display: flex; align-items: center; gap: 10px; }
.stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; }
.hero-rating p { font-size: 12px; color: #8EA3BC; margin: 0; }
.hero-rating p strong { color: var(--white); }

/* HERO CARD */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-card-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.hero-card-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.hero-card-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
  text-decoration: none;
}
.hero-card-phone i { font-size: 22px; }
.hero-card-avail { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.hero-card-list { margin-bottom: 24px; }
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 13px;
  color: var(--text-light);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list li i { color: var(--orange); font-size: 12px; width: 14px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 0;
}
.trust-bar-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px; }
.tb-item { display: flex; align-items: center; gap: 12px; }
.tb-icon { width: 40px; height: 40px; background: var(--orange-bg); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tb-icon i { color: var(--orange); font-size: 16px; }
.tb-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.tb-text span { font-size: 11px; color: var(--text-muted); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-orange { background: var(--orange); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scard {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-top: 3px solid var(--orange);
  transition: var(--transition);
}
.scard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--orange); }
.scard-icon { width: 52px; height: 52px; background: var(--orange-bg); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.scard-icon i { color: var(--orange); font-size: 22px; }
.scard h3 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.scard p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.scard-link { font-size: 13px; font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; }
.scard-link i { font-size: 11px; transition: var(--transition); }
.scard:hover .scard-link i { transform: translateX(4px); }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img { background: var(--navy); border-radius: var(--radius-lg); overflow: hidden; position: relative; min-height: 420px; }
.why-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.why-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,43,74,0.9) 0%, transparent 60%); }
.why-img-badge { position: absolute; bottom: 24px; left: 24px; background: var(--orange); color: var(--white); padding: 12px 18px; border-radius: var(--radius-md); }
.why-img-badge strong { display: block; font-size: 26px; font-weight: 800; line-height: 1; }
.why-img-badge span { font-size: 12px; font-weight: 500; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon { width: 48px; height: 48px; background: var(--orange-bg); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-point-icon i { color: var(--orange); font-size: 20px; }
.why-point h3 { font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.why-point p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 16px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 40px; font-weight: 800; color: var(--orange); display: block; margin-bottom: 6px; }
.stat p { font-size: 13px; color: #8EA3BC; font-weight: 500; margin: 0; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rcard { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 28px; }
.rcard-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.rcard-text { font-size: 14px; color: var(--text-light); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.rcard-author { font-size: 14px; font-weight: 700; color: var(--navy); }
.rcard-loc { font-size: 12px; color: var(--orange); margin-top: 3px; }

/* ── AREAS ── */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.acard { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); display: block; padding: 0; }
.acard:hover { border-color: var(--orange); box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-2px); background: var(--white); }
.acard-img { height: 160px; overflow: hidden; aspect-ratio: 5 / 2; }
.acard-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.acard:hover .acard-img img { transform: scale(1.05); }
.acard-body { padding: 16px 18px; }
.acard-body h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.acard-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }


/* ── CTA BANNER ── */
.cta-banner { padding: 56px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 15px; margin: 0; max-width: 560px; }
.cta-banner-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── PROCESS ── */
.process-grid { display: flex; flex-direction: column; gap: 28px; }
.process-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: start; }
.process-num { width: 80px; height: 80px; background: var(--off-white); border: 2px solid var(--orange); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; color: var(--orange); flex-shrink: 0; }
.process-content h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; margin-top: 20px; }
.process-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── TABLES ── */
.data-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.data-table thead tr { background: var(--navy); }
.data-table thead th { padding: 16px 20px; text-align: left; font-size: 14px; font-weight: 600; color: var(--white); }
.data-table tbody tr { border-bottom: 1px solid var(--light-gray); transition: background 0.15s; }
.data-table tbody tr:hover { background: var(--off-white); }
.data-table td { padding: 15px 20px; color: var(--text-light); vertical-align: middle; }
.data-table td:first-child { color: var(--text); font-weight: 500; }
.data-table td:last-child { color: var(--orange); font-weight: 700; }
.data-table td i { color: var(--orange); margin-right: 8px; font-size: 13px; }
.data-table tr.highlight-row { background: rgba(232,98,10,0.05); }
.data-table tr.highlight-row td:last-child { color: #2E7D32; }

/* ── FAQS ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question i { color: var(--orange); flex-shrink: 0; transition: transform 0.25s; font-size: 13px; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { font-size: 14px; color: var(--text-muted); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s ease; padding: 0 22px; }
.faq-answer.open { max-height: 400px; padding: 0 22px 18px; }
/* ── FORMS ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  color: var(--text);
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-full { grid-column: 1 / -1; }

/* ── CONTACT INFO ── */
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon { width: 48px; height: 48px; background: var(--orange-bg); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { color: var(--orange); font-size: 18px; }
.contact-label { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; display: block; }
.contact-value { font-size: 15px; color: var(--navy); font-weight: 600; }
.contact-value a { color: var(--navy); }
.contact-value a:hover { color: var(--orange); }

/* ── AI OVERVIEW BOX ── */
.ai-overview {
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  padding: 28px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 48px;
}
.ai-overview-label { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.ai-overview p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin: 0; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 14px 0; background: var(--off-white); border-bottom: 1px solid var(--light-gray); }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb-list li a { color: var(--orange); text-decoration: none; }
.breadcrumb-list li a:hover { text-decoration: underline; }
.breadcrumb-list li i { font-size: 10px; color: var(--text-muted); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy); padding: 56px 0; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.page-hero p { color: #8EA3BC; font-size: 15px; max-width: 560px; margin: 0 auto; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.footer-brand-logo img { height: 44px; width: auto; }
.footer-brand-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--white); }
.footer-brand-text span { font-size: 10px; font-weight: 600; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; }
.footer-desc { font-size: 13px; color: #8EA3BC; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); }
.social-btn:hover { background: var(--orange); }
.social-btn i { color: #9AABC2; font-size: 14px; }
.social-btn:hover i { color: var(--white); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: #8EA3BC; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-col ul li a i { font-size: 10px; color: var(--orange); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: #8EA3BC; margin: 0; }
.footer-bottom span { color: var(--orange); }

/* ── STICKY CALL BUTTON (mobile) ── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,98,10,0.4);
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

/* ── BADGES ── */
.badge { display: inline-block; padding: 4px 12px; font-size: 11px; font-weight: 700; border-radius: var(--radius-sm); letter-spacing: 1px; text-transform: uppercase; }
.badge-orange { background: var(--orange); color: var(--white); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-light { background: var(--orange-bg); color: var(--orange); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .sticky-call { display: flex; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 8px; }
  .hero-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── MOBILE NAV OPEN ── */
.nav-menu.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 16px 24px;
  gap: 4px;
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.nav-menu.open .dropdown { display: none; }
