/* Logo Size Fix */
.nav-logo {
    height: 56px !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
}

/* ═══════════════════════════════════════════════
   NEW GROUND ELECTRIC — COMPLETE DESIGN SYSTEM
   ═══════════════════════════════════════════════ */
:root {
  --green: #1a3a2a;
  --green-dark: #0e2419;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --white: #ffffff;
  --off-white: #f9fafb;
  --text: #1f2937;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --radius: 10px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-hover: 0 12px 40px rgba(26,58,42,0.2);
  --transition: 0.3s ease;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { overflow-x: hidden; }
* { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.65; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
.section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.section-title { font-family: var(--font-head); font-size: clamp(26px,4vw,40px); font-weight: 700; color: var(--green); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-light); max-width: 580px; line-height: 1.75; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-sub { margin: 0 auto; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 26px; border-radius: var(--radius-full); font-family: var(--font-head); font-size: 15px; font-weight: 600; cursor: pointer; transition: all var(--transition); white-space: nowrap; border: 2px solid transparent; line-height: 1; }
.btn:active { transform: scale(0.97); }
.btn-amber { background: var(--amber); color: var(--green); border-color: var(--amber); }
.btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); transform: translateY(-1px); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-1px); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.announcement-bar { background: var(--green-dark); color: rgba(255,255,255,0.88); text-align: center; padding: 9px 20px; font-size: 13px; font-weight: 500; }
.announcement-bar a { color: var(--amber); }
.header { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition); }
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); border-bottom-color: transparent; }
/* ── Nav (matches HTML: header > .container > nav.nav > [.nav-logo + ul.nav-links + a.nav-cta]) ── */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; position: relative; }
.nav > a:first-child { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 44px; width: auto; max-width: 140px; object-fit: contain; display: block; }
.header .container { padding-top: 10px; padding-bottom: 10px; }
/* Legacy text logo (fallback) */
.logo-mark { color: var(--amber); }
/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0; z-index: 1001; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--green); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Project cards */
.project-card { background: #1a3a2a; border-radius: 12px; padding: 24px 20px; display: flex; align-items: center; gap: 16px; min-height: 100px; overflow: visible; }
.project-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.project-info { flex: 1; min-width: 0; }
.project-location { font-weight: 700; font-size: 15px; color: white; margin-bottom: 4px; white-space: normal; overflow: visible; }
.project-desc { font-size: 13px; color: rgba(255,255,255,0.7); white-space: normal; overflow: visible; }
@media (max-width: 640px) { [style*="grid-template-columns: repeat(2,1fr)"] { grid-template-columns: 1fr !important; } }
/* Contact icon cards */
.contact-icon-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px; background: white; border: 1px solid var(--border); border-radius: 10px; }
.contact-icon-card .icon { font-size: 32px; margin-bottom: 12px; display: block; }
.nav-links { display: none; list-style: none; flex-direction: row; gap: 2px; align-items: center; margin: 0; padding: 0; flex: 1; justify-content: center; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 12px; font-size: 14px; font-weight: 500; color: var(--text); border-radius: 6px; transition: color var(--transition),background var(--transition); white-space: nowrap; text-decoration: none; }
.nav-link:hover { color: var(--green); background: var(--off-white); }
.nav-item { position: relative; list-style: none; }
.dd-icon { font-size: 11px; color: var(--text-light); transition: transform var(--transition); display: inline-block; margin-left: 1px; }
.nav-item:hover .dd-icon { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 230px; padding: 8px; opacity: 0; visibility: hidden; transition: opacity var(--transition),visibility var(--transition),transform var(--transition); z-index: 100; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 9px 12px; font-size: 13px; font-weight: 500; color: var(--text); border-radius: 6px; transition: background var(--transition),color var(--transition); text-decoration: none; }
.dropdown a:hover { background: var(--off-white); color: var(--green); }
.nav-cta { flex-shrink: 0; }
.hero { position: relative; min-height: 420px; display: flex; align-items: center; background: linear-gradient(135deg,#1a3a2a 0%,#0e2419 50%,#162e20 100%); padding: 100px 20px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg,transparent,transparent 60px,rgba(255,255,255,0.018) 60px,rgba(255,255,255,0.018) 61px); }
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.35); color: var(--amber); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 24px; }
.hero-content h1 { font-size: clamp(32px,6vw,58px); font-weight: 700; line-height: 1.1; margin-bottom: 22px; }
.hero-content h1 .highlight { color: var(--amber); }
.hero-sub { font-size: clamp(16px,2.5vw,19px); color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto 36px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.72); font-weight: 500; }
.hero-trust-item svg { width: 16px; height: 16px; stroke: var(--amber); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.page-hero { background: linear-gradient(135deg,var(--green) 0%,var(--green-dark) 60%,#162e20 100%); padding: 72px 20px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg,transparent,transparent 60px,rgba(255,255,255,0.018) 60px,rgba(255,255,255,0.018) 61px); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: var(--amber); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: clamp(28px,5vw,50px); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
.page-hero h1 span { color: var(--amber); }
.page-hero .hero-sub { margin: 0 auto 32px; }
.trust-bar { background: white; border-bottom: 1px solid #e5e7eb; padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-icon { width: 52px; height: 52px; background: #fff8e6; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.trust-icon svg { width: 28px; height: 28px; }
.trust-title { font-weight: 700; font-size: 15px; color: #1a3a2a; margin: 0; }
.trust-sub { font-size: 12px; color: #6b7280; margin: 0; }
/* legacy compat */
.trust-item strong { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--green); }
.trust-item span { font-size: 12px; color: var(--text-light); font-weight: 500; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }
.service-card { display: flex; flex-direction: column; background: white; border: 1.5px solid #e5e7eb; border-radius: 12px; padding: 28px 24px; text-decoration: none; color: #1f2937; transition: all 0.3s ease; cursor: pointer; }
.service-card:hover { border-color: #1a3a2a; box-shadow: 0 8px 32px rgba(26,58,42,0.12); transform: translateY(-4px); }
.service-icon { width: 52px; height: 52px; background: #e8f0eb; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0; transition: background var(--transition); }
.service-card:hover .service-icon { background: rgba(245,158,11,0.15); }
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: #1a3a2a; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #1a3a2a; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: #6b7280; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.card-link { font-size: 14px; font-weight: 600; color: #f59e0b; }
.card-arrow { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--green); margin-top: 14px; transition: gap var(--transition),color var(--transition); }
.service-card:hover .card-arrow { gap: 8px; color: var(--amber-dark); }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.feature-photo { background: var(--green); border-radius: var(--radius); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.feature-photo-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.4); font-size: 14px; text-align: center; padding: 20px; }
.feature-photo-inner svg { width: 52px; height: 52px; stroke: rgba(255,255,255,0.3); fill: none; stroke-width: 1; }
.feature-quote { font-size: 17px; font-style: italic; color: var(--green); line-height: 1.75; padding: 20px 24px; border-left: 3px solid var(--amber); background: rgba(245,158,11,0.06); border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; }
.feature-points { display: flex; flex-direction: column; gap: 12px; }
.feature-point { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); line-height: 1.65; }
.fp-icon { flex-shrink: 0; width: 28px; height: 28px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.fp-icon svg { width: 14px; height: 14px; stroke: var(--amber); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.step-card { display: flex; gap: 22px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: box-shadow var(--transition),transform var(--transition); }
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-number { flex-shrink: 0; width: 52px; height: 52px; background: var(--amber); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 22px; font-weight: 700; }
.step-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.why-section { background: var(--green); }
.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.why-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px 24px; display: flex; gap: 18px; align-items: flex-start; transition: background var(--transition),border-color var(--transition),transform var(--transition); }
.why-card:hover { background: rgba(255,255,255,0.13); border-color: rgba(245,158,11,0.45); transform: translateY(-3px); }
.why-icon { flex-shrink: 0; width: 48px; height: 48px; background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--amber); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.gallery-card { background: var(--green); border-radius: var(--radius); aspect-ratio: 4/3; position: relative; overflow: hidden; display: flex; align-items: flex-end; transition: transform var(--transition),box-shadow var(--transition); }
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.gallery-inner { padding: 16px; background: linear-gradient(to top,rgba(0,0,0,0.72) 0%,transparent 100%); width: 100%; }
.gallery-neighborhood { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); display: block; }
.gallery-tag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--amber); background: rgba(245,158,11,0.2); border: 1px solid rgba(245,158,11,0.4); padding: 2px 8px; border-radius: var(--radius-full); margin-top: 4px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger { width: 100%; background: none; border: none; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--green); text-align: left; transition: color var(--transition); }
.faq-trigger:hover { color: var(--amber-dark); }
.faq-chevron { flex-shrink: 0; width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.35s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-body { display: none; padding-bottom: 22px; }
.faq-item.open .faq-body { display: block; }
.faq-body p { font-size: 15px; color: var(--text-light); line-height: 1.8; }
.areas-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.area-link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-weight: 500; color: var(--text); background: var(--off-white); transition: all var(--transition); }
.area-link:hover { background: var(--white); border-color: var(--amber); color: var(--green); transform: translateX(3px); }
.area-link::before { content: ''; width: 7px; height: 7px; background: var(--amber); border-radius: 50%; flex-shrink: 0; }
.cta-section { background: var(--amber); padding: 72px 20px; text-align: center; }
.cta-section h2 { font-size: clamp(24px,4vw,38px); font-weight: 700; color: var(--green); margin-bottom: 14px; }
.cta-section p { font-size: 18px; color: var(--green); opacity: 0.82; margin-bottom: 34px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.includes-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.include-item { display: flex; align-items: flex-start; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: box-shadow var(--transition),border-color var(--transition),transform var(--transition); }
.include-item:hover { box-shadow: var(--shadow); border-color: var(--amber); transform: translateY(-2px); }
.include-check { flex-shrink: 0; width: 32px; height: 32px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.include-check svg { width: 15px; height: 15px; fill: none; stroke: var(--amber); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.include-item h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.include-item p { font-size: 14px; color: var(--text-light); line-height: 1.55; }
.cost-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--amber); border-radius: var(--radius); padding: 32px 28px; max-width: 720px; margin: 0 auto; }
.cost-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.cost-range { font-family: var(--font-head); font-size: 38px; font-weight: 700; color: var(--amber); margin-bottom: 16px; }
.cost-card > p { font-size: 14px; color: var(--text-light); line-height: 1.75; margin-bottom: 10px; }
.cost-factors { margin-top: 16px; }
.cost-factors li { font-size: 14px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: center; }
.cost-factors li:last-child { border-bottom: none; }
.cost-factors li::before { content: ''; width: 6px; height: 6px; background: var(--amber); border-radius: 50%; flex-shrink: 0; }
.cost-disclaimer { font-size: 13px; font-style: italic; color: var(--text-light); margin-top: 16px; }
.compliance-card { background: rgba(26,58,42,0.05); border: 1px solid rgba(26,58,42,0.15); border-radius: var(--radius); padding: 28px; }
.compliance-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.compliance-card p { font-size: 15px; color: var(--text); line-height: 1.75; }
.service-links-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.service-link-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 15px 16px; font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 8px; transition: all var(--transition); }
.service-link-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.service-link-card::before { content: ''; width: 6px; height: 6px; background: var(--amber); border-radius: 50%; flex-shrink: 0; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition),box-shadow var(--transition); display: block; color: inherit; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card-img { background: var(--green); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.blog-card-img svg { width: 48px; height: 48px; stroke: rgba(245,158,11,0.5); fill: none; stroke-width: 1.5; }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 8px; line-height: 1.35; transition: color var(--transition); }
.blog-card:hover h3 { color: var(--amber-dark); }
.blog-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.blog-meta { font-size: 12px; color: var(--text-light); margin-top: 14px; }
.blog-prose { max-width: 780px; margin: 0 auto; }
.blog-prose h2 { font-family: var(--font-head); font-size: clamp(20px,3vw,26px); font-weight: 700; color: var(--green); margin: 40px 0 14px; }
.blog-prose h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--green); margin: 28px 0 10px; }
.blog-prose p { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 18px; }
.blog-prose ul,.blog-prose ol { padding-left: 24px; margin-bottom: 18px; }
.blog-prose li { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 6px; }
.blog-prose ul { list-style: disc; }
.blog-prose ol { list-style: decimal; }
.blog-prose strong { color: var(--green); }
.blog-cta-inline { background: var(--off-white); border: 1px solid var(--border); border-left: 4px solid var(--amber); border-radius: var(--radius); padding: 24px; margin: 32px 0; }
.blog-cta-inline h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.blog-cta-inline p { margin-bottom: 14px; font-size: 15px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--green); margin-bottom: 6px; font-family: var(--font-head); }
.form-group input,.form-group select,.form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--white); transition: border-color var(--transition),box-shadow var(--transition); outline: none; -webkit-appearance: none; appearance: none; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,58,42,0.08); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.ci-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.ci-icon svg { width: 18px; height: 18px; stroke: var(--amber); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-item h4 { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 4px; }
.contact-info-item p,.contact-info-item a { font-size: 15px; color: var(--text); line-height: 1.65; display: block; }
.contact-info-item a:hover { color: var(--green); }
.about-values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.about-value-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: box-shadow var(--transition),transform var(--transition); }
.about-value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.av-icon { width: 48px; height: 48px; background: var(--green); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.av-icon svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.about-value-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.about-value-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.review-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--off-white); padding: 40px 20px; }
.review-card { background: var(--white); border-radius: 16px; border: 1px solid var(--border); padding: 52px 40px; max-width: 560px; width: 100%; text-align: center; box-shadow: var(--shadow); }
.review-stars { font-size: 40px; margin-bottom: 18px; line-height: 1; }
.review-card h1 { font-size: clamp(24px,4vw,34px); color: var(--green); margin-bottom: 14px; }
.review-card > p { font-size: 16px; color: var(--text-light); line-height: 1.75; margin-bottom: 32px; }
.review-logo { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--green); margin-top: 28px; display: block; }
.review-logo span { color: var(--amber); }
.footer { background: var(--green-dark); color: rgba(255,255,255,0.78); padding: 60px 20px 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer .logo,.footer-logo { font-family: var(--font-head); color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.footer-emergency { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); border-radius: 6px; padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--amber); margin: 14px 0 8px; display: flex; align-items: center; gap: 8px; }
.footer-emergency svg { width: 16px; height: 16px; stroke: var(--amber); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer-col h4 { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 16px; }
.footer-col a,.footer-col p { display: block; font-size: 14px; line-height: 2.1; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--amber); }
.social-links { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 7px; font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500; transition: color var(--transition); }
.social-link:hover { color: var(--amber); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.mobile-call-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--amber); color: var(--green); padding: 15px 20px; font-family: var(--font-head); font-weight: 700; font-size: 16px; text-decoration: none; justify-content: center; align-items: center; gap: 10px; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); }
.mobile-call-bar svg { width: 20px; height: 20px; fill: var(--green); }
@media (min-width: 640px) {
  .services-grid,.why-grid,.blog-grid,.about-values-grid { grid-template-columns: repeat(2,1fr); }
  .includes-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(3,1fr); }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
  .service-links-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 1000; font-size: 20px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; font-weight: 600; color: var(--green); padding: 8px 0; text-decoration: none; }
  .nav-links .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background: transparent; padding: 0; min-width: unset; text-align: center; }
  .nav-links .dropdown a { font-size: 15px; color: var(--text-light); }
}
@media (min-width: 769px) {
  .nav-links { display: flex; }
  .trust-grid { grid-template-columns: repeat(4,1fr); }
  .areas-grid { grid-template-columns: repeat(4,1fr); }
  .mobile-call-bar { display: none; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
  .blog-grid { grid-template-columns: repeat(3,1fr); }
  .about-values-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 767px) {
  html,body { overflow-x: hidden; }
  body { padding-bottom: 62px; }
  section { padding: 48px 0; }
  .header-inner { flex-wrap: wrap; padding: 10px 16px; gap: 6px; }
  .logo { flex: 1; }
  .header-buttons { width: 100%; gap: 8px; }
  .header-buttons .btn { flex: 1; font-size: 13px; padding: 10px 8px; }
  .hero { padding: 72px 20px; min-height: 320px; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-buttons .btn { width: 100%; }
  .page-hero { padding: 56px 20px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid,.why-grid,.includes-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .service-links-grid { grid-template-columns: repeat(2,1fr); }
  .cta-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-buttons .btn { width: 100%; }
  .hero-trust { gap: 14px; }
  .review-card { padding: 36px 24px; }
  .cost-range { font-size: 30px; }
}

/* ── Additional utility classes ── */
.feature-photo-placeholder,.feature-photo-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.45); font-size: 14px; text-align: center; padding: 24px; }
.feature-photo-placeholder svg,.feature-photo-inner svg { width: 56px; height: 56px; stroke: rgba(255,255,255,0.3); fill: none; stroke-width: 1; }
.feature-content { display: flex; flex-direction: column; gap: 0; }
.feature-grid-2col { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .feature-grid-2col { grid-template-columns: 1fr 1fr; } }

/* Blog article layout */
.blog-article { padding: 60px 0; }
.blog-content { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.blog-content h2 { font-family: var(--font-head); font-size: clamp(20px,3vw,26px); font-weight: 700; color: var(--green); margin: 40px 0 14px; }
.blog-content h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--green); margin: 28px 0 10px; }
.blog-content p { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 18px; }
.blog-content ul,.blog-content ol { padding-left: 24px; margin-bottom: 18px; }
.blog-content li { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 6px; }
.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content strong { color: var(--green); font-weight: 700; }
.blog-meta-bar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.65); }
.blog-meta-bar .blog-tag { background: rgba(245,158,11,0.2); color: var(--amber); padding: 3px 10px; border-radius: var(--radius-full); font-size: 12px; letter-spacing: 0.06em; }
.blog-related { border-top: 1px solid var(--border); padding-top: 32px; margin-top: 40px; }
.blog-related h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 14px; }
.blog-related ul { list-style: none; padding: 0; }
.blog-related li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.blog-related li:last-child { border-bottom: none; }
.blog-related a { font-size: 15px; color: var(--green); font-weight: 500; transition: color var(--transition); }
.blog-related a:hover { color: var(--amber-dark); }
.blog-read-more { display: inline-flex; align-items: center; font-size: 14px; font-weight: 600; color: var(--green); margin-top: 14px; transition: color var(--transition); gap: 4px; }
.blog-read-more:hover { color: var(--amber-dark); }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card-meta time { font-size: 12px; color: var(--text-light); }
.blog-card h2 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 8px; line-height: 1.35; }
.blog-card h2 a { color: inherit; transition: color var(--transition); }
.blog-card:hover h2 a,.blog-card:hover h2 { color: var(--amber-dark); }
.blog-card { padding: 24px; }

