/* ============================================================
   GreenVac Services — Shared Stylesheet
   Brand colour: #1b7046 | Font: Montserrat | Theme: Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CSS Variables ───────────────────────────────────────── */
:root {
  --green-brand:        #1b7046;
  --green-light:        #22905a;
  --green-dark:         #145533;
  --green-glow:         #28c06e;
  --green-tint:         rgba(27,112,70,0.08);
  --green-tint-strong:  rgba(27,112,70,0.15);
  --dark-bg:            #0b0d0b;
  --dark-card:          #111611;
  --dark-surface:       #181c18;
  --text-primary:       #f0f4f0;
  --text-muted:         #8a9a8a;
  --text-dim:           #5a6a5a;
  --border-subtle:      rgba(27,112,70,0.12);
  --border-active:      rgba(27,112,70,0.30);
  --radius-btn:         4px;
  --radius-card:        8px;
  --transition:         0.2s ease;
  --container-width:    1200px;
  --container-pad:      24px;
  --section-pad:        96px;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; }

/* ─── Body ────────────────────────────────────────────────── */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
section { padding: var(--section-pad) 0; }

/* ─── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-weight: 700; font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-weight: 700; font-size: 1.05rem; }
h4 { font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

.eyebrow {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-glow);
  display: block;
  margin-bottom: 12px;
}
.text-green  { color: var(--green-glow); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-dim    { color: var(--text-dim); }

/* ─── Green accent line ───────────────────────────────────── */
.green-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green-brand);
  border-radius: 2px;
  margin-bottom: 24px;
}
.green-line.center { margin-left: auto; margin-right: auto; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27,112,70,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-active);
}
.btn-secondary:hover {
  border-color: var(--green-brand);
  background: var(--green-tint);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 0.9rem; }

/* ─── Sticky Header ───────────────────────────────────────── */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ─── Top Bar ─────────────────────────────────────────────── */
.top-bar {
  background: var(--green-brand);
  padding: 9px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.top-bar a {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity var(--transition);
}
.top-bar a:hover { opacity: 0.85; }
.top-bar span {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  font-weight: 400;
}

/* ─── Navigation ──────────────────────────────────────────── */
.nav {
  background: rgba(11,13,11,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
}
.nav-logo { display: flex; align-items: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }

.nav-cta {
  background: var(--green-brand) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--green-light) !important;
  transform: translateY(-1px) !important;
}

/* ─── Hamburger ───────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ─────────────────────────────────────────── */
.nav-mobile {
  display: none;
  background: var(--dark-card);
  border-top: 1px solid var(--border-subtle);
  padding: 20px var(--container-pad);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--text-primary); }
.nav-mobile-cta {
  display: block;
  margin-top: 20px;
  padding: 16px;
  background: var(--green-brand);
  color: #fff !important;
  text-align: center;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: none !important;
  letter-spacing: 1px;
}

/* ─── Hero ────────────────────────────────────────────────── */
/* ─── Hero — full-bleed background image ──────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--dark-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
/* Dark gradient over the image so text stays readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,11,8,0.88) 0%,
    rgba(8,11,8,0.72) 55%,
    rgba(8,11,8,0.35) 100%
  );
  pointer-events: none;
}
/* Subtle green tint at the bottom edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(27,112,70,0.12), transparent);
  pointer-events: none;
}
.hero-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 80px var(--container-pad);
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-text {
  max-width: 660px;
}
.hero-text h1 {
  margin-bottom: 20px;
  line-height: 1.15;
  color: #fff;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--green-glow);
}
.hero-subtitle {
  font-size: 1.05rem !important;
  color: rgba(240,244,240,0.82);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  transition: color var(--transition);
}
.hero-phone:hover { color: var(--green-glow); }

/* ─── Image Placeholders ──────────────────────────────────── */
.img-placeholder {
  border: 2px dashed var(--green-brand);
  border-radius: var(--radius-card);
  background: var(--green-tint);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  gap: 10px;
}
.img-placeholder .ph-icon { font-size: 2.2rem; opacity: 0.5; }
.img-placeholder .ph-dims {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-brand);
}
.img-placeholder .ph-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  max-width: 260px;
  line-height: 1.5;
  font-style: italic;
}

