/* ===========================================================
   NXTGEN ELECTRICAL — BUILDER STYLE (shared)
   One source of truth for all inner pages. Matches about.html.
   Brand: red #d62828 on cream, Playfair Display + Montserrat.
   =========================================================== */

/* ── PHOTO SERVICE CARDS (image + dark overlay + red icon) ── */
.svc-section { background: var(--cream); padding: 90px 60px 100px; text-align: center; }
.svc-head { max-width: 860px; margin: 0 auto 50px; }
.svc-eyebrow { display: inline-flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 18px; }
.svc-eyebrow::before, .svc-eyebrow::after { content: ''; width: 38px; height: 1px; background: var(--orange); display: inline-block; }
.svc-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.4vw, 52px); font-weight: 900; color: var(--dark); line-height: 1.1; margin-bottom: 18px; }
.svc-sub { font-size: 16px; color: var(--gray); line-height: 1.8; font-weight: 300; max-width: 720px; margin: 0 auto; }
.svc-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { position: relative; display: flex; aspect-ratio: 16/11; border-radius: 6px; overflow: hidden; background: var(--dark); box-shadow: 0 8px 26px rgba(0,0,0,0.12); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.7s ease; }
.svc-card:hover img { transform: scale(1.06); }
.svc-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0.35) 32%, transparent 60%); }
.svc-body { position: absolute; z-index: 2; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 26px 24px; text-align: center; }
.svc-icon { display: none; }
.svc-body h3 { font-family: 'Playfair Display', serif; font-size: 23px; font-weight: 700; color: #fff; margin-bottom: 0; text-transform: none; letter-spacing: normal; }
.svc-body p { display: none; }
.svc-learn { display: none; }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .svc-section { padding-left: 24px; padding-right: 24px; } .svc-grid { grid-template-columns: 1fr; max-width: 460px; } }

:root {
  --cream: #f5f0e8;
  --cream-dark: #ede8dc;
  --orange: #d62828;
  --orange-light: #e8463f;
  --orange-dark: #a81f1f;
  --dark: #1c1c1c;
  --gray: #555;
  --light-gray: #999;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: 'Montserrat', sans-serif; font-weight: 400; overflow-x: hidden; }

/* ── UTILITIES ── */
.eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); font-weight: 700; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-weight: 900; color: var(--dark); font-size: clamp(28px, 4vw, 46px); line-height: 1.15; }
.divider { width: 60px; height: 2px; background: var(--orange); margin: 22px auto 0; }
.svg-icon, .ic { fill: none; stroke-linecap: round; stroke-linejoin: round; }

.btn-primary { background: var(--orange); color: var(--white); padding: 15px 34px; text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; border-radius: 2px; transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--dark); padding: 14px 34px; text-decoration: none; display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; border: 1.5px solid var(--dark); border-radius: 2px; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; width: 100%; background: var(--cream); border-bottom: 1px solid rgba(214,40,40,0.18); display: flex; align-items: center; justify-content: space-between; padding: 14px 60px; }
.nav-logo img { height: 58px; object-fit: contain; }
.nav-logo-fallback { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--dark); letter-spacing: 1px; }
.nav-logo-fallback span { color: var(--orange); }
.nav-links { display: flex; gap: 38px; list-style: none; align-items: center; }
.nav-links a { color: var(--dark); text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown:hover .dropdown { display: block; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--cream); border: 1px solid rgba(214,40,40,0.2); min-width: 180px; padding: 8px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-radius: 4px; }
.dropdown a { display: block; padding: 10px 20px; color: var(--dark); text-decoration: none; font-size: 11px; letter-spacing: 1.5px; }
.dropdown a:hover { background: var(--cream-dark); color: var(--orange); }
.nav-cta { background: var(--orange); color: var(--white); padding: 11px 26px; text-decoration: none; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; transition: background 0.2s; border-radius: 2px; }
.nav-cta:hover { background: var(--orange-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); display: block; }

.mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--dark); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--white); text-decoration: none; }
.mobile-menu a:hover { color: var(--orange-light); }
.mobile-close { position: absolute; top: 20px; right: 28px; background: none; border: none; font-size: 32px; cursor: pointer; color: var(--white); }

