/* =========================================================
   Energized Solutions — Site Styles
   Brand: Navy (#0d3856) + Gold (#f5b800) inspired by van logo
   ========================================================= */

:root {
  --navy: #0d3856;
  --navy-dark: #082640;
  --gold: #f5b800;
  --gold-dark: #d9a200;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --text: #1a2733;
  --muted: #5a6b7a;
  --border: #e4e9ef;
  --shadow: 0 4px 20px rgba(13, 56, 86, 0.08);
  --radius: 10px;
  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-dark); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }
section.tight { padding: 48px 0; }

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
p  { color: var(--text); margin-bottom: 14px; }
p.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Top trust bar ---------- */
.trust-bar {
  background: var(--navy-dark);
  color: #d8e3ed;
  font-size: 0.85rem;
  padding: 8px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-bar a { color: var(--gold); font-weight: 600; }
.trust-bar a:hover { color: #ffd24d; }

/* ---------- Header ---------- */
header.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.25rem;
}
.logo .bolt {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}
nav.primary { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
nav.primary a {
  padding: 8px 14px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
}
nav.primary a:hover { background: var(--bg-soft); }
nav.primary a.active { color: var(--gold-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); color: var(--navy); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(245, 184, 0, 0.35); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-dark); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 12px 24px; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--gold);
  opacity: 0.08;
  border-radius: 50%;
}
.hero .container { position: relative; }
.hero h1 { color: #fff; max-width: 780px; }
.hero .accent { color: var(--gold); }
.hero p.lead { color: #d8e3ed; max-width: 640px; font-size: 1.2rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-badges {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 40px;
  color: #d8e3ed;
  font-size: 0.95rem;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 6px; }
.hero-badges span::before { content: "✓"; color: var(--gold); font-weight: 900; }

/* ---------- Page header (non-home) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.page-header h1 { color: #fff; }
.page-header p { color: #d8e3ed; font-size: 1.15rem; max-width: 640px; margin: 0 auto; }

/* ---------- Sections ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- Service grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d2dbe5; }
.card .icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.97rem; margin-bottom: 0; }

/* ---------- Two-column (why us) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

.checklist { list-style: none; padding: 0; margin: 18px 0 28px; }
.checklist li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 900;
  position: absolute;
  left: 0; top: 8px;
  width: 22px; height: 22px;
  background: rgba(245, 184, 0, 0.15);
  border-radius: 50%;
  text-align: center;
  font-size: 0.85rem;
  line-height: 22px;
}

.image-frame {
  background: var(--bg-soft);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ---------- Service detail blocks ---------- */
.service-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.service-block h3 { color: var(--navy); display: flex; align-items: center; gap: 10px; }
.service-block h3::before {
  content: "⚡";
  color: var(--gold);
  background: var(--navy);
  width: 32px; height: 32px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.service-block ul { list-style: none; padding: 0; margin-top: 12px; }
.service-block ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text);
}
.service-block ul li::before {
  content: "•";
  color: var(--gold-dark);
  position: absolute; left: 8px;
  font-weight: 900;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 56px 0;
}
.cta-banner h2 { color: var(--navy); margin-bottom: 8px; }
.cta-banner p { color: var(--navy-dark); margin-bottom: 24px; font-size: 1.1rem; }
.cta-banner .btn-secondary { background: var(--navy); }

/* ---------- Contact cards ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.contact-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
}
.contact-card .icon { font-size: 2rem; color: var(--gold-dark); margin-bottom: 12px; display: block; }
.contact-card h3 { margin-bottom: 10px; }
.contact-card a { color: var(--navy); font-weight: 700; font-size: 1.1rem; }
.contact-card a:hover { color: var(--gold-dark); }
.contact-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-dark);
  color: #c5d1dd;
  padding: 56px 0 24px;
}
footer.site-footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) { footer.site-footer .container { grid-template-columns: 1fr; gap: 28px; } }
footer.site-footer h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
footer.site-footer a { color: #c5d1dd; display: block; padding: 4px 0; }
footer.site-footer a:hover { color: var(--gold); }
footer.site-footer .brand { color: #fff; font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
footer.site-footer .small { font-size: 0.85rem; color: #8597a8; }
.copyright {
  border-top: 1px solid #1a3a55;
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #8597a8;
}

/* ---------- Mobile nav tweak ---------- */
@media (max-width: 640px) {
  nav.primary a { padding: 6px 10px; font-size: 0.95rem; }
  .hero { padding: 64px 0; }
  section { padding: 56px 0; }
  .trust-bar { font-size: 0.78rem; }
}