/* ─── Trust Strip ─────────────────────────────────────────── */
.trust-strip {
  background: var(--dark-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}
.trust-strip-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item-icon { font-size: 1.6rem; }
.trust-item-label {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
}
.trust-item-sub { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.trust-divider { width: 1px; height: 40px; background: var(--border-subtle); }

/* ─── Section Headers ─────────────────────────────────────── */
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1rem; max-width: 600px; }
.section-header.center p { margin: 0 auto; }

/* ─── Cards (base) ────────────────────────────────────────── */
.card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: 0 8px 32px rgba(27,112,70,0.12);
}

/* ─── Services Grid ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--dark-card);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
/* Zoom background image on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}
.service-card:hover::before { transform: scale(1.06); }
/* Dark gradient overlay — heavier at bottom so text pops */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,11,8,0.15) 0%,
    rgba(8,11,8,0.55) 45%,
    rgba(8,11,8,0.92) 100%
  );
  z-index: 1;
  transition: background 0.3s ease;
}
.service-card:hover::after {
  background: linear-gradient(
    to bottom,
    rgba(8,11,8,0.2) 0%,
    rgba(8,11,8,0.6) 45%,
    rgba(8,11,8,0.95) 100%
  );
}
/* Card content sits above the overlay */
.service-card-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 4px;
}
.service-card h3 {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.85rem;
  color: rgba(240,244,240,0.80);
  line-height: 1.6;
}
.card-link {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-glow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }
/* Green bottom border on hover */
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
/* Fallback styling when no background image is set */
.service-card.no-image {
  background-color: var(--dark-card);
  border: 1px solid var(--border-subtle);
}
.service-card.no-image::before { display: none; }
.service-card.no-image::after {
  background: linear-gradient(to bottom, transparent 0%, rgba(8,11,8,0.6) 100%);
}

