
:root {

/* =========================
   PREMIUM CONTRACTOR PALETTE
   ========================= */

/* Base (Deep Slate / Luxury Industrial) */
--brand-main: #0a121c;        /* deep slate-black (high-end feel) */
--brand-deep: #0f1b29;        /* layered navy depth */

/* Primary Accent (Controlled Electric Blue) */
--accent-color: #2f6fff;      /* premium electrical blue (not neon) */
--accent-hover: #1f55d6;

/* Secondary Accent (Brass / Utility Luxury) */
--secondary-color: #d6a84a;   /* muted brass (premium contractor feel) */
--secondary-hover: #b88a2f;

/* Surface Colors (Refined, not flat) */
--light-bg: #111f2e;          /* soft slate panel */
--card-bg: #152638;           /* slightly elevated cards */
--border-color: rgba(255,255,255,0.06);

/* Text Hierarchy (very important for premium feel) */
--text-main: #eef3f8;         /* soft white (not harsh white) */
--text-light: #a9b6c4;        /* muted steel gray */
--text-muted: #7f8c9c;

/* Effects (more subtle, less “glow”) */
--radius: 10px;
--shadow: 0 18px 50px rgba(0,0,0,0.45);
--shadow-soft: 0 10px 25px rgba(0,0,0,0.25);

/* Premium Detail Accents */
--line: rgba(255,255,255,0.06);

}


[data-theme="light"] {
--brand-main: #ffffff;
--brand-deep: #f6f8fb;

--light-bg: #eef2f6;
--card-bg: #ffffff;
--border-color: #dbe3ec;

--text-main: #162433;
--text-light: #516273;

--shadow: 0 18px 40px rgba(0,0,0,0.08);
}



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

body {
    font-family: Inter, system-ui, -apple-system, Arial, sans-serif;
  font-size: 1.125rem;
  letter-spacing: .01em;
  color: var(--text-main); /* readable on dark bg */
  background:
    radial-gradient(circle at 20% 0%, rgba(30,40,55,0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(30,40,55,0.15) 0%, transparent 40%),
    var(--brand-main); /* deep dark background */
}

p {
  line-height: 1.8;               /* slightly taller for readability */
  margin-bottom: clamp(18px, 2vw, 28px); /* more breathing room */
}

html {
  scroll-behavior: smooth;
}


h1,h2,h3, h4 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  margin-bottom: clamp(18px, 2.2vw, 32px);
  line-height: 1.25;
  text-wrap: balance;
}

h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(20px, 3vw, 24px); }

h1 + p, h2 + p, h3 + p, h4 + p {
  margin-top: clamp(12px, 1.5vw, 20px);
  margin-bottom: clamp(20px, 2vw, 28px);
}

p, li, dd {
  font-weight: 500;
}

/* Lists */
ul, ol {
  margin-bottom: clamp(18px, 2vw, 28px);
  padding-left: 1.5em;
  line-height: 1.75;
}

li {
  margin-bottom: clamp(8px, 1vw, 14px);
}

.list-check {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.list-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.list-check li::before {
  content: "\f058"; /* Font Awesome check-circle */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
   height: auto;
}


a {
  color: var(--text-main); /* bright cyan for visibility */
  text-decoration: none;
}

a:hover {
  color: var(--text-main); /* subtle hover contrast */
}

/* keep normal links colored on hover */
a:not(.btn):hover {
  color: var(--accent-color);
}


p a, li a, dd a {
  text-decoration: underline;
  text-decoration-color: var(--brand-main);
  text-decoration-thickness: 1.5px;
}


.shell {
  max-width: 1180px;
  margin: auto;
  padding: 0 clamp(24px, 4vw, 40px);
}

.section {
  padding: clamp(90px, 10vw, 140px) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--line);
}

.section h2 {
  margin-bottom: clamp(14px, 2vw, 20px);
}

.section--light {
  background: var(--light-bg);
}


.section-lead {
  color: var(--text-light);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.section + .section {
  position: relative;

}


.section + .section::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  opacity: .75;
}



