/* =====================================================
   JOCS Construction — Stylesheet
   Clean & Modern · Navy + Forest Green
   ===================================================== */

:root {
  /* Black, grey, hi-vis green palette */
  --navy: #0A0A0A;          /* primary black (kept var name for compat) */
  --navy-deep: #000000;     /* pure black */
  --navy-light: #1F1F1F;    /* dark grey */
  --green: #C6FF00;         /* hi-vis safety green */
  --green-dark: #9FD400;    /* hi-vis green darker */
  --green-light: #1A1A1A;   /* dark icon bg (was light green) */
  --bg: #FFFFFF;
  --bg-soft: #F4F4F4;       /* light grey section bg */
  --bg-tint: #E8E8E8;
  --text: #0A0A0A;
  --text-muted: #4A4A4A;
  --border: #D8D8D8;
  --white: #FFFFFF;
  --grey-dark: #1F1F1F;
  --grey-mid: #6B6B6B;
  --grey-light: #B8B8B8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius: 4px;
  --radius-lg: 6px;
  --container: 1200px;
  --transition: 0.2s ease;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-display: 'Oswald', 'Bebas Neue', Impact, 'Arial Narrow Bold', sans-serif;
}

/* Reset / Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

/* Typography — Oswald for sharp/industrial display headings, Inter for readable body */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); margin: 0 0 0.6em; line-height: 1.05; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: 0.005em; font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: 0.01em; }
h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); font-weight: 600; font-family: var(--font-display); }
p { margin: 0 0 1em; color: var(--text-muted); }
.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 60ch; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }

.eyebrow { display: inline-block; font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--green); margin-bottom: 1rem; }
.section-header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-header.left-align { margin-left: 0; text-align: left; }

/* Grid utilities */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em;
  border: 2px solid transparent; cursor: pointer; transition: all var(--transition);
  text-align: center; line-height: 1;
}
.btn-primary { background: var(--green); color: #000; border-color: var(--green); }
.btn-primary:hover { background: #DDFF40; border-color: #DDFF40; color: #000; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(198, 255, 0, 0.35); }
.btn-secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-deep); color: var(--green); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--green); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--green); color: #000; border-color: var(--green); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 1000; background: #000;
  border-bottom: 2px solid var(--green);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--white); font-size: 1.25rem; letter-spacing: -0.01em; }
.logo-mark { width: 38px; height: 38px; background: var(--navy); color: var(--white); border-radius: 8px; display: grid; place-items: center; font-weight: 800; font-size: 1rem; }
.logo-mark span { color: var(--green); }
.header-logo-img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--white); font-size: 0.95rem; }
.nav-phone:hover { color: var(--green); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--white); }
.menu-toggle svg { width: 28px; height: 28px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #000; border: 1px solid var(--green); border-radius: var(--radius);
  box-shadow: var(--shadow-md); min-width: 240px; padding: 8px; opacity: 0; visibility: hidden;
  transition: all var(--transition); list-style: none; margin: 0;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 6px; font-size: 0.9rem; color: var(--white); }
.dropdown a:hover { background: var(--grey-dark); color: var(--green); }

/* Hero */
.hero {
  position: relative; padding: 96px 0 80px; overflow: hidden;
  background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
  color: var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.12;
  background:
    radial-gradient(circle at 80% 20%, var(--green) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, var(--green) 0%, transparent 35%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content .eyebrow { color: var(--green); }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.15rem; margin-bottom: 32px; max-width: 50ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat strong { display: block; font-size: 2rem; color: var(--white); font-weight: 800; line-height: 1; }
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-card {
  background: var(--white); color: var(--text); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg); position: relative;
}
.hero-card h3 { margin-bottom: 8px; }
.hero-card .lead { font-size: 0.95rem; margin-bottom: 20px; }
.hero-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 16px; font-size: 0.85rem; color: var(--text-muted); }
.hero-trust svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* Page header (interior pages) */
.page-header {
  background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
  color: var(--white); padding: 80px 0 64px; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; opacity: 0.12;
  background: radial-gradient(circle at 70% 30%, var(--green), transparent 50%);
}
.page-header-inner { position: relative; max-width: 760px; }
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 60ch; margin-bottom: 0; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* Cards */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all var(--transition); height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: transparent; }
.card-icon { width: 52px; height: 52px; background: #0A0A0A; color: var(--green); border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px; }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 16px; }
.card-link { color: var(--green); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 4px; }
.card-link::after { content: '→'; transition: transform var(--transition); }
.card-link:hover::after { transform: translateX(4px); }

/* Service Card with image */
.service-card { overflow: hidden; padding: 0; }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 28px; }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { padding: 14px 0; padding-left: 32px; position: relative; border-bottom: 1px solid var(--border); color: var(--text); }
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 18px; width: 20px; height: 20px;
  background: var(--green); border-radius: 50%;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6 10.78L3.22 8l-.94.94L6 12.66l8-8-.94-.94z'/%3E%3C/svg%3E") center/14px no-repeat;
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6 10.78L3.22 8l-.94.94L6 12.66l8-8-.94-.94z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* Two column section */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step-num { display: inline-grid; place-items: center; width: 44px; height: 44px; background: var(--navy); color: var(--white); border-radius: 50%; font-weight: 700; margin-bottom: 16px; }
.step h3 { margin-bottom: 8px; }

