/* ===========================================================
   RED SOLUTIONS — Global Stylesheet
   =========================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --red: #C8201A;
  --red-dark: #9B1713;
  --black: #0D0D0D;
  --charcoal: #1A1A1A;
  --dark: #222222;
  --mid: #888888;
  --light: #F4F4F2;
  --white: #FFFFFF;
  --border: #2E2E2E;
  --border-l: #DDDDDD;
}

body{
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.6;
}

h1,h2,h3,h4,h5{
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ===================== NAV ===================== */
nav{
  background: var(--black);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--red);
}
.nav-logo{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-logo span{ color: var(--red); }
.nav-links{ display: flex; gap: 28px; list-style: none; }
.nav-links a{
  color: #aaa;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a:hover{ color: var(--white); }
.nav-links a.active{ color: var(--white); }
.nav-cta{
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover{ background: var(--red-dark); }

/* Mobile nav toggle */
.nav-toggle{ display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
.nav-mobile-panel{ display: none; }

/* Sticky mobile CTA */
.mobile-sticky-cta{
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 200;
}

@media (max-width: 880px){
  .nav-links{ display: none; }
  .nav-toggle{ display: block; }
  .mobile-sticky-cta{ display: block; }
  body{ padding-bottom: 56px; }
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb{
  background: var(--charcoal);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span{ font-size: 12px; color: #666; text-decoration: none; }
.breadcrumb a:hover{ color: #aaa; }
.breadcrumb .sep{ color: #444; }
.breadcrumb .current{ color: #aaa; }

/* ===================== HERO (homepage) ===================== */
.hero{
  background: var(--black);
  padding: 80px 32px;
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:'';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px);
  pointer-events: none;
}
.hero::after{ content:''; position: absolute; right: 0; top: 0; bottom: 0; width: 4px; background: var(--red); }
.hero-inner{ max-width: 720px; position: relative; z-index: 1; }
.hero-eyebrow{
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; margin-bottom: 20px;
}
.hero h1{ font-size: 56px; font-weight: 800; color: var(--white); text-transform: uppercase; line-height: 1.0; margin-bottom: 20px; }
.hero h1 span{ color: var(--red); }
.hero-sub{ font-size: 17px; color: #bbb; line-height: 1.6; margin-bottom: 12px; max-width: 600px; }
.hero-support{ font-size: 13px; color: #666; margin-bottom: 32px; line-height: 1.5; }
.hero-btns{ display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 700px){
  .hero h1{ font-size: 38px; }
  .hero{ padding: 56px 20px; }
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero{
  background: var(--black);
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content:'';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.025) 40px);
}
.page-hero::after{ content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); }
.page-hero-inner{ max-width: 760px; position: relative; z-index: 1; padding-left: 20px; }
.page-eyebrow{
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; margin-bottom: 16px;
}
.page-hero h1{ font-size: 46px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 16px; }
.page-hero-sub{ font-size: 16px; color: #bbb; line-height: 1.65; max-width: 620px; margin-bottom: 24px; }

@media (max-width: 700px){
  .page-hero h1{ font-size: 30px; }
  .page-hero-inner{ padding-left: 12px; }
}

/* ===================== BUTTONS ===================== */
.btn-primary{
  background: var(--red); color: var(--white);
  font-size: 13px; font-weight: 600; padding: 12px 28px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover{ background: var(--red-dark); }

.btn-outline{
  background: transparent; color: var(--white);
  font-size: 13px; font-weight: 600; padding: 12px 28px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid #555; cursor: pointer; font-family: 'Inter', sans-serif;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover{ border-color: var(--white); }
.btn-outline-dark{ background: transparent; color: var(--white); font-size: 13px; font-weight: 600; padding: 12px 28px; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid #555; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none; display: inline-block; }
.btn-outline-light{ background: transparent; color: #ccc; font-size: 13px; font-weight: 600; padding: 12px 28px; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid #555; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none; display: inline-block; }

.btn-white{
  background: var(--white); color: var(--red);
  font-size: 13px; font-weight: 700; padding: 14px 32px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  white-space: nowrap; text-decoration: none; display: inline-block;
}
.btn-white:hover{ background: var(--light); }

.btn-submit{
  background: var(--red); color: var(--white);
  font-size: 13px; font-weight: 700; padding: 14px 36px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  width: 100%; margin-top: 4px;
}
.btn-submit:hover{ background: var(--red-dark); }

/* ===================== TRUST BAR ===================== */
.trust-bar{ background: var(--charcoal); padding: 16px 32px; border-bottom: 1px solid var(--border); }
.trust-inner{ display: flex; gap: 0; flex-wrap: wrap; align-items: center; }
.trust-item{
  font-size: 12px; font-weight: 500; color: #999; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 24px 6px 0; margin-right: 24px; border-right: 1px solid var(--border); white-space: nowrap;
}
.trust-item:last-child{ border-right: none; }

/* ===================== GENERIC SECTIONS ===================== */
section, .section-wrap{ padding: 64px 32px; }
.section-wrap.light, section.light-section{ background: var(--light); }
.section-wrap.dark, section.dark-section{ background: var(--charcoal); }
section.dark-section .section-title{ color: var(--white); }
section.dark-section .section-sub{ color: #999; }

.section-label{
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.section-title{ font-size: 38px; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 12px; line-height: 1.1; }
.section-title.white{ color: var(--white); }
.section-sub{ font-size: 16px; color: #555; line-height: 1.65; margin-bottom: 40px; max-width: 640px; }
.content-h2{ font-size: 30px; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 16px; }
.content-p{ font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 16px; }
.content-p.light-text{ color: #aaa; }
.divider{ height: 1px; background: var(--border-l); margin: 36px 0; }

@media (max-width: 700px){
  .section-title{ font-size: 28px; }
  section, .section-wrap{ padding: 40px 20px; }
}

/* ===================== SERVICE CARDS (homepage) ===================== */
.services-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: #ddd; }
.service-card{ background: var(--white); padding: 28px 24px 24px 28px; border-left: 4px solid var(--red); position: relative; }
.service-card h3{ font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.service-card p{ font-size: 14px; color: #555; line-height: 1.6; }
.service-card .card-link{ display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--red); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
.service-card .card-link::after{ content: ' \2192'; }
.service-icon{ width: 36px; height: 36px; background: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon svg{ fill: none; stroke: var(--white); stroke-width: 2; }

/* ===================== EMERGENCY BAND ===================== */
.emergency{ background: var(--red); padding: 56px 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.emergency h2{ font-size: 36px; font-weight: 800; text-transform: uppercase; color: var(--white); max-width: 500px; line-height: 1.1; }
.emergency p{ color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.6; max-width: 480px; margin-top: 12px; }
.emergency-content{ flex: 1; min-width: 280px; }
.emergency-cta{ flex-shrink: 0; }

/* ===================== PRODUCTS / TAGS ===================== */
.products-grid{ display: flex; flex-wrap: wrap; gap: 8px; }
.product-tag{ background: var(--white); border: 1px solid #ddd; padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--black); cursor: pointer; }
.product-tag:hover{ border-color: var(--red); color: var(--red); }

/* ===================== INDUSTRIES GRID ===================== */
.industries-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: #ddd; }
.industry-item{ background: var(--white); padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.industry-dot{ width: 8px; height: 8px; background: var(--red); flex-shrink: 0; }
.industry-item span{ font-size: 14px; font-weight: 500; color: var(--black); }

/* ===================== WHY GRID ===================== */
.why-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.why-copy{ color: #aaa; font-size: 15px; line-height: 1.7; }
.why-points, .why-list{ list-style: none; display: flex; flex-direction: column; gap: 0; }
.why-point, .why-item{ display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-l); }
section.dark-section .why-point, section.dark-section .why-item{ border-bottom: 1px solid var(--border); }
.why-point:first-child, .why-item:first-child{ border-top: 1px solid var(--border-l); }
section.dark-section .why-point:first-child, section.dark-section .why-item:first-child{ border-top: 1px solid var(--border); }
.why-check{ width: 20px; height: 20px; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check::after{ content: '\2713'; color: white; font-size: 11px; font-weight: 700; }
.why-point span, .why-item span{ font-size: 14px; color: #ccc; line-height: 1.5; }

@media (max-width: 800px){
  .why-grid, .two-col{ grid-template-columns: 1fr; gap: 24px; }
}

/* ===================== SERVICE AREA TAGS ===================== */
.area-text{ font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 24px; max-width: 680px; }
.area-tags, .nearby-grid{ display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.area-tag, .nearby-tag{ background: var(--light); border: none; padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--black); text-decoration: none; display: inline-block; }
.nearby-tag{ background: var(--white); border: 1px solid var(--border-l); }
.nearby-tag:hover{ border-color: var(--red); color: var(--red); }

/* ===================== CONTACT / FORM ===================== */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3{ font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; color: var(--white); }
.contact-info p{ font-size: 14px; color: #aaa; line-height: 1.65; margin-bottom: 24px; }
.contact-detail{ display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: #ccc; }
.contact-detail-label{ color: #666; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; width: 70px; flex-shrink: 0; }

.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group{ display: flex; flex-direction: column; gap: 4px; }
.form-group.full{ grid-column: 1 / -1; }
label{ font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #888; }
input, select, textarea{
  background: #2A2A2A; border: 1px solid var(--border); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 14px; padding: 10px 12px; width: 100%;
  outline: none; border-radius: 0; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus{ border-color: var(--red); }
select option{ background: var(--charcoal); }
textarea{ resize: vertical; min-height: 90px; }
.upload-zone{ background: #2A2A2A; border: 1px dashed #444; padding: 20px; text-align: center; cursor: pointer; }
.upload-zone:hover{ border-color: var(--red); }
.upload-zone span, .upload-zone p{ font-size: 13px; color: #666; }
.form-note{ font-size: 11px; color: #555; line-height: 1.5; margin-top: 6px; }
.form-privacy{ font-size: 11px; color: #444; text-align: center; margin-top: 10px; }

@media (max-width: 800px){
  .contact-grid, .form-grid, .page-layout{ grid-template-columns: 1fr !important; }
}

/* ===================== FOOTER ===================== */
footer{ background: var(--black); padding: 48px 32px 24px; border-top: 2px solid var(--red); }
.footer-grid{ display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand{ font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: 0.08em; margin-bottom: 12px; text-decoration: none; display: inline-block; }
.footer-brand span{ color: var(--red); }
.footer-desc{ font-size: 13px; color: #666; line-height: 1.65; }
.footer-col h4{ font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 14px; }
.footer-links{ list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a{ font-size: 13px; color: #666; text-decoration: none; }
.footer-links a:hover{ color: #ccc; }
.footer-bottom{ border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy{ font-size: 12px; color: #444; }

/* Simple one-line footer (inner pages) */
footer.footer-simple{
  padding: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-links-row{ display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links-row a{ font-size: 12px; color: #555; text-decoration: none; }
.footer-links-row a:hover{ color: #aaa; }

@media (max-width: 800px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ===================== TWO-COL LAYOUTS (about, mechanical, etc) ===================== */
.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.two-col-3{ display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border-l); }
@media (max-width: 800px){ .two-col-3{ grid-template-columns: 1fr; } }

/* ===================== PAGE LAYOUT (service + sidebar pages) ===================== */
.page-layout{ display: grid; grid-template-columns: 1fr 300px; gap: 0; align-items: start; }
.page-main{ padding: 56px 48px 56px 32px; }
.page-sidebar{ padding: 40px 32px 40px 0; position: sticky; top: 60px; }

@media (max-width: 900px){
  .page-main{ padding: 40px 20px; }
  .page-sidebar{ padding: 0 20px 40px; position: static; }
}

/* Symptoms / what-we-do / equipment grids */
.symptoms-grid, .symptom-grid, .check-2col{ display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-l); margin: 24px 0; }
.symptom-grid{ grid-template-columns: 1fr 1fr 1fr; }
.symptom-item, .check-item{ background: var(--white); padding: 14px 16px; display: flex; align-items: flex-start; gap: 10px; }
.check-item{ background: var(--light); }
.symptom-dot{ width: 6px; height: 6px; background: var(--red); flex-shrink: 0; margin-top: 6px; }
.symptom-item span, .check-item span{ font-size: 14px; color: #333; line-height: 1.4; }
.check-mark{ width: 16px; height: 16px; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-mark::after{ content: '\2713'; color: white; font-size: 9px; font-weight: 700; }

.what-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-l); margin: 24px 0; }
.what-item{ background: var(--light); padding: 18px 20px; border-left: 3px solid var(--red); }
.what-item h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.what-item p{ font-size: 13px; color: #555; line-height: 1.5; }

.equip-list, .equip-grid{ display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.equip-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.equip-tag, .equip-item{ background: var(--charcoal); color: #ccc; padding: 7px 14px; font-size: 13px; font-weight: 500; }
.equip-item span{ font-size: 13px; color: #ccc; }

@media (max-width: 700px){
  .symptoms-grid, .symptom-grid, .check-2col, .what-grid{ grid-template-columns: 1fr; }
}

/* Process steps */
.process-steps{ margin: 24px 0; }
.process-step{ display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border-l); }
.process-step:first-child{ border-top: 1px solid var(--border-l); }
.step-num{ font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--red); flex-shrink: 0; width: 32px; line-height: 1; }
.step-content h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.step-content p{ font-size: 14px; color: #555; line-height: 1.55; }

/* FAQ */
.faq-list{ margin: 24px 0; }
.faq-item{ border-bottom: 1px solid var(--border-l); }
.faq-q{ padding: 18px 0 12px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q::after{ content: '+'; font-size: 20px; color: var(--red); flex-shrink: 0; font-family: 'Inter', sans-serif; font-weight: 400; }
.faq-q.open::after{ content: '\2212'; }
.faq-a{ padding-bottom: 18px; font-size: 14px; color: #555; line-height: 1.65; display: none; }
.faq-a.open{ display: block; }

/* CTA band (inner pages) */
.cta-band{ background: var(--charcoal); border-left: 4px solid var(--red); padding: 32px; margin: 40px 0 0; }
.cta-band h3{ font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.cta-band p{ font-size: 14px; color: #aaa; line-height: 1.6; margin-bottom: 20px; }
.cta-band-btns{ display: flex; gap: 10px; flex-wrap: wrap; }
.cta-band.cta-red{ background: var(--red); padding: 56px 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; border-left: none; margin: 0; }
.cta-band.cta-red h2{ font-size: 34px; font-weight: 800; text-transform: uppercase; color: var(--white); max-width: 480px; line-height: 1.1; }
.cta-band.cta-red p{ color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 10px; line-height: 1.6; }

/* Related services list */
.related-list{ list-style: none; }
.related-list li{ border-bottom: 1px solid var(--border-l); }
.related-list a{ display: flex; align-items: center; justify-content: space-between; padding: 12px 0; font-size: 14px; font-weight: 500; color: var(--black); text-decoration: none; }
.related-list a:hover{ color: var(--red); }
.related-list a::after{ content: '\2192'; color: var(--red); font-size: 12px; }

/* Sidebar cards */
.sidebar-card{ background: var(--light); padding: 24px; margin-bottom: 20px; border-top: 3px solid var(--red); }
.sidebar-card h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 12px; }
.sidebar-contact{ background: var(--black); padding: 24px; margin-bottom: 20px; }
.sidebar-contact h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.sidebar-contact p{ font-size: 13px; color: #888; line-height: 1.55; margin-bottom: 16px; }
.sidebar-phone{ font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: var(--red); display: block; margin-bottom: 12px; letter-spacing: 0.02em; text-decoration: none; }
.btn-sidebar{ background: var(--red); color: var(--white); font-size: 12px; font-weight: 600; padding: 10px 20px; letter-spacing: 0.06em; text-transform: uppercase; border: none; cursor: pointer; font-family: 'Inter', sans-serif; width: 100%; margin-bottom: 8px; text-decoration: none; display: block; text-align: center; }
.btn-sidebar:hover{ background: var(--red-dark); }
.btn-sidebar-out{ background: transparent; color: var(--white); font-size: 12px; font-weight: 600; padding: 10px 20px; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid #444; cursor: pointer; font-family: 'Inter', sans-serif; width: 100%; text-decoration: none; display: block; text-align: center; }
.sidebar-areas{ font-size: 13px; color: #666; line-height: 1.8; }

.city-links{ list-style: none; display: flex; flex-direction: column; gap: 0; }
.city-links li{ border-bottom: 1px solid var(--border-l); }
.city-links a{ display: block; padding: 9px 0; font-size: 13px; font-weight: 500; color: #333; text-decoration: none; }
.city-links a:hover{ color: var(--red); }
.city-links a.current-city{ color: var(--red); font-weight: 600; }

.simple-list{ list-style: none; }
.simple-list li{ display: flex; gap: 8px; font-size: 13px; color: #444; margin-bottom: 8px; }
.simple-list li span.dash{ color: var(--red); font-weight: 700; flex-shrink: 0; }

/* Local stats bar */
.local-stats{ display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-l); margin: 28px 0; }
.stat-block{ background: var(--light); padding: 20px; text-align: center; }
.stat-num{ font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 4px; }
.stat-label{ font-size: 12px; color: #666; letter-spacing: 0.04em; text-transform: uppercase; }

.stat-row{ display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); margin: 40px 0; }
.stat-row .stat-block{ background: var(--charcoal); padding: 28px 20px; }
.stat-row .stat-label{ color: #888; line-height: 1.4; }

@media (max-width: 700px){
  .local-stats, .stat-row{ grid-template-columns: 1fr 1fr; }
}

/* Services 2-col list (city pages) */
.services-2col{ display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-l); margin: 24px 0; }
.service-row{ background: var(--white); padding: 14px 18px; display: flex; align-items: center; gap: 10px; border-left: 3px solid var(--red); }
.service-row span{ font-size: 14px; font-weight: 500; color: var(--black); }
@media (max-width: 700px){ .services-2col{ grid-template-columns: 1fr; } }

.industry-pills{ display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.industry-pill{ background: var(--light); border: none; padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--black); }

/* Identity blocks (about page) */
.identity-block{ border-left: 4px solid var(--red); padding: 24px 28px; background: var(--light); margin-bottom: 16px; }
.identity-block h3{ font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.identity-block p{ font-size: 14px; color: #555; line-height: 1.65; }

.value-card{ background: var(--white); padding: 28px 24px; }
.value-num{ font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 8px; }
.value-card h3{ font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.value-card p{ font-size: 13px; color: #555; line-height: 1.6; }

.cap-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-l); margin: 24px 0; }
.cap-item{ background: var(--white); padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; }
.cap-stripe{ width: 3px; background: var(--red); flex-shrink: 0; align-self: stretch; min-height: 20px; }
.cap-text h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 3px; }
.cap-text p{ font-size: 13px; color: #666; line-height: 1.5; }
@media (max-width: 700px){ .cap-grid{ grid-template-columns: 1fr; } }

/* Service blocks (mechanical services style) */
.service-blocks{ display: flex; flex-direction: column; gap: 1px; background: var(--border-l); margin: 24px 0; }
.service-block{ background: var(--white); display: grid; grid-template-columns: 200px 1fr; gap: 0; }
.service-block-label{ background: var(--charcoal); padding: 24px 20px; display: flex; flex-direction: column; justify-content: center; }
.service-block-label span{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--white); line-height: 1.2; }
.service-block-label .sub{ font-size: 11px; color: #888; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.service-block-body{ padding: 20px 24px; border-left: 3px solid var(--red); }
.service-block-body h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.service-block-body p{ font-size: 14px; color: #555; line-height: 1.6; }
.service-block-body ul{ list-style: none; margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.service-block-body ul li{ background: var(--light); padding: 3px 10px; font-size: 12px; color: #555; }
@media (max-width: 700px){ .service-block{ grid-template-columns: 1fr; } }

/* Industry / product / area cards (hub pages) */
.industry-cards, .product-cards, .area-cards{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--border-l); }
.industry-card, .area-card{ background: var(--white); padding: 28px 24px 24px; border-top: 3px solid var(--red); display: flex; flex-direction: column; }
.product-card{ background: var(--white); padding: 22px 20px 20px; border-top: 3px solid var(--red); }
.industry-card-num{ font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 0.1em; margin-bottom: 10px; }
.industry-card h3, .area-card h3, .product-card h3{ font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.product-card h3{ font-size: 18px; font-weight: 700; }
.industry-card p, .area-card p, .product-card p{ font-size: 14px; color: #555; line-height: 1.6; flex: 1; }
.product-card p{ font-size: 13px; margin-bottom: 12px; }
.industry-card-tags, .area-card-services, .product-card-tags{ display: flex; flex-wrap: wrap; gap: 4px; margin-top: 14px; }
.industry-tag, .area-tag, .product-card-tag{ background: var(--light); padding: 3px 10px; font-size: 11px; color: #555; }
.industry-card-link, .area-card-link, .product-card-link{ display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--red); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
.industry-card-link::after, .area-card-link::after, .product-card-link::after{ content: ' \2192'; }
.area-card-region{ font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #aaa; margin-bottom: 10px; }

.needs-grid{ display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border-l); margin-top: 28px; }
.need-item{ background: var(--charcoal); padding: 20px; }
.need-item h4{ font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.need-item p{ font-size: 13px; color: #888; line-height: 1.55; }
@media (max-width: 700px){ .needs-grid, .industry-cards, .product-cards, .area-cards{ grid-template-columns: 1fr; } }

.services-across{ display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border-l); margin-top: 24px; }
.svc-item{ background: var(--white); padding: 16px 18px; display: flex; gap: 10px; align-items: flex-start; }
.svc-dot{ width: 6px; height: 6px; background: var(--red); flex-shrink: 0; margin-top: 6px; }
.svc-item span{ font-size: 14px; font-weight: 500; color: var(--black); }
@media (max-width: 700px){ .services-across{ grid-template-columns: 1fr; } }

/* 404 page */
.error-page{ min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 64px 32px; background: var(--black); }
.error-code{ font-family: 'Barlow Condensed', sans-serif; font-size: 120px; font-weight: 800; color: var(--red); line-height: 1; }
.error-page h2{ font-size: 28px; color: var(--white); text-transform: uppercase; margin: 16px 0; }
.error-page p{ color: #888; max-width: 420px; margin-bottom: 28px; }