/* Contact page extras */
.contact-info-item h4,.contact-info-item strong { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 4px; display: block; }
.contact-info-item a,.contact-info-item span { font-size: 15px; color: var(--text); line-height: 1.65; display: block; }
.contact-info-item a:hover { color: var(--green); }

/* Service hover — explicit for clarity */
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,58,42,0.22); border-color: rgba(245,158,11,0.45); }
.about-value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.include-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(245,158,11,0.5); }

/* section with green bg text helpers */
.section-dark { background: var(--green); }
.section-dark .section-title { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }

/* Generic card styles */
.feature-card, .card { border-radius: 10px; padding: 28px 24px; background: white; border: 1px solid var(--border); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; }
.feature-card:hover, .card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,58,42,0.12); }

/* ── Projects gallery (FIX 2) ── */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
@media (max-width: 768px) { .projects-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .projects-grid { grid-template-columns: 1fr; } }
.proj-card { border-radius: 12px; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; position: relative; overflow: hidden; }
.proj-tag { align-self: flex-start; background: #f59e0b; color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px; }
.proj-text { margin-top: auto; }
.proj-loc { font-weight: 700; font-size: 15px; color: white; margin-bottom: 2px; }
.proj-desc { font-size: 13px; color: rgba(255,255,255,0.8); }

/* ── Contact cards (FIX 4) ── */
.contact-card { background: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: 28px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.contact-card-icon { font-size: 36px; display: block; margin-bottom: 4px; }
.contact-card strong { font-size: 15px; color: #1a3a2a; font-weight: 700; }
.contact-card p, .contact-card a { font-size: 14px; color: #6b7280; text-decoration: none; }
.contact-card a:hover { color: #1a3a2a; }

/* ── Process/feature cards (FIX 6) ── */
.process-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 24px !important; width: 100% !important; max-width: 100% !important; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr !important; } }
.process-card, .install-card { background: white !important; border: 1.5px solid #e5e7eb !important; border-radius: 12px !important; padding: 28px 24px !important; display: flex !important; flex-direction: column !important; align-items: flex-start !important; text-align: left !important; width: 100% !important; min-width: 0 !important; overflow: hidden !important; box-sizing: border-box !important; }
.process-number { font-size: 40px !important; font-weight: 800 !important; color: #e8f0eb !important; line-height: 1 !important; margin-bottom: 12px !important; display: block !important; }
.process-card h3 { font-size: 17px !important; font-weight: 700 !important; color: #1a3a2a !important; margin-bottom: 10px !important; word-wrap: break-word !important; white-space: normal !important; }
.process-card p { font-size: 14px !important; color: #6b7280 !important; line-height: 1.7 !important; word-wrap: break-word !important; white-space: normal !important; overflow-wrap: break-word !important; }

/* ── Mobile overflow fixes (FIX 8) ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  section { padding: 48px 0; }
  h1 { font-size: clamp(24px, 7vw, 32px) !important; }
  h2 { font-size: clamp(20px, 6vw, 28px) !important; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
}

/* ── Service hero buttons (FIX 5) ── */
.service-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }

/* ── btn-outline inside dark (page-hero) sections ── */
.page-hero .btn-outline,
.hero .btn-outline {
  border: 2px solid rgba(255,255,255,0.75);
  color: white;
  background: transparent;
}
.page-hero .btn-outline:hover,
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}
/* btn-outline-dark for white-background sections */
.btn-outline-dark { border: 2px solid #1a3a2a; color: #1a3a2a; background: transparent; padding: 13px 28px; border-radius: 999px; font-weight: 700; font-size: 16px; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-outline-dark:hover { background: #1a3a2a; color: white; }

/* ── Project card text (FIX 5) ── */
.proj-loc { font-weight: 700; font-size: 16px; color: white; margin-bottom: 4px; text-shadow: 0 1px 4px rgba(0,0,0,0.5); text-align: left; }
.proj-desc { font-size: 13px; color: rgba(255,255,255,0.9); text-shadow: 0 1px 4px rgba(0,0,0,0.5); text-align: left; }
.section-sub { text-align: center; }
@media (max-width: 768px) {
  .proj-loc { font-size: 14px; }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) { .projects-grid { grid-template-columns: 1fr; } }


/* ═══ TOP BAR ═══ */
.top-bar {
  background: #1a3a2a;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  padding: 6px 0;
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-social-link {
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s;
}
.top-social-link:hover { color: #f59e0b; }
.top-bar-info {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .top-bar-info { display: none; }
}

/* ═══ SITE HEADER ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 70px;
}

/* ═══ BRAND LEFT ═══ */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.brand-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a3a2a;
  white-space: nowrap;
}
.brand-tag {
  font-size: 9px;
  font-weight: 600;
  color: #f59e0b;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ═══ NAV CENTER ═══ */
.nav-links {
  display: flex !important;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
}
.nav-links > a,
.nav-drop-btn {
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
}
.nav-links > a:hover,
.nav-drop-btn:hover {
  color: #1a3a2a;
  background: #f0f4f1;
}

/* ═══ DROPDOWN ═══ */
.nav-dropdown { position: relative; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px;
  min-width: 230px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 100;
}
.nav-dropdown:hover .nav-drop-menu {
  display: block;
}
.nav-drop-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-drop-menu a:hover {
  background: #f0f4f1;
  color: #1a3a2a;
}

/* ═══ RIGHT CTA ═══ */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1a3a2a;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: #f59e0b; }
.header-btn {
  background: #f59e0b;
  color: white;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-btn:hover { background: #d97706; }

/* ═══ HAMBURGER ═══ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 9999;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a3a2a;
  border-radius: 2px;
  transition: all 0.3s;
  pointer-events: none;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══ STICKY TEXT BUTTON ═══ */
.sticky-text-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #1a3a2a;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 888;
  transition: background 0.2s, transform 0.2s;
}
.sticky-text-btn:hover {
  background: #0e2419;
  transform: translateY(-2px);
}

/* ═══ MOBILE ≤900px ═══ */
@media (max-width: 900px) {
  .nav-links {
    display: none !important;
    position: fixed;
    inset: 0;
    background: white;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 9998;
    padding: 80px 24px 40px;
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-links > a,
  .nav-drop-btn {
    font-size: 20px;
    font-weight: 600;
    padding: 12px 24px;
    width: 100%;
    text-align: center;
    display: block;
  }
  .nav-drop-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid #f3f4f6;
    border-radius: 0;
    display: block;
    min-width: unset;
    width: 100%;
    padding: 4px 0;
  }
  .nav-drop-menu a {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
  }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .brand-tag { display: none; }
  .header-inner { height: 60px; }
}
@media (max-width: 360px) {
  .sticky-text-btn span { display: none; }
  .sticky-text-btn {
    padding: 14px;
    border-radius: 50%;
    bottom: 80px;
    left: 16px;
    width: 50px;
    height: 50px;
    justify-content: center;
  }
}

/* ═══ HERO TAGLINE ═══ */
.hero-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f59e0b;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* ═══ GALLERY ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  background: #1a3a2a;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-placeholder {
  width: 100%;
  height: calc(100% - 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,58,42,0.95);
  padding: 10px 14px;
}
.gallery-loc {
  font-weight: 700;
  font-size: 14px;
  color: white;
  display: block;
}
.gallery-job {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: block;
}

/* ═══ JOBBER FORM ═══ */
.jobber-form-wrap { width: 100%; }
.jobber-form-wrap iframe,
.jobber-form-wrap > div { width: 100% !important; min-width: unset !important; }

/* ═══ PROJ LINK HOVER ═══ */
a.proj-link { text-decoration: none; display: block; }
a.proj-link .proj-card { cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
a.proj-link:hover .proj-card { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

/* ═══ DISCOUNT BANNER ═══ */
.discount-banner {
  background: linear-gradient(135deg, #1a3a2a 0%, #0e2419 100%);
  padding: 18px 20px;
  border-bottom: 3px solid #f59e0b;
}
.discount-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.discount-badge {
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.5);
  color: #f59e0b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.discount-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.discount-banner strong {
  color: white;
}
.discount-btn {
  background: #f59e0b;
  color: #1a3a2a;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.discount-btn:hover { background: #d97706; }