/* ── SPLIT HERO ── */
.page-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.page-hero-text { background: var(--cream); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 78px 70px 78px 60px; }
.page-hero-text .eyebrow { margin-bottom: 22px; }
.page-hero-text h1 { font-family: 'Playfair Display', serif; font-weight: 900; color: var(--dark); font-size: clamp(36px, 4.4vw, 60px); line-height: 1.08; margin-bottom: 24px; }
.page-hero-text h1 span { color: var(--orange); }
.hero-divider { width: 64px; height: 3px; background: var(--orange); margin-bottom: 26px; }
.page-hero-text p { font-size: 16px; color: var(--gray); line-height: 1.85; font-weight: 300; max-width: 460px; margin-bottom: 34px; }
.page-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-img { position: relative; background: var(--cream-dark); }
.page-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── GENERIC SECTION ── */
.bsection { padding: 96px 60px; }
.bsection.center { text-align: center; }
.bsection-inner { max-width: 1240px; margin: 0 auto; }
.bsection .eyebrow { margin-bottom: 14px; }
.bsection.center .section-title + .divider { margin-top: 22px; }
.bhead { text-align: center; margin-bottom: 56px; }

/* ── ICON CARDS (no image) ── */
.icon-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.icon-card { background: var(--white); border-radius: 8px; padding: 40px 32px; box-shadow: 0 8px 30px rgba(0,0,0,0.07); text-align: left; transition: transform 0.3s, box-shadow 0.3s; }
.icon-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.icon-tile { width: 58px; height: 58px; border-radius: 12px; background: rgba(214,40,40,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.icon-card h3 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.icon-card p { font-size: 14px; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* ── IMAGE CARDS (photo + overlapping red circle icon) ── */
.card-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.img-card { background: var(--white); border-radius: 6px; box-shadow: 0 8px 30px rgba(0,0,0,0.09); text-align: left; }
.img-card-media { position: relative; }
.img-card-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 6px 6px 0 0; display: block; }
.img-card-icon { position: absolute; left: 28px; bottom: -26px; width: 56px; height: 56px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(214,40,40,0.4); }
.img-card-body { padding: 44px 30px 32px; }
.img-card-body h3 { font-family: 'Playfair Display', serif; font-size: 25px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.img-card-body p { font-size: 14px; color: var(--gray); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.learn { color: var(--orange); text-decoration: none; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.learn:hover { color: var(--orange-dark); }

/* ── DARK "BY THE NUMBERS" BAND ── */
.darkband { background: var(--dark); padding: 80px 60px; }
.darkband-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.darkband .eyebrow { color: var(--orange); margin-bottom: 26px; }
.check-list { list-style: none; }
.check-list li { display: flex; align-items: center; gap: 14px; padding: 11px 0; color: rgba(255,255,255,0.92); font-size: 15px; }
.check-list svg { flex: none; }
.by-numbers { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 60px; }
.bn-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.bn-item { text-align: center; padding: 0 14px; border-left: 1px solid rgba(255,255,255,0.1); }
.bn-item:first-child { border-left: none; }
.bn-icon { display: block; margin: 0 auto 16px; height: 40px; }
.bn-num { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3vw, 44px); font-weight: 900; color: var(--white); line-height: 1; display: block; }
.bn-rule { width: 30px; height: 2px; background: var(--orange); margin: 12px auto; }
.bn-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; line-height: 1.5; display: block; }

/* ── TRUSTED BY ── */
.trusted { background: var(--cream); padding: 58px 60px 68px; text-align: center; }
.trusted .eyebrow { margin-bottom: 34px; }
.logos { max-width: 1340px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 40px; }
.logo-tile { display: flex; align-items: center; justify-content: center; }
.logo-tile img { max-height: 58px; max-width: 150px; width: auto; object-fit: contain; display: block; mix-blend-mode: multiply; }
.logo-fallback { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: #6b6b6b; text-align: center; }

/* ── PROCESS STEPS ── */
.process-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 0 12px; }
.process-num { width: 54px; height: 54px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: 'Playfair Display', serif; font-weight: 900; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 6px 16px rgba(214,40,40,0.35); }
.process-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-desc { font-size: 13px; color: var(--gray); line-height: 1.75; font-weight: 300; }

/* ── SECTORS (horizontal icon rows) ── */
.sectors-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.sector-item { display: flex; gap: 20px; background: var(--white); border-radius: 8px; padding: 28px; box-shadow: 0 6px 24px rgba(0,0,0,0.06); border-left: 3px solid var(--orange); }
.sector-icon { flex: none; width: 48px; height: 48px; }
.sector-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.sector-desc { font-size: 13px; color: var(--gray); line-height: 1.75; font-weight: 300; }

/* ── RESPONSE CARDS ── */
.response-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.response-card { background: var(--white); border-radius: 8px; padding: 40px 28px; text-align: center; box-shadow: 0 8px 28px rgba(0,0,0,0.06); border-top: 3px solid var(--orange); }
.response-num { font-family: 'Playfair Display', serif; font-size: clamp(34px, 4vw, 48px); font-weight: 900; color: var(--orange); display: block; line-height: 1; }
.response-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); font-weight: 700; display: block; margin: 14px 0 12px; }
.response-desc { font-size: 13px; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* ── EMERGENCY BAR ── */
.emergency-bar { background: var(--orange); color: var(--white); text-align: center; padding: 16px 24px; font-size: 13px; letter-spacing: 1px; font-weight: 600; display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }
.emergency-bar a { color: var(--white); text-decoration: underline; }

/* ── LIGHT STATS BAR ── */
.statsbar { background: var(--cream-dark); padding: 54px 60px; }
.statsbar-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.statsbar .s-num { font-family: 'Playfair Display', serif; font-size: clamp(34px, 4vw, 50px); font-weight: 900; color: var(--orange); line-height: 1; display: block; }
.statsbar .s-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); font-weight: 600; margin-top: 10px; display: block; }