/* SKIP LINK */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 15px;
  background: var(--brand-main);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus-visible {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 15px;
  background: var(--brand-main);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
}

/* FAQ SECTION SPACING */
.faq-list dt {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: clamp(24px, 3vw, 34px);
  margin-bottom: 8px;
  color: var(--text-main);
}

.faq-list dd {
  margin-bottom: clamp(18px, 2vw, 26px);
  line-height: 1.75;
  color: var(--text-light);
  max-width: 720px;
}

/* FAQ SECTION STYLES */
.faq-answer {
  display: none;
  padding: 0.5em 1em;
  border-left: 3px solid var(--accent-color);
  margin-bottom: 1em;
  transition: all 0.3s ease;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  margin: 0.5em 0;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

/* HEADER */
.top-bar {
  background: var(--brand-deep);
  color: var(--text-main);

  position: relative;
  z-index: 20;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.brand-block {
  display: flex;
  flex-direction: column;
}

.brand-block__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  margin-left: clamp(8px, 1.5vw, 18px);
}

.brand-logo { width: 75px;}

.brand-block__tagline {
  font-size: 13px;
  color: var(--text-light);
  margin-left: clamp(8px, 1.5vw, 18px);
}


.contact-block__label {
  font-size: 12px;
  color: var(--text-light);
    margin-bottom: 2px;
  line-height: 1.4;
}

.contact-block__phone {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-main);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
}

/* NAVIGATION */
.primary-nav {
  background: var(--brand-main);
  position: relative;
  z-index: 15;
}


.primary-nav__list {
  justify-content:center;
  align-items:center;
  display: flex;
  gap: clamp(18px, 2vw, 38px);
  padding: 14px 0;
  flex-wrap: wrap;
  list-style: none;

  
}

.primary-nav__list a { 
  color: var(--text-main); 
  font-weight: 500; 
  transition: color 0.3s ease; 
  font-size: clamp(.88rem, .92vw, .98rem); 
  letter-spacing:.01em;
  line-height:1.2;
  padding:.55rem .25rem;
  white-space: nowrap; 
}

.primary-nav__list a:hover {
  color:var(--accent-color);
}

/* TRUST STRIP */
.trust-strip {
  background: var(--brand-main);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: #1b2e3a;


  /* Visual separation from nav/header */
  margin-top: 5px; 
  border-top: 3px solid var(--accent-color); /* accent-colored line */
  
   box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  position: relative;
  top: 0;
  z-index: 25;
  margin: 0 auto 20px auto;
  border-radius: var(--radius);
}

.trust-strip p {
  margin: 0;
}

/* HERO */
.hero-section { padding: 80px 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 55px);
  align-items: center;
}

/* HERO ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-grid__copy h1,
.hero-grid__copy .hero-grid__subtitle,
.hero-grid__copy .hero-grid__actions {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-grid__copy .hero-grid__subtitle { animation-delay: 0.2s; }
.hero-grid__copy .hero-grid__actions { animation-delay: 0.4s; }

.hero-grid__media img {
  transform: scale(0.98);
  transition: transform 0.4s ease;
   box-shadow: 0 20px 50px rgba(0,0,0,.15);
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.hero-grid__copy {
  min-height: 300px;
}

.hero-grid__media img:hover { transform: scale(1); }

.hero-grid__subtitle { font-size: clamp(16px, 2vw, 20px); margin: clamp(16px, 2vw, 24px) 0; color: var(--text-light); }

.hero-grid__local { margin-bottom: 25px; }

.hero-grid__actions { display: flex; gap: 15px; margin-bottom: 12px; }

.hero-grid__note { font-size: clamp(12px, 1.5vw, 14px); color: var(--text-light); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.25s ease-in-out;
  min-height: 48px;
}

.btn--primary { color: var(--brand-main);
  letter-spacing: .02em;
  transition: all 0.25s ease;
    background: var(--text-main);
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,216,255,0.25);
}

.btn--outline { border: 2px solid var(--accent-color); color: var(--text-main); }
.btn--outline:hover {    background: var(--accent-color);
  color: var(--brand-main);     }

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: 35px;
  padding: clamp(18px, 2vw, 28px);
}

.feature-card {
   background: #1a1f29;
   color: var(--text-main);
  padding: clamp(22px, 2vw, 30px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  text-align: center;
}

.feature-card p {
  color: var(--text-light);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.feature-card .feature-icon {
  font-size: 1.9rem;
  color: #e67e22; /* adjust to your brand color */
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card h3 { margin-bottom: 10px; font-size: 18px; }

