.elementor-kit-7{--e-global-color-primary:#C4A35A;--e-global-color-secondary:#B3913D;--e-global-color-text:#6B6B6B;--e-global-color-accent:#F5EDD8;--e-global-color-d74b2e1:#111111;--e-global-color-5f7b852:#F4F4F2;--e-global-typography-primary-font-family:"Plus Jakarta Sans";--e-global-typography-text-font-family:"Plus Jakarta Sans";}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ════════════════════════════════════════════════════════════
   CapitalVolt Electrical — Stylesheet
   For use with Elementor | capitalvolt.co.uk
   ════════════════════════════════════════════════════════════ */

/* ── ROOT VARIABLES ───────────────────────────────────────────── */
:root {
  --gold: #C4A35A;
  --gold-light: #F5EDD8;
  --gold-hover: #B3913D;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --light-bg: #F4F4F2;
  --dark-bg: #111111;
  --text-grey: #6B6B6B;
  --border: #E3E3E0;
  --max-w: 1200px;
  --section-py: 88px;
}

/* ── RESET & BASE ──────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════════════════════════
   CONTAINER & LAYOUT
   ════════════════════════════════════════════════════════════ */

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

.section-full-width {
  width: 100%;
}

.section-padding-lg {
  padding: var(--section-py) 0;
}

.section-padding-md {
  padding: 56px 0;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 72px;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */

.btn-quote {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.01em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-quote:hover {
  background: var(--gold-hover);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-white {
  background: var(--white);
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY & HEADINGS
   ════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}

h1 { font-size: 48px; line-height: 1.12; font-weight: 800; }
h2 { font-size: 32px; line-height: 1.25; font-weight: 800; }
h3 { font-size: 17px; font-weight: 700; }
h4 { font-size: 15px; font-weight: 700; }

.text-lg { font-size: 17px; }
.text-base { font-size: 16px; }
.text-sm { font-size: 14px; }
.text-xs { font-size: 13px; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-regular { font-weight: 400; }

.text-gold { color: var(--gold); }
.text-grey { color: var(--text-grey); }
.text-white { color: var(--white); }
.text-black { color: var(--black); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ════════════════════════════════════════════════════════════
   HEADINGS & UNDERLINES
   ════════════════════════════════════════════════════════════ */

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto;
}

.gold-underline {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════ */

.hero {
  padding: 72px 0 80px;
  background: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-grey);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.trust-badge {
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}

.hero-contact {
  font-size: 13px;
  color: var(--text-grey);
}

.hero-contact strong {
  display: block;
  font-size: 16px;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--light-bg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ════════════════════════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════════════════════════ */

.services {
  padding: var(--section-py) 0;
  background: var(--light-bg);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--gold);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.service-icon img,
.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.service-card p {
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.5;
  margin-bottom: 16px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s;
}

.card-link:hover {
  color: var(--gold-hover);
}

/* ════════════════════════════════════════════════════════════
   WHY CAPITALVOLT SECTION
   ════════════════════════════════════════════════════════════ */

.why {
  padding: var(--section-py) 0;
  background: var(--white);
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 15px;
  color: var(--text-grey);
  max-width: 280px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════════ */

.cta-banner {
  padding: 56px 0;
  background: var(--gold);
  text-align: center;
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-banner p {
  font-size: 15px;
  color: #F5E8C8;
  margin-bottom: 24px;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ════════════════════════════════════════════════════════════ */

.testimonials {
  padding: var(--section-py) 0;
  background: var(--light-bg);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: normal;
}

.review-card cite {
  font-style: normal;
  font-size: 13px;
  color: var(--text-grey);
  font-weight: 600;
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════════════════════════
   SERVICE AREAS SECTION
   ════════════════════════════════════════════════════════════ */

.areas {
  padding: 56px 0;
  background: var(--dark-bg);
  text-align: center;
}

.areas h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.areas h2 .dot {
  color: var(--gold);
  margin: 0 8px;
}

.areas p {
  font-size: 14px;
  color: var(--gold);
}

.areas .sub {
  color: var(--text-grey);
  font-size: 13px;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */

.footer {
  padding: 56px 0 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-grey);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 4px;
}

.footer-accred {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold-light);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 12px;
}

.footer h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
  position: relative;
  padding-bottom: 8px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-grey);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact .phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.footer-contact p {
  font-size: 14px;
  color: var(--text-grey);
  margin-bottom: 4px;
}

.footer-legal {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-grey);
}

.footer-legal a {
  color: var(--text-grey);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ════════════════════════════════════════════════════════════ */

.bg-white { background: var(--white); }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--dark-bg); }
.bg-gold { background: var(--gold); }

.border-bottom { border-bottom: 1px solid var(--border); }
.border-top { border-top: 1px solid var(--border); }

.rounded-md { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-full { border-radius: 100px; }

.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.gap-6 { gap: 48px; }

.pt-lg { padding-top: 88px; }
.pb-lg { padding-bottom: 88px; }
.py-lg { padding-top: 88px; padding-bottom: 88px; }

.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.shadow-lg { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); }

.opacity-75 { opacity: 0.75; }
.opacity-50 { opacity: 0.5; }

.transition { transition: all 0.2s ease; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE (Mobile-First)
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .grid-2-col { grid-template-columns: 1fr; gap: 32px; }
  .grid-3-col { grid-template-columns: 1fr; gap: 24px; }
  .grid-4-col { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .nav { height: 60px; }
  .nav-links { gap: 20px; font-size: 14px; }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }

  .hero { padding: 48px 0 56px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

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

  h1 { font-size: 28px; line-height: 1.2; }
  h2 { font-size: 22px; }

  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }

  .nav-links { gap: 12px; }
  .nav-links a { font-size: 13px; }

  .section-heading { margin-bottom: 32px; }
  .service-card { padding: 20px 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; }
  .trust-badge { width: 100%; text-align: center; }

  .footer-legal { flex-direction: column; gap: 8px; }
}/* End custom CSS */