/* ── PROJECTS GRID ── */
.projects-section { padding: 96px 60px; }
.projects-section .bhead { margin-bottom: 50px; }
.projects-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.project-card:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(0,0,0,0.13); }
.project-card.featured { grid-column: span 2; }
.project-img { position: relative; background: var(--cream-dark); min-height: 200px; display: flex; align-items: center; justify-content: center; font-size: 54px; }
.project-img img { width: 100%; height: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.project-card.featured .project-img img { aspect-ratio: 16/8; }
.project-tag { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--orange); color: var(--white); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 6px 14px; border-radius: 2px; }
.project-info { padding: 26px 26px 30px; }
.project-location { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 8px; }
.project-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.project-desc { font-size: 13px; color: var(--gray); line-height: 1.8; font-weight: 300; }
.commercial-band { background: var(--cream-dark); }

/* ── VIDEO BAND ── */
.video-section { background: var(--dark); padding: 90px 60px; }
.video-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.video-inner .section-title { color: var(--white); }
.video-inner .divider { margin-bottom: 40px; }
.video-wrap { position: relative; overflow: hidden; margin-top: 10px; }
.video-track { display: flex; transition: transform 0.5s ease; }
.video-slide { min-width: 100%; position: relative; }
.video-slide video { width: 100%; aspect-ratio: 16/7; object-fit: cover; opacity: 0.8; display: block; }
.video-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 36px; text-align: left; background: linear-gradient(to top, rgba(28,28,28,0.85), transparent); }
.video-caption h3 { font-family: 'Playfair Display', serif; font-size: clamp(20px,3vw,32px); color: var(--white); font-weight: 900; }
.video-caption h3 span { color: var(--orange-light); }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.dot { width: 28px; height: 3px; background: rgba(255,255,255,0.25); border: none; cursor: pointer; transition: background 0.2s; }
.dot.active { background: var(--orange); }

