/* ============================================================
   Redline Forestry — styles.css
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #C0392B;
  --red-dark:  #96281b;
  --red-light: #e74c3c;
  --black:     #1e1e1e;
  --dark:      #2c2c2c;
  --gray-dark: #3d3d3d;
  --gray:      #666666;
  --gray-mid:  #999999;
  --gray-light:#f5f6f7;
  --white:     #ffffff;
  --border:    #e0e0e0;
  --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --shadow:    0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
  --radius:    6px;
  --max-w:     1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); text-decoration: underline; }
ul, ol { padding-left: 1.5rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-lg { font-size: 1.15rem; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3rem 0;
}
.section-dark {
  background: #3a4a5c;
  color: var(--white);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.section-red {
  background: var(--red);
  color: var(--white);
}
.section-red h2,
.section-red h3 { color: var(--white); }

.section-gray {
  background: #f9fafb;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  text-decoration: none;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--gray-dark);
  border-color: var(--gray-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-lg {
  padding: 1.1rem 2.6rem;
  font-size: 1.1rem;
}

/* ---------- Header ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.header-top {
  background: #111111;
  text-align: center;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.header-top a { color: var(--white); }
.header-top a:hover { text-decoration: underline; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text {
  line-height: 1.1;
}
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.logo-sub {
  font-size: 0.72rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
nav.main-nav a {
  color: #ccc;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--red-light); text-decoration: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow);
  }
  nav.main-nav.open {
    display: flex;
  }
  nav.main-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
  }
  .hamburger { display: flex; }
  .header-phone { font-size: 0.9rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%),
    url('img/tl12r2-mulching.jpg?v=2') center/cover no-repeat;
  z-index: 0;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1.00) translateX(0); }
  100% { transform: scale(1.06) translateX(-1%); }
}

/* Dust overlay removed for cleaner look */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 1.25rem;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero .lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-trust span::before {
  content: '✓ ';
  color: var(--red-light);
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: #1e1e1e;
  color: var(--white);
  padding: 1.5rem 0;
}
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.stat-item span {
  font-size: 0.85rem;
  opacity: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid transparent;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-red { border-top-color: var(--red); }
.card-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--gray); font-size: 0.95rem; }
.card .card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
}
.card .card-link::after { content: ' →'; }

/* ---------- Service cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-header {
  background: var(--red);
  padding: 1.5rem;
  color: var(--white);
}
.service-card-header h3 { color: var(--white); font-size: 1.2rem; }
.service-card-body { padding: 1.5rem; }
.service-card-body ul { color: var(--gray); font-size: 0.95rem; }
.service-card-body ul li { margin-bottom: 0.4rem; }

/* ---------- Trust signals ---------- */
.trust-bar {
  background: #f9fafb;
  padding: 2rem 0;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.trust-icon {
  font-size: 2rem;
}
.trust-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  counter-reset: step-counter;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step::after {
  content: '';
  position: absolute;
  top: 2.75rem;
  right: -1px;
  width: 2px;
  height: 2rem;
  background: var(--red);
  opacity: 0.3;
}
.step:last-child::after { display: none; }
.step-num {
  width: 52px;
  height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}
.step h4 { margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--gray); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  color: var(--gray-dark);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-location {
  font-size: 0.82rem;
  color: var(--gray-mid);
}
.stars { color: #f39c12; font-size: 1rem; margin-bottom: 0.5rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0.5rem 1.25rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
  font-family: var(--font-main);
}
.faq-question:hover { color: var(--red); }
.faq-question .faq-icon {
  color: var(--red);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-style: normal;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  color: var(--gray);
  font-size: 0.97rem;
  padding: 0 0.5rem;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.88); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-banner .btn-outline { border-width: 2px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.25rem; }
label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--black);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
}
textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-submit { margin-top: 0.5rem; }
.form-note { font-size: 0.82rem; color: var(--gray-mid); margin-top: 0.5rem; }