/* ─── Why Section ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-point-icon {
  width: 44px;
  height: 44px;
  background: var(--green-tint);
  border: 1px solid var(--border-active);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-point-text h4 { margin-bottom: 5px; color: var(--text-primary); }
.why-point-text p { font-size: 0.88rem; }

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-stars { color: var(--green-glow); font-size: 0.9rem; letter-spacing: 3px; }
.testimonial-quote {
  font-size: 0.92rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
  line-height: 1.85 !important;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
}
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.testimonial-placeholder { border: 1px dashed var(--border-active); opacity: 0.55; }

/* ─── Reviews aggregate badge ─────────────────────────────── */
.reviews-aggregate {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(78, 205, 113, 0.07);
  border: 1px solid rgba(78, 205, 113, 0.28);
  border-radius: 50px;
  padding: 11px 26px;
  margin-top: 18px;
}
.reviews-aggregate-score {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.reviews-aggregate-stars { color: #f5a623; font-size: 1.05rem; letter-spacing: 2px; line-height: 1; }
.reviews-aggregate-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  border-left: 1px solid var(--border-subtle);
}
.reviews-aggregate-count { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.reviews-aggregate-source { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── Reviews card grid ───────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
  align-items: start;
}
.review-card {
  background: linear-gradient(150deg, #1b2d20 0%, #131e16 100%);
  border: 1px solid rgba(78, 205, 113, 0.15);
  border-top: 3px solid var(--green-brand);
  border-radius: var(--radius-card);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
  border-color: rgba(78, 205, 113, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  right: 14px;
  font-size: 6.5rem;
  color: var(--green-brand);
  opacity: 0.1;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.review-stars { color: #f5a623; font-size: 0.82rem; letter-spacing: 3px; line-height: 1; }
.review-text {
  font-size: 0.875rem;
  color: #9ab0a2;
  font-style: italic;
  line-height: 1.82;
  flex: 1;
  margin: 0;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(78, 205, 113, 0.12);
  margin-top: auto;
}
.review-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.review-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.review-role { font-size: 0.72rem; color: var(--green-glow); font-weight: 600; margin-top: 2px; }

/* Avatar colours */
.av-green  { background: #256b3a; }
.av-blue   { background: #1d5fc4; }
.av-purple { background: #6d28d9; }
.av-teal   { background: #0e7490; }
.av-amber  { background: #b45309; }
.av-rose   { background: #be123c; }
.av-slate  { background: #4a6458; }
.av-indigo { background: #4338ca; }

/* ─── Reviews footer links ────────────────────────────────── */
.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.reviews-google-link, .reviews-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.reviews-google-link:hover { border-color: #4285F4; color: #4285F4; }
.reviews-fb-link:hover { border-color: #1877F2; color: #1877F2; }

/* ─── Info / Article Pages ────────────────────────────────── */
.info-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px var(--container-pad) 72px;
  border-bottom: 1px solid var(--border-subtle);
}
.info-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.3) 100%);
  z-index: 0;
}
.info-hero .container {
  position: relative;
  z-index: 1;
}
.info-hero h1 { color: #fff; }
.info-hero p { color: rgba(255,255,255,0.78) !important; }
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-glow); }
.breadcrumb-sep { color: var(--text-dim); }
.info-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 760px;
}
.info-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.info-hero-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-glow);
  background: rgba(78, 205, 113, 0.1);
  border: 1px solid rgba(78, 205, 113, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
}
.info-hero-read {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 56px var(--container-pad);
}
.info-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}
.info-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.info-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-glow);
  margin: 28px 0 10px;
}
.info-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.info-content ul {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.info-content ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 6px 0 6px 28px;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}
.info-content ul li:last-child { border-bottom: none; }
.info-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-glow);
  font-weight: 700;
}
.info-content strong { color: var(--text-primary); font-weight: 600; }

.hazard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 28px;
}
.hazard-card {
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-left: 3px solid #dc2626;
  border-radius: var(--radius-card);
  padding: 16px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.hazard-card strong { color: #f87171; display: block; margin-bottom: 4px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 28px;
}
.benefit-card {
  background: rgba(78, 205, 113, 0.06);
  border: 1px solid rgba(78, 205, 113, 0.2);
  border-left: 3px solid var(--green-brand);
  border-radius: var(--radius-card);
  padding: 16px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.benefit-card strong { color: var(--green-glow); display: block; margin-bottom: 4px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Info sidebar */
.info-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.sidebar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.sidebar-card .btn { display: block; text-align: center; width: 100%; margin-bottom: 10px; }
.sidebar-services { list-style: none; padding: 0; margin: 0; }
.sidebar-services li { padding: 6px 0; border-bottom: 1px solid var(--border-subtle); }
.sidebar-services li:last-child { border-bottom: none; }
.sidebar-services a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-services a:hover { color: var(--green-glow); }
.sidebar-services a::before { content: '→'; color: var(--green-glow); font-size: 0.75rem; }

@media (max-width: 900px) {
  .info-layout { grid-template-columns: 1fr; gap: 40px; }
  .info-sidebar { position: static; }
  .hazard-grid, .benefit-grid { grid-template-columns: 1fr; }
}

/* ─── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: var(--dark-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  padding: 80px var(--container-pad);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 1rem; max-width: 520px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ─── Service Area Preview ────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.area-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.area-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-brand);
  flex-shrink: 0;
}
.area-card span {
  font-weight: 600;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.area-secondary .area-dot  { background: var(--text-dim); }
.area-secondary span { color: var(--text-muted); }

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark-card);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}
.footer-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-brand img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.85rem; max-width: 240px; margin-bottom: 20px; }

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-tint);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-btn);
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-glow);
}
.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text-primary); }

.footer-contact-item { display: flex; flex-direction: column; gap: 3px; margin-bottom: 14px; }
.footer-contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  font-weight: 600;
}
.footer-contact-val {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-contact-val:hover { color: var(--text-primary); }
.footer-fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 16px;
  background: #1877F2;
  color: #fff;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-fb-btn:hover { background: #1560c8; color: #fff; }
.footer-phone-large {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--green-glow) !important;
}
.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px var(--container-pad) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.76rem; color: var(--text-dim); }

/* ─── Page Header (inner pages) ───────────────────────────── */
.page-header {
  background: var(--dark-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 64px var(--container-pad) 48px;
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-header p  { font-size: 1rem; max-width: 560px; }

/* ─── Scroll Animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* ─── Section BG variants ─────────────────────────────────── */
.bg-surface { background: var(--dark-surface); }
.bg-card    { background: var(--dark-card); }
.section-rule { border: none; border-top: 1px solid var(--border-subtle); margin: 0; }

/* ─── Feature / Callout Box ───────────────────────────────── */
.feature-box {
  background: var(--green-tint);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-card);
  padding: 32px;
}
.rig-callout {
  background: linear-gradient(135deg, var(--green-tint-strong) 0%, var(--green-tint) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  text-align: center;
}
.rig-callout h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 12px; }
.rig-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.rig-stat { display: flex; flex-direction: column; gap: 6px; }
.rig-stat-val {
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--green-glow);
  text-transform: uppercase;
}
.rig-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ─── Blog / Portfolio Cards ──────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-active); }
.blog-card-body { padding: 28px; }
.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-glow);
  margin-bottom: 10px;
  display: block;
}
.blog-card h3 { margin-bottom: 10px; font-size: 1rem; line-height: 1.45; }
.blog-date {
  font-size: 0.74rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 18px;
}

/* ─── Contact Form ────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark-bg);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-brand);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

/* ─── Service Area Map ────────────────────────────────────── */
.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.map-embed iframe { display: block; width: 100%; height: 420px; border: none; }

/* ─── Portfolio Gallery ────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.portfolio-item:hover { transform: translateY(-4px); border-color: var(--border-active); }
.portfolio-item-body { padding: 20px 22px; }
.portfolio-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-glow);
  margin-bottom: 8px;
  display: block;
}
.portfolio-item h3 { font-size: 0.92rem; margin-bottom: 6px; }
.portfolio-item p  { font-size: 0.82rem; }
.portfolio-location {
  font-size: 0.74rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── About / Story ───────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.story-text p { margin-bottom: 18px; }
.values-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 20px 24px;
}
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-text h4 { margin-bottom: 4px; }
.value-text p  { font-size: 0.86rem; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid    { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 32px; }
  .portfolio-grid       { grid-template-columns: repeat(2, 1fr); }
  .blog-grid            { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content   { grid-template-columns: 1fr; gap: 40px; }
  .why-grid       { grid-template-columns: 1fr; gap: 40px; }
  .story-grid     { grid-template-columns: 1fr; gap: 40px; }
  .rig-stats      { grid-template-columns: repeat(2, 1fr); }
  :root { --section-pad: 64px; }
  .why-grid img, .story-grid img { height: 300px !important; max-height: 300px !important; }
}
@media (max-width: 600px) {
  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .reviews-grid         { grid-template-columns: 1fr; }
  .area-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr; }
  .portfolio-grid    { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr; }
  .rig-stats         { grid-template-columns: 1fr; }
  .hero { min-height: 85vh; background-position: center center; background-size: cover; }
  .hero::before { background: linear-gradient(to bottom, rgba(8,11,8,0.75) 0%, rgba(8,11,8,0.55) 50%, rgba(8,11,8,0.80) 100%); }
  .hero-content   { padding: 56px var(--container-pad); }
  .hero-text      { max-width: 100%; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .trust-strip-inner { gap: 20px; }
  .trust-divider  { display: none; }
  .cta-actions    { flex-direction: column; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  :root { --section-pad: 48px; --container-pad: 16px; }
  .why-grid img, .story-grid img { height: 220px !important; max-height: 220px !important; }

  /* Trust strip: keep only "Compact Rig" + "Talk to James" */
  .trust-strip-inner > div:nth-child(3),
  .trust-strip-inner > div:nth-child(7) { display: none; }

  /* Estimator strip: CTA section covers this */
  .estimator-strip { display: none; }

  /* Why section: hide rig stats callout */
  .rig-callout { display: none; }

  /* Reviews: show top 4 only */
  .reviews-grid .review-card:nth-child(n+5) { display: none; }

  /* Service area: hide secondary towns row */
  .area-grid-secondary { display: none; }

  /* Footer: hide Services + Quick Links columns */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) { display: none; }

  /* Footer: hide SEO tagline */
  .footer-bottom p:last-child { display: none; }

  /* Services page: hide verbose second paragraph per service */
  .why-grid > div > p + p { display: none; }
}