.feature-card,
.service-box,
.review-card {
   background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.feature-card h3,
.service-box h3,
.review-card__meta {
  color: var(--text-main);
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: 40px;
}

.service-box {
  border: 1px solid var(--border-color);
  padding: clamp(20px, 2vw, 28px);
  border-radius: var(--radius);
  background: var(--light-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: var(--accent-color);
}


.service-box h3 { margin-bottom: 10px; font-size: 18px; }

.service-box__link {
  margin-top: 10px;
  display: inline-block;
  color: var(--text-main);
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-box p {
  margin-bottom: clamp(10px, 1vw, 14px);
  color: var(--text-light);
}

.service-box__link:hover { color: var(--text-main); transform: translateX(3px); }

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: 35px;
}

.review-card {
   background: var(--light-bg); /* #1a1f29, dark card bg */
  color: var(--text-main);     /* off-white readable on dark */
  padding: clamp(22px, 2vw, 30px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card p {
  line-height: 1.7;
}

.faq-item p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.review-card:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }

.review-card__stars { color: var(--accent-color); margin-bottom: 10px; }

.review-card__meta { margin-top: 15px; font-size: 14px; color: var(--text-light); }

/* CTA BAND */
.cta-band {
  background: linear-gradient(90deg, var(--brand-main), #234051);
  color: white;
  padding: 40px 0;
}

.cta-band__inner { display: flex; justify-content: space-between; align-items: center; }

/* SERVICE AREA */
.area-list { columns: 2; margin-top: 20px; color: var(--text-light); }

/* Breadcrumbs */
.breadcrumb {
  background: var(--light-bg);
  color: var(--text-main);
  padding: 8px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* soft shadow */
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  margin: 25px 0;
  transition: box-shadow 0.3s ease;
}

.breadcrumb:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* List reset */
.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}

/* Items */
.breadcrumb__item {
  color: var(--text-light);
  position: relative;
  transition: color 0.2s;
}

/* Links */
.breadcrumb__item a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

/* Extra left margin for the first breadcrumb link */
.breadcrumb__item:first-child a {
  margin-left: 6px; 
}

.breadcrumb__item a:hover {
  color: var(--accent-color);
}

/* Separator */
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #7a7a7a;
  font-weight: 600;
}

/* Current page */
.breadcrumb__item--current {
  font-weight: 600;
  color: var(--text-main);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .breadcrumb {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .breadcrumb__item:not(:last-child)::after {
    margin: 0 5px;
  }
}

/* GALLERY */
.media-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 35px; }

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover { transform: scale(1.03); box-shadow: var(--shadow); }

.media-card figcaption { font-size: 13px; margin-top: 6px; color: var(--text-light); }

/* LIGHTBOX MODAL (Enhanced with arrows) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  flex-direction: column;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85%;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.lightbox__caption {
  color: #fff;
  font-size: 14px;
  text-align: center;
  max-width: 90%;
}

/* Close Button */
.lightbox__close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox__close:hover { color: var(--accent-color); }

/* Navigation Arrows */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transition: color 0.3s ease;
}

.lightbox__nav:hover { color: var(--accent-color); }

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox.hidden { display: none; }

/* QUOTE FORM */
.quote-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.quote-form { display: grid; gap: 18px; }

.field label { font-size: 14px; margin-bottom: 5px; display: block; }

.field input,
.field textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  font-family: inherit;
}