/* ---------- Blog ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 180px;
  background: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.8rem; color: var(--gray-mid); margin-bottom: 0.5rem; }
.blog-card-body h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.blog-card-body p { color: var(--gray); font-size: 0.9rem; flex: 1; margin-bottom: 1rem; }
.read-more { color: var(--red); font-weight: 700; font-size: 0.9rem; margin-top: auto; }
.read-more::after { content: ' →'; }

/* ---------- Article ---------- */
.article-header {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 3rem;
}
.article-header h1 { color: var(--white); margin-bottom: 1rem; }
.article-meta { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.article-body h2 { margin: 2rem 0 0.75rem; }
.article-body h3 { margin: 1.5rem 0 0.5rem; }
.article-body ul, .article-body ol { margin-bottom: 1rem; }
.article-body li { margin-bottom: 0.4rem; }
.article-body blockquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #f9fafb;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--gray-dark);
  font-style: italic;
}
.article-cta {
  background: #f9fafb;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 640px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--red-light); }

/* ---------- Location grid ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.location-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.location-item:hover {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(192,57,43,0.12);
}
.location-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.location-item span { font-size: 0.8rem; color: var(--gray-mid); }

/* ---------- Equipment section ---------- */
.equipment-card {
  background: var(--gray-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 5px solid var(--red);
}
.equipment-card h3 { color: var(--white); margin-bottom: 0.4rem; }
.equipment-card .equipment-model {
  color: var(--red-light);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.equipment-card ul { color: rgba(255,255,255,0.75); }
.equipment-card li { margin-bottom: 0.4rem; font-size: 0.95rem; }

/* ---------- Icon list ---------- */
.icon-list { list-style: none; padding: 0; }
.icon-list li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: var(--gray);
  font-size: 0.97rem;
}
.icon-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ---------- Table ---------- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.styled-table th {
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
}
.styled-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.styled-table tr:nth-child(even) td { background: #f9fafb; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.72);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  margin: 1rem 0;
  max-width: 280px;
}
.footer-section h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-section ul li a:hover { color: var(--red-light); text-decoration: none; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}
.footer-contact-item .ico { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--red-light); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.section-title { margin-bottom: 0.6rem; }
.section-subtitle { color: var(--gray); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 640px; }
.section-title-center { text-align: center; }
.section-title-center + .section-subtitle { margin-left: auto; margin-right: auto; text-align: center; }

.label-tag {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1rem 0 2rem;
  border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }

.highlight-box {
  background: #f9fafb;
  border-left: 4px solid var(--red);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.highlight-box p { color: var(--gray-dark); }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 3rem 1.25rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   ADDITIONS — Who We Serve, Target Markets, Dropdown Nav
   ============================================================ */

/* ---------- Nav dropdown ---------- */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  z-index: 200;
}
.nav-dropdown a {
  display: block !important;
  width: 100% !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 0 !important;
  font-size: 0.88rem !important;
  border-left: 3px solid transparent;
  transition: border-color 0.15s, background 0.15s !important;
}
.nav-dropdown a:hover {
  background: rgba(192,57,43,0.15) !important;
  border-left-color: var(--red);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  display: block;
}
.nav-toggle-arrow { font-size: 0.65rem; margin-left: 3px; opacity: 0.65; }

@media (max-width: 860px) {
  .nav-dropdown {
    position: static;
    transform: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    min-width: 0;
  }
  .nav-has-dropdown .nav-dropdown { display: block; }
}

/* ---------- Who We Serve ---------- */
.who-serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.who-serve-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.who-serve-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.who-serve-icon {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
  display: block;
}
.who-serve-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.who-serve-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.45;
}
.who-serve-card a.card-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--red);
  font-weight: 700;
  font-size: 0.82rem;
}
.who-serve-card a.card-link::after { content: ' →'; }

/* ---------- Target market highlight strip ---------- */
.market-strip {
  border-left: 5px solid var(--red);
  background: #f9fafb;
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
}
.market-strip h3 { margin-bottom: 0.4rem; font-size: 1.15rem; }
.market-strip p  { color: var(--gray); font-size: 0.95rem; margin-bottom: 0.75rem; }

/* ---------- Feature icon row ---------- */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.feature-row-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}
.feature-row-text h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.feature-row-text p  { font-size: 0.9rem; color: var(--gray); margin: 0; }

/* ---------- Sector page hero variant ---------- */
.hero-sector {
  min-height: 55vh;
}

/* ---------- Inline CTA box ---------- */
.inline-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}
.inline-cta h3 { color: var(--white); margin-bottom: 0.3rem; }
.inline-cta p  { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.95rem; }
.inline-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---------- Two-col with sidebar ---------- */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) {
  .layout-sidebar { grid-template-columns: 1fr; }
}
.sidebar-widget {
  background: #f9fafb;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 4px solid var(--red);
}
.sidebar-widget h4 {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
}
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--gray-dark); font-weight: 600; }
.sidebar-widget ul li a:hover { color: var(--red); text-decoration: none; }
.sidebar-cta {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.sidebar-cta h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.sidebar-cta p  { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 1rem; }
.sidebar-cta .btn { width: 100%; margin-bottom: 0.5rem; }

/* ---------- Region tags ---------- */
.region-tag {
  display: inline-block;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.2);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 3px;
  margin: 0.2rem;
}