/* Testimonial — slightly tighter for a denser, professional grid */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 22px 24px; border: 1px solid var(--border); }
.testimonial-card .stars { color: #F5B400; margin-bottom: 10px; letter-spacing: 2px; font-size: 0.95rem; }
.testimonial-card blockquote { margin: 0 0 14px; font-size: 0.92rem; color: var(--text); font-style: normal; line-height: 1.55; }
.testimonial-meta { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; }
.testimonial-meta strong { display: block; color: var(--navy); font-size: 0.92rem; }
.testimonial-meta span { font-size: 0.78rem; color: var(--text-muted); }

/* Forms */
.form { display: grid; gap: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 1rem; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 0; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 0.85rem; color: var(--text-muted); }
.form-error { color: #C62828; font-size: 0.85rem; margin-top: 4px; display: none; }
.form-group.has-error .form-error { display: block; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #C62828; }

/* CTA banner */
.cta-banner {
  background: var(--green); color: #000; padding: 64px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.06;
  background: repeating-linear-gradient(45deg, #000 0 12px, transparent 12px 24px);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #000; margin-bottom: 12px; }
.cta-banner p { color: #1A1A1A; font-size: 1.1rem; max-width: 600px; margin: 0 auto 28px; font-weight: 500; }
.cta-banner .btn-primary { background: #000; color: var(--green); border-color: #000; }
.cta-banner .btn-primary:hover { background: var(--white); color: #000; border-color: #000; }
.cta-banner .btn-outline-light { background: transparent; color: #000; border-color: #000; }
.cta-banner .btn-outline-light:hover { background: #000; color: var(--green); border-color: #000; }

/* Project / Gallery grid */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-tint); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  background: linear-gradient(0deg, rgba(11,37,69,0.85), transparent); color: var(--white);
  font-weight: 600; font-size: 0.95rem;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; font-size: 1.05rem; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--green); transition: transform var(--transition); }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding-top: 12px; color: var(--text-muted); }

/* Footer */
.site-footer { background: #000; color: rgba(255,255,255,0.75); padding: 72px 0 24px; border-top: 2px solid var(--green); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-grid h4 { color: var(--white); font-size: 0.9rem; }
.footer-grid p, .footer-grid li, .footer-grid a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-logo { color: var(--white); margin-bottom: 16px; }
.footer-logo-img { max-width: 240px; height: auto; margin-bottom: 20px; display: block; }
.header-logo-img { height: 44px; width: auto; display: block; }
.footer-contact { display: grid; gap: 8px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.55); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: var(--white); }
.social-links a:hover { background: var(--green); color: #000; }
.social-links svg { width: 18px; height: 18px; }

/* Sticky mobile call bar */
.mobile-call-bar { display: none; }

/* Trust badges */
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; padding: 32px 0; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: #000; border: 2px solid var(--green); border-radius: 100px; font-size: 0.9rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; }
.trust-badge svg { width: 18px; height: 18px; color: var(--green); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .page-header { padding: 56px 0 40px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: #000;
    flex-direction: column; align-items: stretch; gap: 0; padding: 16px;
    border-bottom: 2px solid var(--green); box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 8px; }
  .menu-toggle { display: block; }
  .nav-phone span { display: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 0 0 0 16px; min-width: 0; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-card .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-call-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: var(--green); color: #000; padding: 14px;
    align-items: center; justify-content: center; gap: 10px; font-weight: 800;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.25); letter-spacing: 0.02em;
  }
  .mobile-call-bar:hover { color: #000; background: #DDFF40; }
  body { padding-bottom: 56px; }
}

/* =====================================================
   Video Hero (full-viewport intro)
   ===================================================== */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video video,
.hero-video .video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;            /* fill the whole screen — no black bars on the sides */
  object-position: 50% 50%;     /* true center — both horizontally and vertically */
  z-index: 1;
  image-rendering: -webkit-optimize-contrast;
  background: #000;
}
/* Hide the secondary blurred-fill video — not needed when the main video covers the whole area */
.hero-video-bg { display: none; }

/* Service pills under hero headline */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(198, 255, 0, 0.4);
  border-radius: 100px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Quick Contact bar (right below hero) */
.quick-contact {
  background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
  color: #fff;
  padding: 56px 0;
  border-top: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
}
.quick-contact .container { text-align: center; }
.quick-contact h2 { color: #fff; margin-bottom: 8px; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.quick-contact .lead { color: rgba(255,255,255,0.8); margin: 0 auto 28px; }
.qc-phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--green);
  color: #000;
  padding: 18px 36px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(198, 255, 0, 0.35);
  transition: transform 0.2s ease;
}
.qc-phone:hover { transform: translateY(-2px) scale(1.02); background: #DDFF40; color: #000; }
.qc-phone .phone-icon { width: 36px; height: 36px; background: #000; color: var(--green); border-radius: 50%; display: grid; place-items: center; }
.qc-phone .phone-icon svg { width: 18px; height: 18px; }
.qc-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 720px; margin: 16px auto 0; }
@media (max-width: 560px) { .qc-options { grid-template-columns: 1fr; } }
.qc-option {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.qc-option:hover { border-color: var(--green); color: #fff; background: rgba(198, 255, 0, 0.08); }
.qc-option strong { color: var(--green); display: block; margin-bottom: 4px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.qc-option span { color: #fff; font-size: 1rem; }
.qc-meta { margin-top: 24px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.qc-meta strong { color: var(--green); }
.hero-video .video-poster {
  background: #000 url("../../horizontal_on_negative_by_zenbusiness.png") center/contain no-repeat;
}
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.75) 100%);
  z-index: 2;
}
.hero-video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 900px;
}
.hero-video-content .eyebrow {
  color: var(--green);
  font-size: 1rem;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.hero-video-content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-video-content p {
  color: rgba(255,255,255,0.95);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Floating Call-for-Estimate button on video */
.floating-cta {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 40px rgba(198, 255, 0, 0.45), 0 0 0 0 rgba(198, 255, 0, 0.55);
  animation: pulse-glow 2.2s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.floating-cta:hover {
  transform: translateY(-2px) scale(1.02);
  background: #DDFF40;
  color: #000;
}
.floating-cta .phone-icon {
  width: 26px; height: 26px;
  background: #000;
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.floating-cta .phone-icon svg { width: 14px; height: 14px; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 10px 40px rgba(198, 255, 0, 0.45), 0 0 0 0 rgba(198, 255, 0, 0.55); }
  50% { box-shadow: 0 10px 40px rgba(198, 255, 0, 0.55), 0 0 0 18px rgba(198, 255, 0, 0); }
}

/* Scroll-down indicator */
.scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  opacity: 0.85;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-down svg { width: 24px; height: 24px; margin-top: 6px; display: block; margin-left: auto; margin-right: auto; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Sticky floating-call button for scrolled state on desktop */
.sticky-call-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.sticky-call-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sticky-call-btn:hover { background: #DDFF40; color: #000; }
.sticky-call-btn svg { width: 18px; height: 18px; }

/* Audience cards — for "Who We Work With" */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.audience-card {
  padding: 28px 22px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}
.audience-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.audience-card .audience-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: #000;
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.audience-card .audience-icon svg { width: 26px; height: 26px; }
.audience-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.audience-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-muted);
}

/* Spray Foam Spotlight Section */
.foam-spotlight {
  background: #000;
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.foam-spotlight::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green) 0%, transparent 60%);
  opacity: 0.15;
  pointer-events: none;
}
.foam-spotlight h2 { color: #fff; }
.foam-spotlight p { color: rgba(255,255,255,0.85); }
.foam-spotlight .eyebrow { color: var(--green); }
.foam-spotlight .stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.foam-stat {
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(198, 255, 0, 0.25);
  border-radius: var(--radius);
  text-align: center;
}
.foam-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--green);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.foam-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.05em; }

/* Mobile adjustments for video hero */
@media (max-width: 720px) {
  .hero-video { height: 88vh; min-height: 500px; }
  .floating-cta { padding: 16px 24px; font-size: 1rem; }
  .sticky-call-btn { display: none; } /* mobile-call-bar already covers this */
}

/* Formspree Ajax — success and error messages */
.fs-success {
  display: none;
  background: var(--green);
  color: #000;
  padding: 18px 22px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #000;
  box-shadow: 0 8px 20px rgba(198, 255, 0, 0.25);
}
.fs-success[data-state="success"], form[aria-disabled="false"] + .fs-success[data-state="success"] { display: block; animation: fsSlide 0.4s ease-out; }
.fs-success strong { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; font-size: 1.05rem; }
.fs-error-form {
  display: none;
  background: #2a0d0d;
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-weight: 500;
  border: 2px solid #C62828;
}
.fs-error-form[data-state="error"] { display: block; animation: fsSlide 0.3s ease-out; }
.fs-error-field {
  display: block;
  color: #C62828;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
}
.fs-error-field:empty { display: none; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: #C62828 !important;
  background: #fff5f5;
}
button[data-fs-submit-btn][disabled] {
  opacity: 0.6;
  cursor: wait;
  position: relative;
}
button[data-fs-submit-btn][disabled]::after {
  content: '· Sending…';
  margin-left: 6px;
  font-style: italic;
}
@keyframes fsSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reviews popup modal */
.review-modal {
  border: 0;
  border-radius: var(--radius-lg);
  padding: 0;
  width: 92%;
  max-width: 1200px;
  max-height: 90vh;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  overflow: hidden;
  color: var(--text);
}
.review-modal::backdrop {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}
.review-modal[open] { animation: modalFadeIn 0.25s ease-out; }
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-modal-header {
  padding: 22px 28px;
  background: #000;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--green);
}
.review-modal-header h2 {
  color: var(--white);
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}
.review-modal-header .eyebrow { color: var(--green); margin-bottom: 4px; display: block; }
.review-modal-close {
  background: var(--green);
  color: #000;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  flex-shrink: 0;
  transition: all var(--transition);
}
.review-modal-close:hover { background: #DDFF40; transform: rotate(90deg); }
.review-modal-content {
  padding: 28px;
  overflow-y: auto;
  max-height: calc(90vh - 90px);
}
.reviews-cta-card {
  background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  border: 2px solid var(--green);
  max-width: 720px;
  margin: 0 auto;
}
.reviews-cta-card h2 { color: var(--white); margin-bottom: 12px; }
.reviews-cta-card .lead { color: rgba(255,255,255,0.85); margin: 0 auto 24px; max-width: 520px; }
.reviews-stars-row { font-size: 1.6rem; letter-spacing: 6px; color: #F5B400; margin-bottom: 12px; }
.reviews-cta-meta { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 16px; }
@media (max-width: 720px) {
  .review-modal-header { padding: 18px 20px; }
  .review-modal-content { padding: 20px; }
}

/* Collapsible expandable sections — click to expand */
.expandable-section {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.expandable-section[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.expandable-section summary {
  padding: 28px 32px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background var(--transition);
}
.expandable-section summary::-webkit-details-marker { display: none; }
.expandable-section summary:hover { background: var(--bg-soft); }
.expandable-section summary .expandable-text { flex: 1; min-width: 0; }
.expandable-section summary .eyebrow { margin-bottom: 4px; }
.expandable-section summary h2 { margin: 0 0 6px; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.expandable-section summary p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.expandable-section .toggle-icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background var(--transition);
}
.expandable-section .toggle-icon svg { width: 22px; height: 22px; }
.expandable-section[open] .toggle-icon { transform: rotate(180deg); background: #DDFF40; }
.expandable-content { padding: 0 32px 36px; }
.expandable-content > .grid { margin-top: 8px; }
@media (max-width: 720px) {
  .expandable-section summary { padding: 22px 20px; gap: 14px; }
  .expandable-content { padding: 0 20px 28px; }
  .expandable-section .toggle-icon { width: 42px; height: 42px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.flex { display: flex; }
.gap-2 { gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