/* FOOTER */
.site-footer { background: #111; color: #bbb; padding: 50px 0; font-size: 14px; }

.footer-main { max-width: 600px; margin-bottom: 20px; }

.footer-main a:hover { color: var(--accent-color); }

.footer-main a { color: #eee; }

.footer-note { font-size: 13px; margin-top: 10px; }

.footer-meta { border-top: 1px solid #333; padding-top: 15px; font-size: 12px; }

/* Footer logo */
.footer-logo img {
  max-width: 200px;
  opacity: 0.9; /* subtle */
  margin-bottom: 10px;
}

.footer-logo {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column; 
  align-items: center;   
  text-align: center;     
}

.footer {
  margin-top: clamp(40px, 6vw, 80px);
}

/* ==========================================================
   FOOTER FEATURE IMAGE
   Full-width responsive image above all footer columns
   ========================================================== */
.footer-feature-image {
  grid-column: 1 / -1; /* span all columns in the footer grid */
  margin-bottom: clamp(32px, 5vw, 56px);
}

.footer-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.footer-feature-image .image-caption {
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .footer-feature-image {
    margin-bottom: 28px;
  }
}

/* BACK TO TOP */
.back-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0,216,255,0.25);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
  
}

.back-top:hover {
  background: var(--brand-main);
  color: white;
  transform: scale(1.1);
}

ul li::marker {
  color: var(--accent-color);
  font-size: 1.15em;
}



li {
   margin-bottom: clamp(8px, .9vw, 12px);
}


.faq-list dt {
  transition: color .25s ease;
}

.faq-list dt:hover {
  color: var(--accent-color);
}

.faq-list dt:not(:first-child) {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px){

  .primary-nav__list{
    gap: clamp(14px,1.5vw,24px);
  }

  .primary-nav__list a{
    font-size:.9rem;
  }

}



@media(max-width:950px){
  .hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; gap: 15px; }
}


@media (max-width: 768px) {

.top-bar__inner {
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px clamp(16px, 5vw, 24px); /* slightly smaller for mobile */
}

.brand-block {
  flex: 1;
}

.contact-block {
  order: 3;
  width: 100%;
  text-align: center;
}

.contact-block__phone {
  font-size: 22px;
}

.menu-toggle {
  display: block;
}


.primary-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.primary-nav.open {
  max-height: 400px;
}

.primary-nav__list {
  flex-direction: column;
  gap: 0;
}

.primary-nav__list li {
  border-top: 1px solid rgba(255,255,255,.2);
}

.primary-nav__list a {
  display: block;
  padding: 14px 0;
}



.hero-section {
  padding: 50px 0;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.hero-grid__actions {
  flex-direction: column;
  gap: 12px;
}

.hero-grid__actions .btn {
  width: 100%;
}

.hero-grid__media img {
  max-height: 320px;
  object-fit: cover;
}

.media-grid {
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 30px);
}

.quote-layout {
  grid-template-columns: 1fr;
  gap: 30px;
}

.field input,
.field textarea {
  font-size: 16px;
}

 h1, h2, h3, h4, p, figcaption {
    text-align: center;
  }


  /* Center list bullets */
.hero-grid ul,
.hero-grid ol {
  list-style-position: inside;
  padding-left: 0;
  text-align: center;
}

  ul li, ol li {
    margin: 0 5px;      /* spacing between bullets */
  }

  .faq-list dt {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 1.5rem;
  text-align: center;
  text-wrap: balance;
}

.faq-list dd {
  margin-top: 0.4rem;
  line-height: 1.6;
  text-align: center;
  text-wrap: balance;
}

.media-card figcaption {
  text-align: center;
}

.service-box__link{
display:block;
text-align:center;
margin-top:12px;
}

.service-box h3, .review-card {
text-align:center;
}

.left {
  text-align: left;
}

.brand-block__tagline {
  text-align: left;
}

.footer-main strong{
display:block;
text-align:center;
margin-bottom:8px;
}

 .lightbox__img {
    max-width: 95%;
    max-height: 70%;
  }

  .hero-grid__actions,
  .section a.btn {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: clamp(10px, 2vw, 16px);
  }

   .section a.btn {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(14px, 2.5vw, 22px);
  }

  /* =========================
   SIMPLE MOBILE NAV (ORIGINAL STYLE)
   ========================= */

.primary-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.primary-nav.open {
  max-height: 100vh;
}

.primary-nav__list {
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.primary-nav__list li {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.18);
}

.primary-nav__list a {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  color: #fff;
}

.dropdown {
  display: none;
  padding-left: 15px;
  background: rgba(0,0,0,0.08);
}

.has-dropdown.open .dropdown {
  display: block;
}

.dropdown li a {
  padding: 12px 20px;
  font-size: 0.95rem;
  color: white;
}

.has-dropdown .dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.has-dropdown.open .dropdown {
  max-height: 500px;
}

}