/* ============================================================
   CREDENTIALS & VETERAN BADGE ADDITIONS
   ============================================================ */

/* Veteran badge */
.vet-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}
.vet-badge-dark {
  background: rgba(192,57,43,0.2);
  border-color: rgba(192,57,43,0.5);
  color: #e8a09a;
}
.vet-badge-hero {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
}

/* Credentials grid */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.cred-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cred-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.cred-abbr {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.cred-full {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  margin-bottom: 0.75rem;
}
.cred-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.cred-card p  { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* Credential strip (compact horizontal) */
.cred-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-dark);
}
.cred-pill .icon { font-size: 0.9rem; }

/* Sector sections */
.sector-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.sector-section:last-of-type { border-bottom: none; }
.sector-icon-lg {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

/* Safety highlight box */
.safety-box {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border-left: 6px solid var(--red);
}
.safety-box h3 { color: var(--white); margin-bottom: 1rem; }
.safety-box p  { color: rgba(255,255,255,0.82); font-size: 0.97rem; }
.safety-box ul { color: rgba(255,255,255,0.8); }
.safety-box li { margin-bottom: 0.5rem; font-size: 0.95rem; }

/* Pricing table highlight */
.price-highlight {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.price-highlight h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.price-highlight .price-val { font-size: 2rem; font-weight: 900; line-height: 1; }
.price-highlight .price-sub { font-size: 0.8rem; opacity: 0.85; }

/* Region/expansion chips */
.region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

/* Blog sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .blog-layout { grid-template-columns: 1fr; }
}

/* Owner bio card */
.owner-bio {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}
.owner-avatar {
  width: 120px;
  height: 120px;
  background: var(--gray-dark);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 560px) {
  .owner-bio { flex-direction: column; align-items: center; text-align: center; }
}

/* Contact page layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-info-text h4 { margin-bottom: 0.2rem; font-size: 1rem; }
.contact-info-text p, .contact-info-text a { color: var(--gray); font-size: 0.95rem; }
.contact-info-text a:hover { color: var(--red); }

/* ===== PHOTO PLACEHOLDERS / GALLERY ===== */
.photo-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px dashed #444;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  color: #aaa;
}
.photo-placeholder::before {
  content: "📷";
  font-size: 2.5rem;
  opacity: 0.4;
}
.photo-placeholder-after {
  background: linear-gradient(135deg, #1a2e1a 0%, #1e3d1e 100%);
  border-color: #2d5a2d;
}
.photo-placeholder-after::before { content: "✅"; }
.photo-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: var(--red);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}
.photo-placeholder-after .photo-label { background: #2e7d32; }
.photo-caption {
  font-size: 0.82rem;
  color: #888;
  font-style: italic;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.before-after-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.gallery-desc {
  font-size: 0.85rem;
  color: var(--gray-mid);
  text-align: center;
  margin: 0;
  font-weight: 600;
}

/* ===== EQUIPMENT SHOWCASE ===== */
.equipment-showcase { display: flex; flex-direction: column; gap: 3rem; margin-top: 2rem; }
.equipment-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.equipment-feature-reverse { direction: rtl; }
.equipment-feature-reverse > * { direction: ltr; }
.equip-photo { min-height: 280px; }
.equip-photo::before { content: "🚜"; font-size: 3rem; opacity: 0.3; }
.equip-info h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.equip-subtitle { color: var(--red); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
.equip-info ul { padding-left: 1.25rem; line-height: 2; }

/* Blog featured card */
.blog-featured { margin-bottom: 0; }
.blog-card-featured {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  margin-bottom: 0;
}
.blog-card-img-lg {
  font-size: 4rem;
  min-height: 200px;
  border-radius: 8px 0 0 8px;
}

@media (max-width: 768px) {
  .before-after-wrap { grid-template-columns: 1fr; }
  .equipment-feature { grid-template-columns: 1fr; }
  .equipment-feature-reverse { direction: ltr; }
  .blog-card-featured { grid-template-columns: 1fr; }
  .blog-card-img-lg { border-radius: 8px 8px 0 0; min-height: 120px; }
}

/* ===== REAL PHOTO GALLERY ===== */
.before-after-real {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.before-after-real img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.before-after-real:hover img { transform: scale(1.04); }
.real-photo-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  color: #fff;
}
.before-label { background: var(--red); }
.after-label { background: #2e7d32; }
.illustrative-notice {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-mid);
  font-style: italic;
  margin-bottom: 2rem;
  padding: 0.6rem 1rem;
  background: #fffbf0;
  border: 1px solid #e8d5a0;
  border-radius: 4px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