/* ── CONTACT ── */
.contact-main { max-width: 1200px; margin: 0 auto; padding: 96px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-info .section-title { text-align: left; }
.contact-info .divider { margin: 22px 0 0; }
.contact-info > p { font-size: 14px; color: var(--gray); line-height: 1.8; font-weight: 300; margin: 26px 0 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.contact-icon { width: 42px; height: 42px; min-width: 42px; background: var(--orange); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.contact-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--light-gray); margin-bottom: 4px; font-weight: 600; }
.contact-value { font-size: 15px; font-weight: 500; color: var(--dark); }
.contact-value a { color: var(--dark); text-decoration: none; }
.contact-value a:hover { color: var(--orange); }
.contact-hours { margin-top: 28px; background: var(--cream-dark); border-radius: 8px; padding: 24px 26px; }
.contact-hours-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray); padding: 6px 0; }
.hours-emergency { margin-top: 12px; font-size: 12px; color: var(--orange-dark); font-weight: 600; }
.contact-form-wrap { background: var(--white); border-radius: 10px; padding: 40px; box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.form-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.form-subtitle { font-size: 13px; color: var(--gray); font-weight: 300; margin-bottom: 24px; }
.nxtgen-contact-form { display: flex; flex-direction: column; gap: 14px; }
.nxtgen-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nxtgen-form-field { display: flex; flex-direction: column; gap: 6px; }
.nxtgen-form-field label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); font-weight: 600; }
.nxtgen-form-field input, .nxtgen-form-field select, .nxtgen-form-field textarea { background: var(--cream); border: 1px solid rgba(0,0,0,0.15); color: var(--dark); padding: 13px 16px; font-family: 'Montserrat', sans-serif; font-size: 13px; outline: none; border-radius: 4px; transition: border-color 0.2s; width: 100%; }
.nxtgen-form-field input:focus, .nxtgen-form-field select:focus, .nxtgen-form-field textarea:focus { border-color: var(--orange); }
.nxtgen-form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--orange); color: var(--white); border: none; cursor: pointer; padding: 16px; font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: 3px; font-weight: 700; border-radius: 2px; transition: background 0.2s; }
.form-submit:hover { background: var(--orange-dark); }
.form-success { display: none; color: var(--orange); font-size: 13px; text-align: center; margin-top: 8px; font-weight: 600; }

/* ── MAP ── */
.map-section { padding: 0 60px 96px; text-align: center; }
.map-inner { max-width: 1100px; margin: 0 auto; }
.map-inner .divider { margin-bottom: 40px; }
.map-placeholder { background: var(--cream-dark); border-radius: 10px; padding: 70px 30px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.map-placeholder > span { font-size: 48px; }
.map-address { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.map-placeholder p { font-size: 13px; color: var(--gray); font-weight: 300; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--orange); padding: 100px 60px; text-align: center; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.92); font-weight: 300; max-width: 540px; margin: 0 auto 32px; line-height: 1.8; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-white { background: var(--white); color: var(--orange-dark); padding: 16px 42px; text-decoration: none; display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; border-radius: 2px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.28); }
.cta-outline-white { background: transparent; color: var(--white); padding: 15px 42px; text-decoration: none; display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; border: 1.5px solid rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.2s; }
.cta-outline-white:hover { background: var(--white); color: var(--orange-dark); }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 3px solid var(--orange); padding: 48px 60px; }
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px; }
.footer-logo img { height: 46px; }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 12px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-img { min-height: 340px; }
  .page-hero-img img { position: static; height: 340px; }
  .icon-grid, .card-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card.featured { grid-column: span 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .response-grid { grid-template-columns: 1fr; max-width: 460px; }
  .darkband-inner { grid-template-columns: 1fr; gap: 50px; }
  .by-numbers { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 44px; }
  .contact-main { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  nav { padding: 12px 22px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .page-hero-text { padding: 56px 24px; }
  .bsection, .darkband, .trusted, .projects-section, .video-section, .statsbar, .map-section { padding-left: 24px; padding-right: 24px; }
  .bsection { padding-top: 64px; padding-bottom: 64px; }
  .contact-main { padding: 64px 24px; }
  .cta-banner { padding: 70px 24px; }
  .icon-grid, .card-grid, .projects-grid, .sectors-grid { grid-template-columns: 1fr; max-width: 460px; }
  .project-card.featured { grid-column: span 1; }
  .bn-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .bn-item:nth-child(3) { border-left: none; }
  .statsbar-inner { grid-template-columns: 1fr; gap: 32px; }
  .nxtgen-form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .bn-grid { grid-template-columns: 1fr 1fr; }
}