@media(max-width:650px){
  .menu-toggle { display: block; }
  .primary-nav__list { flex-direction: column; display: none; }
  .primary-nav.open .primary-nav__list { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }

  .breadcrumb {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .breadcrumb__item:not(:last-child)::after {
    margin: 0 5px;
  }

  .breadcrumb__item:first-child a {
    margin-left: 0; /* remove extra margin on small screens */
  }
}

@media(max-width:500px){
  .lightbox__image { max-width: 95%; max-height: 70%; }
  .footer-main { text-align: center; }
}

@media (max-width: 360px) {
  .area-list {
    columns: 2;
    column-gap: 12px;
  }

  .area-list li {
    font-size: 0.85rem;
    line-height: 1.35;
    margin-bottom: 4px;
  }
}


@media (min-width: 768px) {
  .case-study h3 {
    margin-top: 16px;
  }
}

/* Service Boxes */
.service-box {
  background: var(--light-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.service-box h3 {
  color: var(--text-main); /* always readable */
}

.service-box p {
  color: var(--text-light); /* secondary text */
}

.service-box__link {
  color: var(--text-main);
}

.service-box__link:hover {
  color: var(--secondary-color);
}

.header-toggle {
  position: static;
  margin-left: 15px;
}
/* Group right-side controls */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* THEME TOGGLE BUTTON */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: 1px solid var(--border-color);

  color: var(--text-main);
  font-size: 16px;

  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover = premium feel */
.theme-toggle-btn:hover {
  background: var(--accent-color);
  color: var(--brand-main);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

/* Subtle glow in dark mode */
[data-theme="dark"] .theme-toggle-btn {
  box-shadow: 0 0 10px rgba(0,216,255,0.25);
}

.theme-toggle-btn i {
  transition: transform 0.3s ease;
}


/* OFF state */
.bulb-off {
  opacity: 0.35;
  filter: grayscale(60%);
}

/* ON state */
.bulb-on {
  color: #ffd43b;
    animation: bulbFlicker 0.4s ease;
  opacity: 1;
  text-shadow:
    0 0 4px rgba(255, 212, 59, 0.9),
    0 0 10px rgba(255, 212, 59, 0.8),
    0 0 20px rgba(255, 204, 0, 0.6),
    0 0 30px rgba(255, 204, 0, 0.4);
}

/* Flicker / turn-on animation */
@keyframes bulbFlicker {
  0% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { opacity: 0.6; }
  100% { opacity: 1; transform: scale(1); }
}

.animate-bulb {
  animation: bulbFlicker 0.4s ease;
}

/* IMAGE SECTIONS (CONTENT BREAKS) */
.section--image {
  padding: clamp(50px, 7vw, 90px) 0;
}

.section--image.section--light {
  background: var(--light-bg);
}

.image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Image styling */
.image-block img {
  width: clamp(20rem, 85cqw, 42rem);
  height: auto;
  border-radius: 14px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Subtle hover = premium feel */
.image-block img:hover {
  transform: scale(1.015);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Caption */
.image-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-table {
  margin-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.pricing-type h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.pricing-type p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.pricing-cost {
  font-size: 1.2rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.pricing-note {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.75;
}

/* ==========================================================
   PREMIUM QUOTE FORM
   Matches your dark/light contractor theme
   ========================================================== */

.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Left copy section */
.quote-layout__copy {
  position: sticky;
  top: 2rem;
}

.quote-layout__copy h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.quote-layout__copy h2 i {
  color: var(--secondary-color);
  font-size: 0.95em;
}

.quote-layout__copy p {
  color: var(--text-light);
  max-width: 38ch;
  line-height: 1.85;
  margin-bottom: 0;
}

/* Main form container */
.quote-form {
  display: grid;
  gap: 1.35rem;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.015)
    ),
    var(--card-bg);

  border: 1px solid var(--border-color);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Premium accent bar */
.quote-form::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--secondary-color),
    var(--accent-color)
  );
}

/* Field wrapper */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Labels */
.field label {
  display: flex;
  align-items: center;
  gap: 0.55rem;

  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-main);
  margin: 0;
}

.field label i {
  color: var(--secondary-color);
  font-size: 0.9em;
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}

/* Inputs, selects, textareas */
.field input,
.field select,
.field textarea {
  width: 100%;
  appearance: none;

  background: var(--brand-main);
  color: var(--text-main);

  border: 1px solid var(--border-color);
  border-radius: calc(var(--radius) - 2px);

  padding: 0.95rem 1rem;
  min-height: 54px;

  font: inherit;
  line-height: 1.5;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* Textarea specifics */
.field textarea {
  min-height: 150px;
  resize: vertical;
  padding-top: 1rem;
}

/* Select arrow */
.field select {
  padding-right: 3rem;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-light) 50%),
    linear-gradient(135deg, var(--text-light) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Placeholder styling */
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

/* Focus state */
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow:
    0 0 0 4px rgba(47, 111, 255, 0.16),
    0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Valid state */
.field input:valid,
.field select:valid,
.field textarea:valid {
  border-color: rgba(214, 168, 74, 0.35);
}

/* Invalid state (only after user interaction) */
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
}

/* Autofill fix */
.field input:-webkit-autofill,
.field textarea:-webkit-autofill,
.field select:-webkit-autofill {
  -webkit-text-fill-color: var(--text-main);
  -webkit-box-shadow: 0 0 0 1000px var(--brand-main) inset;
  transition: background-color 9999s ease-in-out 0s;
}

/* Submit button */
.quote-form .btn {
  width: 100%;
  margin-top: 0.35rem;
  min-height: 58px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
}

.quote-form .btn i {
  font-size: 0.95em;
}

/* Optional reassurance text below button */
.quote-form::after {
  content: "Licensed • Insured • Free Estimates • Fast Response";
  display: block;
  margin-top: 0.25rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* Light theme refinements */
[data-theme="light"] .quote-form {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96),
      rgba(246,248,251,0.98)
    );
}

[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea {
  background: #ffffff;
}

[data-theme="light"] .field input:focus,
[data-theme="light"] .field select:focus,
[data-theme="light"] .field textarea:focus {
  box-shadow:
    0 0 0 4px rgba(47, 111, 255, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Tablet */
@media (max-width: 950px) {
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .quote-layout__copy {
    position: static;
    text-align: center;
  }

  .quote-layout__copy h2 {
    justify-content: center;
  }

  .quote-layout__copy p {
    max-width: 60ch;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .quote-form {
    padding: 1.5rem;
    gap: 1.1rem;
  }

  .field label {
    font-size: 0.88rem;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 52px;
    padding: 0.9rem 0.95rem;
    font-size: 16px; /* Prevents iOS zoom */
  }

  .field textarea {
    min-height: 130px;
  }

  .quote-form::after {
    font-size: 0.78rem;
    line-height: 1.5;
    padding: 0 0.5rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .quote-form {
    padding: 1.25rem;
    border-radius: var(--radius);
  }

  .quote-layout__copy h2 {
    gap: 0.5rem;
  }
}